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?
|
feedback
|
|
Heroku has two different 1.9.2 stacks: Bamboo and Cedar. You can switch to the Bamboo stack by running:
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:
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. | ||||
|
feedback
|
|
You can now explicitly specify a Ruby version on Heroku. Simply setup your
| |||
|
feedback
|