-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
58 lines (52 loc) · 1.1 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
source 'https://rubygems.org'
ruby '2.2.2'
gem 'airbrake'
gem 'aws-sdk', '1.6.2' # Bug https://github.com/thoughtbot/paperclip/issues/751
gem 'bluecloth'
gem 'bourbon', '~> 3.1.8'
gem 'coffee-rails'
gem 'delayed_job_active_record', '>= 4.0.0'
gem 'delayed_paperclip'
gem 'devise'
gem 'email_validator'
gem 'high_voltage'
gem 'jquery-rails'
gem 'omniauth-google-oauth2'
gem 'paperclip'
gem 'pg'
gem 'rack-timeout'
gem 'rails', '4.0.3'
gem 'rails_admin'
gem 'recipient_interceptor'
gem 'ruby-mp3info', '~> 0.8'
gem 'sass-rails', '4.0.2'
gem 'simple_form'
gem 'uglifier'
gem 'unicorn'
group :development do
gem 'binding_of_caller'
gem 'foreman'
gem 'spring'
end
group :development, :test do
gem 'dotenv-rails'
gem 'factory_girl_rails'
gem 'rspec-rails', '>= 2.14'
end
group :test do
# gem 'capybara-webkit', '>= 1.0.0'
gem 'database_cleaner'
gem 'launchy'
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'timecop'
gem 'webmock'
end
group :staging, :production do
gem 'dalli'
gem 'kgio'
gem 'memcachier'
gem 'newrelic_rpm', '>= 3.6.7'
gem 'rack-cache'
gem 'rails_12factor'
end