Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Trying to deploy to Heroku but get the following error:

-----> Gemfile detected, running Bundler version 1.0.7
       Unresolved dependencies detected; Installing...
       Using --without development:test
       Fetching source index for http://rubygems.org/
       Could not find devise-1.4.6 in any of the sources
       FAILED: http(preventing hyperlink)://devcenter.heroku.com/articles/bundler
 !     Heroku push rejected, failed to install gems via Bundler

I have "gem 'devise'" in my gem file, have "source 'http://rubygems.org'" at the top, and have run both bundle install and bundle update. Not sure why Heroku is looking for 1.4.6. Any ideas?

Thanks!

John

Here is the gemfile:

source 'http://rubygems.org'

gem 'rails', '3.0.9'
gem 'devise'

gem 'sqlite3', '1.3.3', :group => :development

Looks like devise 1.4.6 is no longer at Rubygems.com: http://rubygems.org/gems/devise/versions

I tried using devise 1.4.5, but it didn't work either.

share|improve this question
Are you able to post your full Gemfile? – Josh Diehl Sep 28 '11 at 20:39
source 'rubygems.org'; gem 'rails', '3.0.9' gem 'devise' gem 'sqlite3', '1.3.3', :group => :development – John Sep 28 '11 at 20:45
Heroku will be reading from your Gemfile.lock - what version does that show against devise? – John Beynon Sep 29 '11 at 8:06
I just retried it, checking the Gemfile.lock first, and it said 1.4.7 for devise, but I got the same error. – John Sep 29 '11 at 13:50

1 Answer

up vote 0 down vote accepted

You need to update the locked version of Devise in your Gemfile.lock.

$ bundle update devise

Then commit, push and deploy to Heroku.

share|improve this answer
AHH, it was the commit step I was not taking after the update. Thanks! – John Sep 29 '11 at 20:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.