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
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.