-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
221 lines (145 loc) · 4.27 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
source 'https://rubygems.org'
git_source(:github) { |repo| 'https://github.com/#{repo}.git' }
# CORE ------------------------------------------------------------------------
# Ruby on Rails
ruby '3.0.4'
gem 'rails', '~> 7.0.0'
# Database for Active Record
gem 'pg'
# App server
gem 'puma'
# Data cache (required to run Action Cable in production)
gem 'redis', '~> 4.0'
# Reduce boot times through caching (required in config/boot.rb)
# gem 'bootsnap', '>= 1.1.0', require: false
# Compress responses to speed up page loads
gem "rack-brotli"
# Write cron jobs
gem "whenever", require: false
# ASSET PIPELINE --------------------------------------------------------------
gem 'propshaft', '>= 0.6.2'
# JavaScript bundling
gem 'jsbundling-rails'
# CSS bundling
gem 'cssbundling-rails'
# Compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# APIs ------------------------------------------------------------------------
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Fast JSON serialisation
gem 'oj'
# XML sitemap
gem 'sitemap_generator'
# FRONTEND FRAMEWORKS ---------------------------------------------------------
# Bootstrap forms
gem 'bootstrap_form', '~> 5.0'
# FontAwesome 4.7 icons
#gem 'font-awesome-rails'
# Hotwire JS framework
gem 'turbo-rails'
gem 'stimulus-rails'
# USERS & PERMISSIONS ---------------------------------------------------------
# User management
gem 'devise', '>= 4.7.1'
# Authorizations management
gem 'cancancan'
# Oauth2 API
gem 'doorkeeper'
# MODEL HELPERS ---------------------------------------------------------------
# Versioning
gem 'paper_trail'
# Search
gem 'pg_search'
# File uploads
gem 'carrierwave', '~> 2.0'
# Validation
gem 'validate_url'
# ISO codes
gem 'countries'
gem 'country_select'
gem 'i18n_data'
# Geocoding
gem 'geocoder'
# GBIF Backbone Taxonomy
gem 'faraday', '~> 2.5', '>= 2.5.2'
gem 'gbifrb'
# Bibliographic data
gem 'bibtex-ruby'
gem 'citeproc-ruby'
gem 'csl-styles'
# Session store backed by an Active Record class to avoid cookie overflow with
# lasso
gem 'activerecord-session_store'
# VIEW HELPERS ----------------------------------------------------------------
# Pagination
gem 'pagy'
# Use Postgres COPY for efficient CSV exports
gem "postgres-copy"
# Breadcrumbs
gem 'breadcrumbs'
# Markdown rendering
gem 'kramdown'
# Maps
gem 'leaflet-rails'
# Charts
gem 'vega'
# Get posts from blog.xronos.ch
gem 'feedjira'
gem 'httparty'
# DATABASE --------------------------------------------------------------------
gem 'scenic'
# DEVELOPMENT -----------------------------------------------------------------
# Syntax checking/linting
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
# Progress bar (for rake tasks etc.)
gem 'ruby-progressbar'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger
# console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
# Load environment variables
gem 'dotenv-rails'
end
group :development do
# Watch for file changes
gem 'listen'
# Access an interactive console on exception pages or by calling 'console'
# anywhere in the code.
gem 'web-console', '>= 3.3.0'
# Spring speeds up development by keeping your application running in the
# background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen'
# Annotate models etc. with current schema
gem 'annotate'
# Watch for N+1 queries and unused eager loading
gem 'bullet'
end
# TESTING ---------------------------------------------------------------------
group :development, :test do
# RSpec for testing
gem 'rspec-rails', '~> 4.0.1'
# Generate test data from model specs
gem 'factory_bot_rails'
gem 'faker'
gem 'guard-rspec'
end
group :test do
# Unit testing
gem 'minitest'
# Schema testing
gem 'json-schema'
# Acceptance testing
gem 'selenium-webdriver'
gem 'capybara'
gem 'capybara-selenium'
gem 'launchy'
# Measure test coverage
gem 'simplecov', require: false
gem 'simplecov-cobertura'
end
# COMPATIBILITY ---------------------------------------------------------------
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]