Commit 8ed66ae309d707f5e8d9a26b951f8445398e8ce6
1 parent
cc9f49cc
Exists in
master
and in
1 other branch
Explicitly specify foreman gem dependency in Gemfile
Procfile was already used but without explicit foreman dependency
Showing
3 changed files
with
6 additions
and
1 deletions
Show diff stats
Gemfile
@@ -81,6 +81,8 @@ group :development, :test do | @@ -81,6 +81,8 @@ group :development, :test do | ||
81 | gem 'capistrano' | 81 | gem 'capistrano' |
82 | end | 82 | end |
83 | 83 | ||
84 | +gem 'foreman', :group => :development | ||
85 | + | ||
84 | group :test do | 86 | group :test do |
85 | gem 'capybara' | 87 | gem 'capybara' |
86 | gem 'launchy' | 88 | gem 'launchy' |
Gemfile.lock
@@ -97,6 +97,8 @@ GEM | @@ -97,6 +97,8 @@ GEM | ||
97 | faraday_middleware (0.8.8) | 97 | faraday_middleware (0.8.8) |
98 | faraday (>= 0.7.4, < 0.9) | 98 | faraday (>= 0.7.4, < 0.9) |
99 | ffi (1.1.4) | 99 | ffi (1.1.4) |
100 | + foreman (0.60.2) | ||
101 | + thor (>= 0.13.6) | ||
100 | haml (3.1.6) | 102 | haml (3.1.6) |
101 | happymapper (0.4.0) | 103 | happymapper (0.4.0) |
102 | libxml-ruby (~> 2.0) | 104 | libxml-ruby (~> 2.0) |
@@ -333,6 +335,7 @@ DEPENDENCIES | @@ -333,6 +335,7 @@ DEPENDENCIES | ||
333 | email_spec | 335 | email_spec |
334 | execjs | 336 | execjs |
335 | fabrication (~> 1.3.0) | 337 | fabrication (~> 1.3.0) |
338 | + foreman | ||
336 | haml | 339 | haml |
337 | hipchat | 340 | hipchat |
338 | hoi | 341 | hoi |
Procfile