forked from Vermonster/wmsb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
39 lines (32 loc) · 688 Bytes
/
Gemfile
File metadata and controls
39 lines (32 loc) · 688 Bytes
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
source 'https://rubygems.org'
gem 'rails', '3.2.16'
gem 'haml'
gem 'faraday'
gem 'active_model_serializers'
gem 'puma'
gem 'dalli'
gem 'simple_form'
gem 'rack-cache'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'bourbon'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
gem 'jquery-rails'
end
group :production do
gem 'memcachier'
gem 'newrelic_rpm'
end
group :test do
gem 'rspec-rails', '~> 2.14.0'
gem 'capybara'
gem 'poltergeist'
gem 'timecop'
end
group :development, :test do
gem 'foreman'
gem 'pry-rails'
end