-
Notifications
You must be signed in to change notification settings - Fork 49
/
Gemfile
80 lines (74 loc) · 1.55 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
source 'https://rubygems.org'
ruby "2.7.8"
gem 'active_model_serializers'
gem 'bcrypt'
gem 'browser'
gem 'bugsnag'
gem 'capybara'
gem 'carrierwave-aws'
gem 'carrierwave_backgrounder'
gem 'clearance'
gem 'coffee-rails'
gem 'connection_pool'
gem 'dalli'
gem 'excon'
gem 'faraday'
gem 'friendly_id'
# gem 'green_monkey'
gem 'haml-rails'
gem 'icalendar'
gem 'invisible_captcha'
gem 'jbuilder'
gem 'kaminari'
gem 'letsencrypt_plugin'
gem 'lograge'
# gem 'libv8', '5.9.211.38.1' # had trouble compiling other versions on mac
gem 'mailgun-ruby'
gem 'meta-tags'
gem 'mini_magick'
gem 'mini_racer'
gem 'nokogiri'
gem 'pg', '~> 0.18'
gem 'poltergeist'
gem 'puma'
gem 'puma_worker_killer'
gem 'pusher'
gem 'rack-cors'
gem 'rack-mini-profiler', require: false
gem 'rack-ssl-enforcer'
# gem 'rack-timeout' # causing memory issues
gem 'rails', '~> 5.0.7.2'
gem 'rails_stdout_logging', group: [:development, :production]
# gem 'react_on_rails'
gem 'redcarpet' #, ">=3.3.4"
# gem 'sass-rails', '~> 5.0'
# gem 'sassc-ruby'
gem "sassc-rails"
# gem 'skylight'
gem 'stripe'
gem 'turbolinks'
gem 'uglifier' #, '>= 1.3.0'
# Legacy gems needed for porting, can remove soon
gem 'redis'
group :development, :test do
gem 'byebug'
gem 'derailed'
gem 'dotenv-rails'
gem 'fabrication-rails'
gem 'faker'
gem 'letter_opener'
gem 'rubocop', require: false
gem 'traceroute'
end
group :test do
gem 'factory_girl_rails'
gem 'rails-controller-testing'
gem 'shoulda-matchers'
gem 'shoulda'
gem 'timecop'
end
group :development do
gem 'license-list'
gem 'spring'
gem 'web-console'
end