Using unicorn with heroku (cedar stack)

2012-02-17

To use Unicorn instead of thin on heroku, do the following: Add gem "unicorn" to your Gemfile Add a Procfile Add config/unicorn.rb Procfile 1 web: bundle exec unicorn -p $PORT -c ./co...


Using ruby 1.9.3 with heroku cedar stack

2012-01-16

To use ruby 1.9.3 with heroku's cedar stack, do the following: Prepare a new application Enable the user env lab feature with: heroku labs:enable user_env_compile -a <appname> Set the R...