-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathGemfile
More file actions
36 lines (33 loc) · 737 Bytes
/
Gemfile
File metadata and controls
36 lines (33 loc) · 737 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
# A sample Gemfile
source 'https://rubygems.org'
gem 'rack', '~> 1.5.2'
gem 'grape', '~> 0.5.0'
gem 'grape-swagger'
gem 'sprockets', '~> 2.0'
gem 'activerecord', '~> 3.2.11', require: 'active_record'
gem 'sqlite3', group: [:development, :test]
gem 'pg', group: :production
gem 'rake'
gem 'roar'
gem 'encode_with_alphabet'
gem 'rack-ssl-enforcer'
gem 'newrelic_rpm'
gem 'newrelic-grape'
gem 'racksh'
gem 'fdoc'
group :development do
gem 'rerun'
end
group :test do
gem 'rspec'
gem 'rack-test', require: 'rack/test'
gem 'guard'
gem 'guard-rspec'
gem 'rb-fsevent', '~> 0.9.1'
gem 'rb-inotify', '~> 0.8.8', require: false
gem 'database_cleaner'
gem 'factory_girl'
gem 'shoulda-matchers'
gem 'vcr'
gem 'webmock'
end