-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathGemfile
More file actions
39 lines (33 loc) · 711 Bytes
/
Gemfile
File metadata and controls
39 lines (33 loc) · 711 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
ruby '2.0.0'
source 'https://rubygems.org'
gem "dpl", "1.5.7"
gem "rails", "~>4.0.0"
gem "resque"
gem "unicorn"
gem "yajl-ruby"
gem "heroku-api"
gem "rendezvous"
gem "warden-github-rails"
# Pre-release for the deployments API
gem "octokit", :github => "octokit/octokit.rb", :ref => "2afe6c9"
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
group :development, :test do
gem "pry"
gem "sqlite3"
gem "webmock"
gem "debugger"
gem "rspec-rails"
end
group :development do
gem "foreman"
gem "meta_request"
gem "better_errors"
gem "binding_of_caller"
end
group :staging, :production do
gem "pg"
gem "rails_12factor"
end