Commit 328ba55f381d1dc251c1297f4e6ec3e8349b8bde
1 parent
e63c4ee1
Exists in
master
and in
1 other branch
Using thin gem for Heroku only.
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
Gemfile
... | ... | @@ -11,7 +11,9 @@ gem 'redmine_client', :git => "git://github.com/oruen/redmine_client.git" |
11 | 11 | gem 'mongoid_rails_migrations' |
12 | 12 | gem 'useragent', '~> 0.3.1' |
13 | 13 | gem 'pivotal-tracker' |
14 | -gem 'thin' | |
14 | +if ENV['HEROKU'] | |
15 | + gem 'thin' | |
16 | +end | |
15 | 17 | |
16 | 18 | platform :ruby do |
17 | 19 | gem 'bson_ext', '~> 1.2' | ... | ... |