-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathGemfile
64 lines (38 loc) · 839 Bytes
/
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
source 'https://rubygems.org'
ruby '2.3.7'
gem 'rails', '4.2.10'
gem 'pg', '= 0.20'
gem 'sass-rails', '~> 5.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'jbuilder', '~> 1.2'
gem 'responders', '~> 2.0'
gem 'rails_admin'
gem 'rack-attack'
gem 'redis-rails'
gem 'rabl'
gem 'watir'
gem 'chromedriver-helper'
gem 'oj'
gem 'clockwork'
gem 'haml-rails'
gem 'foundation-rails', "~> 5"
gem 'autoprefixer-rails'
gem 'font-awesome-rails'
group :production do
gem 'rails_12factor'
end
group :development, :test do
gem 'pry-rails'
gem 'better_errors'
gem 'binding_of_caller'
gem 'rubocop'
end
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
gem 'unicorn'
gem 'newrelic_rpm'
gem 'rack-cors', require: 'rack/cors'