forked from jdjkelly/quant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
92 lines (78 loc) · 1.87 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
source 'https://rubygems.org'
source 'https://rails-assets.org'
ruby "2.1.2"
gem 'rails', '4.1.1'
gem 'rails_config'
# Rails 4.1 upgrade to remove
gem 'active_model_serializers'
gem 'protected_attributes'
# Databases
gem 'activerecord-postgres-hstore'
gem 'activerecord-postgres-earthdistance'
gem 'annotate', '>=2.5.0'
gem 'pg'
# Statistics
gem 'interpolate'
# Authentication & APIs
gem 'cancan'
gem 'oauth'
gem 'devise', github: 'plataformatec/devise'
gem 'omniauth'
gem 'omniauth-withings', github: 'jdjkelly/omniauth-withings'
gem 'omniauth-fitbit'
gem 'omniauth-foursquare', '~> 1.0.0'
gem 'withings', github: 'jdjkelly/withings'
gem 'fitgem'
gem 'foursquare2'
# Assets
gem 'sass-rails', '~> 4.0.0'
gem 'compass-rails', '~> 1.1.3'
gem 'coffee-rails'
gem 'uglifier', '>= 1.0.3'
gem 'bootstrap-sass', '~> 3.1.1'
gem 'turbolinks'
gem 'jquery-turbolinks', '~> 1.0.0'
gem 'jquery-rails'
gem 'font-awesome-rails'
group :development do
gem 'rspec-rails'
gem 'guard', require: false
gem 'guard-rspec', require: false
gem 'guard-bundler', require: false
gem 'guard-livereload', require: false
gem 'spring'
gem 'spring-commands-rspec'
gem 'foreman'
gem 'quiet_assets'
gem 'pry-rails'
gem 'thin'
gem 'ruby_gntp'
gem 'rack-livereload'
gem 'parallel_tests'
end
group :test do
gem 'capybara', '~> 1.1.4'
gem 'rspec'
gem 'growl'
gem 'rb-fsevent'
gem 'minitest' # https://github.com/thoughtbot/shoulda-matchers/issues/408
gem 'shoulda-matchers'
gem 'fabrication'
gem 'database_cleaner'
gem 'faker'
gem 'email_spec'
gem 'webmock'
gem 'fuubar'
end
group :production do
gem 'newrelic_rpm'
gem 'rails_12factor' # Heroku requires this
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the app server
gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'