I use Ruby 1.9.x syntax in my Rails 3 app, but after pushing it to Heroku it crashes due to older Ruby version (1.8). How can I control it?

link|improve this question

feedback

2 Answers

up vote 25 down vote accepted

Heroku has two different 1.9.2 stacks: Bamboo and Cedar. You can switch to the Bamboo stack by running:

$ heroku stack:migrate bamboo-mri-1.9.2

You cannot migrate to the Cedar stack at this time, but you could create a new Cedar app and then push your app to it. Create a Cedar app by running either:

$ heroku create --stack cedar
$ heroku create app-name --stack cedar

Full details are at http://devcenter.heroku.com/articles/stack. You can read more about what's different about Cedar at http://devcenter.heroku.com/articles/cedar.

link|improve this answer
feedback

You can now explicitly specify a Ruby version on Heroku.

Simply setup your Gemfile as so

# Gemfile
source "https://rubygems.org"
ruby "1.9.3"

# Gems go here
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.