Commit c9aab2cb2fd3c147928cbe96805c51b271a812ca
1 parent
328ba55f
Exists in
master
and in
1 other branch
Trying different aproach for thin server dependency.
Showing
2 changed files
with
11 additions
and
3 deletions
Show diff stats
Gemfile
... | ... | @@ -11,9 +11,6 @@ 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 | -if ENV['HEROKU'] | |
15 | - gem 'thin' | |
16 | -end | |
17 | 14 | |
18 | 15 | platform :ruby do |
19 | 16 | gem 'bson_ext', '~> 1.2' |
... | ... | @@ -30,3 +27,7 @@ group :test do |
30 | 27 | gem 'factory_girl_rails' |
31 | 28 | gem 'email_spec' |
32 | 29 | end |
30 | + | |
31 | +group :heroku do | |
32 | + gem 'thin' | |
33 | +end | ... | ... |
Gemfile.lock
... | ... | @@ -42,6 +42,7 @@ GEM |
42 | 42 | bson_ext (1.3.0) |
43 | 43 | builder (2.1.2) |
44 | 44 | crack (0.1.8) |
45 | + daemons (1.1.4) | |
45 | 46 | database_cleaner (0.6.7) |
46 | 47 | devise (1.1.9) |
47 | 48 | bcrypt-ruby (~> 2.1.2) |
... | ... | @@ -51,6 +52,7 @@ GEM |
51 | 52 | rspec (~> 2.0) |
52 | 53 | erubis (2.6.6) |
53 | 54 | abstract (>= 1.0.0) |
55 | + eventmachine (0.12.10) | |
54 | 56 | factory_girl (1.3.3) |
55 | 57 | factory_girl_rails (1.0.1) |
56 | 58 | factory_girl (~> 1.3) |
... | ... | @@ -122,6 +124,10 @@ GEM |
122 | 124 | activesupport (~> 3.0) |
123 | 125 | railties (~> 3.0) |
124 | 126 | rspec (~> 2.5.0) |
127 | + thin (1.2.11) | |
128 | + daemons (>= 1.0.9) | |
129 | + eventmachine (>= 0.12.6) | |
130 | + rack (>= 1.0.0) | |
125 | 131 | thor (0.14.6) |
126 | 132 | treetop (1.4.9) |
127 | 133 | polyglot (>= 0.3.1) |
... | ... | @@ -153,6 +159,7 @@ DEPENDENCIES |
153 | 159 | redmine_client! |
154 | 160 | rspec (~> 2.5) |
155 | 161 | rspec-rails (~> 2.5) |
162 | + thin | |
156 | 163 | useragent (~> 0.3.1) |
157 | 164 | webmock |
158 | 165 | will_paginate | ... | ... |