forked from goddamnyouryan/coven-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
40 lines (34 loc) · 667 Bytes
/
Copy pathGemfile
File metadata and controls
40 lines (34 loc) · 667 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
source 'https://rubygems.org'
ruby '2.1.2'
gem 'dotenv-rails', groups: [:development, :test]
gem 'rails', '4.1.7'
gem 'pg'
gem 'unicorn'
gem 'quiet_assets'
gem 'typhoeus'
gem 'rack-cors', require: 'rack/cors'
gem 'newrelic_rpm'
gem 'delayed_job_active_record'
gem 'jbuilder', '~> 2.0'
gem 'heroku'
group :development do
gem 'lol_dba'
gem 'bullet'
gem 'rails_best_practices'
end
group :development, :test do
gem 'spring'
gem 'spring-commands-rspec'
gem 'byebug'
gem 'rspec-rails'
end
group :test do
gem 'factory_girl_rails'
gem 'database_cleaner'
gem 'vcr'
gem 'webmock'
end
group :production do
gem 'rails_12factor'
gem 'workless'
end