It looks like heroku is now defaulting to using ruby 2.0.0 out of the box when you upload a rails app.
One of my gems breaks due to some incompatibility issue that I don't really want to look into. The solution is of course to write ruby '1.9.2'
or what have you in the Gemfile.
Problem is when running the server locally, ruby()
is only recognized by heroku, not your local bundler and so I have to comment it out every time while starting a local server.
Is there a clever way around this that I am not aware of?