I am trying to get my development environment setup on a new computer.
git clone -o heroku git@heroku.com:theirapp.git
cd theirapp
bundle
Fetching gem metadata f
An old version of bundler was giving me this same issue. After a bunch of puzzling, I realized that this was the issue.
Running gem install bundler
fixed it completely.
bundle update jquery-rails
will update just the jquery-rails
gem, which is likely what you're looking for. Running bundle update
is the equivalent of deleting Gemfile.lock
and is not recommended in most cases. See here: Heroku push rejected: can't find jquery-rails-2.0.0 in sources
simply run
bundle --full-index
that should do the trick
According to rubygems.org, jquery-rails 2.0.0 has been yanked. That explains the error you had with jquery-rails.
Running $ bundle update jquery-rails
will rebuild your gem snapshot. That way you don't have to delete Gemfile.lock
I've found it safest ALWAYS to specify gem versions, and only change them when necessary. Saved me a LOT of trouble.