I'm sure I just missed something simple here, but it all drove me crazy all night! When I try to deploy the Rails 3.1.rc4 application on the Cedar stack on Heroku (I did it successfully a month ago with a similar Gemfile), I get this error:
Could not find sprockets-2.0.0.beta.10 in any of the sources
My gemfile looks like this:
source 'http://rubygems.org'
After searching and searching for this article on Google Groups, I decided that this should be fixed by adding this line
gem 'sprockets', '2.0.0.beta10'
into my gemfile and then run
bundle update sprockets
This failed using
Could not find gem 'sprockets (= 2.0.0.beta10, runtime)' in any of the gem sources listed in your Gemfile.
and at the moment I donβt know what to do or how to deal with it. Is it possible that I need to upgrade to Rails 3.1.rc5, and if so, how can I do this without starting from scratch?
Thanks for any help you can provide!
-Robert
source share