-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathGemfile
More file actions
53 lines (47 loc) · 966 Bytes
/
Gemfile
File metadata and controls
53 lines (47 loc) · 966 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
source 'https://rubygems.org'
ruby '2.1.5'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.8'
gem 'awesome_print'
gem 'backbone-on-rails'
gem 'coffee-rails', '~> 4.0.0'
gem 'compass-rails'
gem 'devise'
gem 'gon'
gem 'haml'
gem 'handlebars_assets'
gem 'httpclient'
gem 'jquery-rails'
gem 'js-routes'
gem 'marionette-rails'
gem 'momentjs-rails'
gem 'normalize-rails'
gem 'oauth2'
gem 'pg'
gem 'rabl'
gem 'rqrcode-rails3'
gem 'simple_form'
gem 'two_factor_authentication'
gem 'uglifier', '>= 1.3.0'
gem 'unicorn'
gem 'sass-rails', '~> 4.0.0'
gem 'sprockets', '2.11.0' # 2.12.0 is broken
gem 'zurb-foundation'
group :production do
gem 'dalli'
gem 'memcachier'
gem 'rack-cache'
gem 'rails_12factor'
end
group :staging, :development do
gem 'letter_opener_web'
end
group :development, :test do
gem 'byebug'
gem 'dotenv-rails'
gem 'factory_girl_rails'
gem 'rspec-rails'
end
group :development do
gem 'foreman'
end