forked from smartchicago/kimball
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
290 lines (229 loc) · 7.42 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
286
287
288
289
290
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.1.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'airbrake'
gem 'bootsnap', require: false
gem 'rack'
gem 'rack-cache'
gem 'rails', '~> 6.0.0'
# gem 'webpacker', '~> 4.x' #bundle exec rails webpacker:install:stimulus #sooon
gem 'rails-i18n'
# gem 'pg' # soooooon!
gem 'mysql2'
gem 'hiredis' # faster redis
gem 'mail'
gem 'redis' # ephemeral storage and caching
gem 'redis-rails' # for session store, I think deprecated in rails 5.2
gem 'validates_overlap' # to ensure we don't double book people
gem 'ransack' # rad searching.
gem 'mandrill-rails' # for inbound email
gem 'awesome_print' # for printing awesomely
gem 'fuzzy_match' # for sms command fuzzy matching
gem 'chartkick'
gem 'groupdate' # for graphing
gem 'nokogiri'
# csv files are TERRIBLE for importing. Excel messes with column formats
gem 'axlsx', '~> 3.0.0.pre'
gem 'roo'
gem 'rubyzip'
gem 'redcarpet' # for markdown notes
# giftrocket API for automagic giftcarding
gem 'tremendous_ruby', github: 'talkable/tremendous-ruby', branch: 'rails-6.0'
gem 'aws-sdk-s3'
gem 'image_processing' # for activestorage image processing
gem 'hashie'
gem 'net-imap', require: false
gem 'net-pop', require: false
gem 'net-smtp', require: false
group :production do
# gem 'newrelic_rpm'
gem 'barnes' # heroku metrics
gem 'lograge' # sane logs
gem 'skylight' # perf
gem 'unicorn' # Use unicorn as the app server
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'coffee-rails'
gem 'sassc-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'mini_racer'
gem 'uglifier'
end
gem 'jquery-rails'
gem 'jquery-turbolinks'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# To use ActiveModel has_secure_password
gem 'bcrypt'
# bootstrapping
gem 'bootstrap', '~> 4.4.0'
gem 'bootstrap4-datetime-picker-rails'
gem 'font-awesome-rails', '~> 4.7', '>= 4.7.0.1'
gem 'glyphicons-rails'
gem 'momentjs-rails' # sane time management in js
# want to switch pagination to kaminari
# http://blogs.element-labs.com/2015/10/replacing-will_paginate-with-kaminari/
# pagniate with will_paginate: https://github.com/mislav/will_paginate
gem 'will_paginate'
gem 'will_paginate-bootstrap4'
# include health_check, for system monitoring
gem 'health_check'
# use devise for auth/identity
gem 'devise'
gem 'devise_invitable'
gem 'devise_token_auth'
gem 'devise_zxcvbn' # password strength filter
# use gibbon for easy Mailchimp API access
gem 'gibbon'
# use twilio-ruby for twilio
gem 'twilio-ruby'
gem 'parallel' # for parallel processing.
gem 'httparty'
# use Wuparty for wufoo
# gem 'wuparty' # breaks latest version of httparty
# Use gsm_encoder to help text messages send correctly
gem 'gsm_encoder'
# not sidekiq 6 yet. need to upgrade capistrano first
gem 'sidekiq', '~> 5.2.0'
gem 'sidekiq-scheduler'
# phone number validation
gem 'phony_rails'
# zip code validation
gem 'validates_zipcode'
# in place editing
gem 'best_in_place', git: "https://github.com/cromulus/best_in_place"
# validation for new persons on the public page.
gem 'jquery-validation-rails'
# to validate gift card numbers
gem 'credit_card_validations'
# for automatically populating tags
gem 'twitter-typeahead-rails'
# make ical events and feeds
gem 'icalendar'
# state machine for reservations.
gem 'aasm'
gem 'after_commit_everywhere', '~> 0.1', '>= 0.1.5'
# using sidekiq scheduluer, and direct to s3
# # cron jobs for backups and sending reminders
# gem 'backup', require: false
# gem 'whenever', require: false
# handling emoji!
gem 'emoji'
# auditing.
gem 'paper_trail'
# gem 'paper_trail-association_tracking'
gem 'paper_trail-globalid'
# webrick is slow, capybara will use puma instead
gem 'puma'
# gem "faster_path" # will break without rustc
gem 'fast_blank'
# storing money with money-rails
gem 'money-rails'
# masked inputs
gem 'jquery_mask_rails'
# the standard rails tagging library
gem 'acts-as-taggable-on'
# mapping, because maps rock and google sucks
gem 'leaflet-rails'
group :development do
# gem 'capistrano'
# mainline cap is busted w/r/t Rails 4. Try this fork instead.
# src: https://github.com/capistrano/capistrano/pull/412
gem 'capistrano', '~> 2.15.4', require: false
gem 'capistrano-sidekiq', require: false
gem "ruby-lsp", "~> 0.3.7", require: false
gem 'ed25519'
# gem 'heavens_door' # recording capybara tests
gem 'lol_dba' # find columns that should have indices
gem 'rbnacl', require: false
gem 'rvm-capistrano', require: false
# gem 'rbnacl-libsodium' # same as above
gem 'bcrypt_pbkdf' # same as above
# this whole group makes finding performance issues much friendlier
gem 'active_record_doctor'
gem 'bundler-audit', '>= 0.5.0', require: false
gem 'derailed_benchmarks'
# gem 'flamegraph'
# gem 'memory_profiler'
# gem "rack-mini-profiler"
# gem 'ruby-prof'
# gem 'stackprof' # ruby 2.1+ only
# n+1 killer.
# gem 'bullet'
# what attributes does this model actually have?
gem 'annotate', require: false
gem 'kramdown', require: false
# a console in your tests, to find out what's actually happening
gem 'pry-rails'
# a console in your browser, when you want to interrogate views.
gem 'web-console'
gem 'rails-erd', require: false
# silences logging of requests for assets
# gem 'quiet_assets'
# enabling us to deploy via travis and encrypted keys!
# gem 'travis'
# gem 'spring' is this even a thing anymore?
gem 'foreman', require: false # for procfile
gem 'guard', require: false
gem 'guard-bundler', require: false
gem 'guard-minitest', require: false
gem 'guard-rspec', require: false
gem 'guard-rubocop', require: false
gem 'rubocop', require: false
end
group :test do
# mock tests w/mocha
gem 'mocha', require: false
gem 'sqlite3', platform: %i[ruby mswin mingw]
## for JRuby
# gem 'jdbc-sqlite3', platform: :jruby
gem 'coveralls', require: false
gem 'memory_test_fix' # in memory DB, for the speedy
# generate fake data w/faker: http://rubydoc.info/github/stympy/faker/master/frames
gem 'simplecov', '0.16', require: false
# screenshots when capybara fails
gem 'capybara-screenshot'
# retry poltergeist specs. they are finicky
gem 'rspec-retry'
# calendaring tests will almost always break on saturdays.
gem 'timecop'
gem 'webmock'
# in memory redis for testing only
# gem 'mock_redis'
gem 'capybara'
gem 'capybara-email'
gem 'database_cleaner'
gem 'parallel_tests' # https://devopsvoyage.com/2018/10/22/execute-rspec-locally-in-parallel.html
gem 'rspec'
gem 'rspec-rails'
gem 'rspec-sidekiq'
gem 'selenium-webdriver'
gem 'shoulda'
gem 'sms-spec'
gem 'vcr'
gem 'webdrivers', '~> 5.0'
end
group :development, :test do
# use holder for placeholder images
gem 'apparition'
gem 'byebug', '~> 11.0'
gem 'concurrent-ruby'
gem 'dotenv-rails'
gem 'factory_bot_rails', '4.10.0', require: false
gem 'faker', require: false
gem 'gem-licenses', require: false
gem 'holder_rails'
gem 'pry' # a console anywhere!
# gem 'rubocop-faker', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rails_config', require: false
gem 'rubocop-rspec', require: false
# To use debugger
# gem 'debugger'
end