-
Notifications
You must be signed in to change notification settings - Fork 9
/
Gemfile
54 lines (42 loc) · 856 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
source 'http://rubygems.org'
ruby '2.1.0'
gem 'unicorn'
gem 'rack-timeout'
gem 'rails', '~> 4.2.0'
gem 'fitgem'
# Authentication/Authorization Support
gem 'devise'
gem 'omniauth-fitbit'
# Database
gem 'pg'
# Utility
gem 'visual-environments'
# Frontend
gem 'backbone-on-rails'
gem 'haml-rails', '0.8.2'
gem 'simple_form'
gem 'foundation-rails'
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'jquery-rails'
gem 'handlebars_assets', '~> 0.12.0'
# API Support
gem 'rabl'
# Monitoring
group :production do
gem 'newrelic_rpm'
gem 'rails_12factor'
end
group :development, :test do
gem 'factory_girl_rails'
gem 'rspec-rails'
gem 'webrat'
gem 'database_cleaner'
end
# Enable better error handling
group :development do
gem 'meta_request', '~> 0.2.1', :require => 'meta_request'
gem 'better_errors'
gem 'binding_of_caller'
end