I have installed devise 1.4.6 succesfully on my local development environment. I have this in my bundle file: gem ‘devise’
But when I want to deploy it to heroku, it says “Could not find devise-1.4.6 in any of the sources”. What should I do? Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Add the following line just at the beginning of your Gemfile:
Heroku doesn’t seem to have RubyGems in their list of sources for gems.
Alternatively you might want to execute
bundle updateto update your gems to the newest version (iirc, devise 1.4.7 is out) and then push to heroku again.