I have a new Rails project and i decided to give heroku a try, deployment seems very easy there
I am developing on windows, so running unicorn is not a choice, but w
The alternative solution (which the original poster was very close to) is
group :production do
gem 'unicorn'
end
and then using
bundle install --without production
on your Windows machine.
Heroku sidenote (not tested)
Unlike the accepted answer, this should not cause Heroku to ignore your Gemfile.lock
This is because Heroku checks your Gemfile for mswin
and mingw
when deciding if it is Windows generated or not.
You can target specific platforms in your Gemfile:
platforms :ruby do # linux
gem 'unicorn'
end
platforms :mswin do
# gems specific to windows
end
see the manpages for gemfile for more information.