Commit 8ed66ae309d707f5e8d9a26b951f8445398e8ce6

Authored by Nikita Fedyashev
1 parent cc9f49cc
Exists in master and in 1 other branch production

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 81 gem 'capistrano'
82 82 end
83 83  
  84 +gem 'foreman', :group => :development
  85 +
84 86 group :test do
85 87 gem 'capybara'
86 88 gem 'launchy'
... ...
Gemfile.lock
... ... @@ -97,6 +97,8 @@ GEM
97 97 faraday_middleware (0.8.8)
98 98 faraday (>= 0.7.4, < 0.9)
99 99 ffi (1.1.4)
  100 + foreman (0.60.2)
  101 + thor (>= 0.13.6)
100 102 haml (3.1.6)
101 103 happymapper (0.4.0)
102 104 libxml-ruby (~> 2.0)
... ... @@ -333,6 +335,7 @@ DEPENDENCIES
333 335 email_spec
334 336 execjs
335 337 fabrication (~> 1.3.0)
  338 + foreman
336 339 haml
337 340 hipchat
338 341 hoi
... ...
Procfile
1   -web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb
  1 +web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb
... ...