Commit 0f353fe9efe3af626b3f3bb2829d22b96c9523de

Authored by Shuky Dvir
2 parents 30b7e5b6 8ed66ae3
Exists in master and in 1 other branch production

Merge pull request #326 from nfedyashev/specify_foreman_dependency_explicitly

Explicitly specify foreman gem dependency in Gemfile
Showing 3 changed files with 6 additions and 1 deletions   Show diff stats
Gemfile
... ... @@ -83,6 +83,8 @@ group :development, :test do
83 83 gem 'capistrano'
84 84 end
85 85  
  86 +gem 'foreman', :group => :development
  87 +
86 88 group :test do
87 89 gem 'capybara'
88 90 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)
... ... @@ -334,6 +336,7 @@ DEPENDENCIES
334 336 email_spec
335 337 execjs
336 338 fabrication (~> 1.3.0)
  339 + foreman
337 340 haml
338 341 hipchat
339 342 hoi
... ...
Procfile
1   -web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb
  1 +web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb
... ...