-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathGemfile
56 lines (48 loc) · 1 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
source 'https://rubygems.org'
ruby '2.5.1'
gem 'rails', '4.2.10'
gem 'pg', '= 0.20'
gem 'autoprefixer-rails'
gem 'coffee-rails', '~> 4.0.0'
gem 'font-awesome-rails'
gem 'jquery-rails'
gem 'sass-rails', '~> 5.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'airbrake'
gem 'chronic'
gem 'clockwork'
gem 'connection_pool'
gem 'foundation-rails', '~> 5'
gem 'httparty'
gem 'haml-rails'
gem 'jbuilder'
gem 'jbuilder_cache_multi'
gem 'platform-api'
gem 'puma'
gem 'puma_worker_killer'
gem 'rack-attack'
gem 'rack-cors', require: 'rack/cors'
gem 'rack-timeout'
gem 'rails_autoscale_agent'
gem 'redis-rails'
gem 'responders', '~> 2.0'
gem 'watir'
group :production do
gem 'rails_12factor'
gem 'scout_apm'
end
group :development do
gem 'derailed_benchmarks'
gem 'stackprof'
gem 'chromedriver-helper'
end
group :development, :test do
gem 'better_errors'
gem 'binding_of_caller'
gem 'pry-rails'
gem 'rubocop'
end
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end