I cannot deploy my Rails 3.1rc4 app to Heroku even though I added this to my Gemfile: gem 'therubyracer-heroku', '0.8.1.pre3', :group => :production
I can't figure out what the problem is, here is the log: gist
I cannot deploy my Rails 3.1rc4 app to Heroku even though I added this to my Gemfile: gem 'therubyracer-heroku', '0.8.1.pre3', :group => :production
I can't figure out what the problem is, here is the log: gist
Working for me:
group :production, :staging do
gem 'therubyracer', '~> 0.9.3.beta1'
end
Is it necessary to list therubyracer in your Gemfile at all? According to the section towards the bottom of the Rails 3.1 info on heroku you are strongly discouraged from using it.