Is there a fix for the “Could not find *gem* in any of the sources” error that doesn't involve deleting Gemfile.lock?

前端 未结 5 627
夕颜
夕颜 2021-02-05 02:39

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         


        
5条回答
  •  广开言路
    2021-02-05 03:37

    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

提交回复
热议问题