-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
44 lines (33 loc) · 909 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
source 'https://rubygems.org'
ruby "2.2.2"
gem 'rack-cors'
gem 'pg'
gem 'activerecord', '~> 4.0.0', :require => 'active_record'
gem 'hashie-forbidden_attributes'
gem 'honeybadger', '~> 1.16.7'
gem 'json'
gem 'napa', github: 'ashtonthomas/napa', branch: 'copy_darbys_unpin_dependencies'
gem 'mondavi', path: '/Users/ashton/git/ashtonthomas/mondavi'
gem 'grape', '~> 0.13.0'
gem 'roar', '~> 0.12.0'
gem 'grape-swagger', '0.9.0'
gem 'representable', '>= 2.4.0.rc1'
gem 'puma', '2.11.3' # fixing version because the 2.12 revision has problems reporting to NewRelic
gem 'naught'
gem 'pry'
# having trouble running console on heroku
# group :development,:test do
# gem 'pry'
# end
group :development do
gem 'rubocop', require: false
gem 'shotgun', require: false
end
group :test do
gem 'factory_girl'
gem 'rspec'
gem 'rack-test'
gem 'simplecov'
gem 'webmock'
gem 'database_cleaner'
end