-
Notifications
You must be signed in to change notification settings - Fork 9
/
Gemfile
285 lines (220 loc) · 5.94 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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
# frozen_string_literal: true
def next?
File.basename(__FILE__) == 'Gemfile.next'
end
source 'https://rubygems.org'
ruby file: '.tool-versions'
# as web framework
if next?
gem 'rails', '~> 7'
else
gem 'rails', '~> 7.0'
end
# Use Puma as the app server
gem 'puma'
# respond_to methods have been extracted to the responders gem
# http://edgeguides.rubyonrails.org/upgrading_ruby_on_rails.html#responders
gem 'responders', '~> 3.0'
# as supported databases
gem 'pg'
# for tracking data changes
gem 'paper_trail', '< 13'
# for upload management
gem 'carrierwave', '< 3'
gem 'carrierwave-bombshelter'
gem 'mini_magick'
# for uploading images to the cloud
gem 'cloudinary'
# for internationalizing
gem 'rails-i18n'
# as authentification framework
gem 'devise'
gem 'devise_ichain_authenticatable'
gem 'omniauth'
gem 'omniauth-discourse', github: 'snap-cloud/omniauth-discourse'
gem 'omniauth-facebook'
gem 'omniauth-github'
gem 'omniauth-google-oauth2'
gem 'omniauth-openid'
gem 'omniauth-rails_csrf_protection'
# Bot-filtering
gem 'recaptcha', require: 'recaptcha/rails'
# as authorization framework
gem 'cancancan'
# for roles
gem 'rolify'
# to show flash messages from ajax requests
gem 'unobtrusive_flash', '>=3'
# as state machine
gem 'transitions', require: %w[transitions active_record/transitions]
# for comments
gem 'acts_as_commentable_with_threading'
gem 'awesome_nested_set'
# as templating language
gem 'haml-rails'
# for stylesheets
gem 'sass-rails', '>= 4.0.2'
# as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# as the front-end framework
gem 'autoprefixer-rails'
gem 'bootstrap-sass', '~> 3.4.0'
gem 'cocoon'
# as the JavaScript library
# TODO: Consolidate with the rails-assets below or move to webpack...
gem 'jquery-rails'
gem 'jquery-ui-rails', '~> 7.0.0'
# for languages validation
gem 'iso-639'
# as date picker
gem 'bootstrap3-datetimepicker-rails', '~> 4.17.47'
# data tables
gem 'ajax-datatables-rails'
gem 'jquery-datatables'
# for charts
gem 'chartkick'
# for displaying maps
gem 'leaflet-rails'
# for user avatars
gem 'gravtastic'
# for country selects
# TODO-SNAPCON: Verify that this is no longer necessary.
# gem 'country_select', '< 7'
gem 'i18n_data'
# as PDF generator
gem 'prawn-qrcode'
gem 'prawn-rails'
# FIXME: for prawn, matrix isn't in the default set of Ruby 3.1 anymore
# see https://github.com/prawnpdf/prawn/commit/3658d5125c3b20eb11484c3b039ca6b89dc7d1b7
gem 'matrix', '~> 0.4'
# FIXME: for selenium-webdriver, rexml isn't in the default set of Ruby 3.1 anymore
# see https://github.com/SeleniumHQ/selenium/commit/526fd9d0de60a53746ffa982feab985fed09a278
gem 'rexml'
# for QR code generation
gem 'rqrcode'
# to render XLS spreadsheets
gem 'caxlsx_rails'
# Application Monitoring
gem 'sentry-delayed_job'
gem 'sentry-rails'
gem 'sentry-ruby'
# to make links faster
gem 'turbolinks'
# for JSON serialization of our API
gem 'active_model_serializers'
# as icon font
gem 'font-awesome-sass'
# for markdown
gem 'redcarpet'
# for recurring jobs
gem 'delayed_job_active_record'
gem 'whenever', require: false
# to run scripts
gem 'daemons'
# to encapsulate money in objects
gem 'money-rails'
# for lists
gem 'acts_as_list'
# for switch checkboxes
gem 'bootstrap-switch-rails', '3.3.3' # Locked pending Bttstrp/bootstrap-switch#707
# for parsing OEmbed data
gem 'ruby-oembed'
# for setting app configuration in the environment
gem 'dotenv-rails'
# configurable toggles for functionality
# https://github.com/mgsnova/feature
gem 'feature'
# For countable.js
gem 'countable-rails'
# Both are not in a group as we use it also for rake data:demo
# for fake data
gem 'faker'
# for seeds
gem 'factory_bot_rails'
# for integrating Stripe payment gateway
gem 'stripe'
# Provides Sprockets implementation for Rails Asset Pipeline
gem 'sprockets-rails'
# for multiple speakers select on proposal/event forms
gem 'selectize-rails'
# n+1 query logging
gem 'bullet'
# memcached binary connector
gem 'dalli', require: false
# Redis Cache
gem 'redis'
# to generate ical files
gem 'icalendar'
# for making external requests easier
gem 'httparty'
# pagination
gem 'pagy', '<4.0'
# to tame logs
gem 'lograge'
group :development do
# to open mails
gem 'letter_opener'
# view mail at /letter_opener/
gem 'letter_opener_web'
# as deployment system
gem 'mina'
# as debugger on error pages
gem 'web-console'
# prepend models with db schema
gem 'annotate'
end
group :test do
# as test framework
gem 'capybara'
gem 'cucumber-rails', require: false
gem 'cucumber-rails-training-wheels' # basic imperative step defs like "Then I should see..."
gem 'database_cleaner'
gem 'geckodriver-helper'
gem 'rspec-rails'
gem 'webdrivers'
# for measuring test coverage
gem 'simplecov'
gem 'simplecov-cobertura'
# for describing models
gem 'shoulda-matchers', require: false
# for stubing/mocking models
gem 'rspec-activemodel-mocks'
# to freeze time
gem 'timecop'
# for mocking external requests
gem 'webmock'
# for mocking Stripe responses in tests
gem 'stripe-ruby-mock', '~> 3.1.0.rc3'
# For validating JSON schemas
gem 'json-schema'
# For using 'assigns' in tests
gem 'rails-controller-testing'
# For managing the environment
gem 'climate_control'
# For PDFs
gem 'pdf-inspector', require: 'pdf/inspector'
end
group :development, :test, :linters do
# as debugger
gem 'byebug'
# for static code analisys
gem 'rubocop', require: false
gem 'rubocop-rspec', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-capybara', require: false
gem 'rubocop-performance', require: false
gem 'haml_lint'
gem 'faraday-retry', require: false
# TODO-SNAPCON: figure out which haml-lint OR haml_lint is good.
gem 'haml-lint', require: false
# Easily run linters
gem 'pronto', require: false
gem 'pronto-haml', require: false
gem 'pronto-rubocop', require: false
end
group :development, :test do
# as development/test database
gem 'sqlite3'
# to test new rails version
gem 'next_rails'
end