2

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

LanguagesNamedAfterCofee
  • 5,782
  • 7
  • 45
  • 72

2 Answers2

2

Working for me:

group :production, :staging do
  gem 'therubyracer', '~> 0.9.3.beta1'
end
kain
  • 5,510
  • 3
  • 27
  • 36
1

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.

Gary Barker
  • 1,609
  • 2
  • 15
  • 18