I was able to deploy to heroku yesterday just fine. We're on the cedar stack with a rails 3.2 application. When I deploy it gives me this:
$ git push -f heroku-ab-staging tmp-heroku-deploy-gochez_heroku_test-2012-05-08-10-43-39:master
Counting objects: 222, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (162/162), done.
Writing objects: 100% (191/191), 112.28 KiB, done.
Total 191 (delta 45), reused 13 (delta 0)
-----> Heroku receiving push
-----> Ruby/Rails app detected
!
! Invalid RUBY_VERSION specified: fatal:-Not-a-git-repository:-'.'-fatal:-Not-a-git-repository:-'.'-fatal:-Not-a-git-repository:-'.'-No-ruby-version-specified
! Valid versions: ruby-1.9.3-p0, ruby-1.9.3-p125, rbx-1.2.4, rbx-2.0.0dev-20120115-1.9, rbx-2.0.0dev-20120115-1.8, rbx-2.0.0dev-20120123-1.9, rbx-2.0.0dev-20120123-1.8, ruby-1.9.2-p290, jruby-1.6.5.1, jruby-1.6.7, ruby-1.9.3, ruby-1.9.2
!
! Heroku push rejected, failed to compile Ruby/rails app
To git@heroku.com:myapp.git
! [remote rejected] tmp-heroku-deploy-gochez_heroku_test-2012-05-08-10-43-39 -> master (pre-receive hook declined)
error: failed to push some refs to 'git@heroku.com:myapp.git'
(Note that I changed my real app's name to myapp for privacy concerns)
Any idea what might be causing this? It was working just fine yesterday. What debugging can I perform to figure out what the issue is?
rubyare you using? It says:Valid versions: ruby-1.9.3-p0, ruby-1.9.3-p125, ...– Aayush Kumar May 8 '12 at 17:15ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-darwin10.6.0]that's what i am in locally when I perform the deploy... (which is in the list)... Where is it getting this RUBY_VERSION from though? Because it doesn't look at my local ruby version to define what to use on the heroku server, right? – nzifnab May 8 '12 at 17:32heroku configto see what/if it's been set. – John Beynon May 8 '12 at 20:18heroku config:add RUBY_VERSION=ruby-1.9.2-p290didn't seem to have an effect either. I had a support ticket open but the issue resolved itself before they came up with a solution for me. Dunno what the problem was. – nzifnab May 8 '12 at 20:29