1

I forked and cloned the rails project on my machine. I am doing bundle install and it throws me this...

Updating git://github.com/rails/arel.git Updating git://github.com/brynary/rack-test.git Updating git://github.com/rails/jquery-rails.git Updating git://github.com/rails/coffee-rails.git Updating git://github.com/rails/activerecord-deprecated_finders.git Updating git://github.com/rails/sprockets-rails.git Updating git://github.com/voloko/sdoc.git Fetching gem metadata from https://rubygems.org/........ Fetching gem metadata from https://rubygems.org/.. Resolving dependencies... Could not find gem 'jquery-rails (~> 2.1.4) ruby' in git://github.com/rails/jquery-rails.git (at master). Source contains 'jquery-rails' at: 2.2.1

What is happening here ? I've got no clue.

4

2 回答 2

0

您可以运行gem list以查看您的rvm gemset. 另一件事是删除版本号并让捆绑程序自己解决依赖关系。只需包括gem 'jquery-rails'. 当这种奇怪的事情发生在我身上时,通常是rvm gemset我忽略 了

于 2013-05-16T20:22:35.463 回答
0

“找不到 gem 'jquery-rails (~> 2.1.4)”。

看起来它在您的 Gemfile 中找不到“jquery-rails”或特定版本。

你必须安装 jquery-rails (~> 2.1.4) 或者如果你有它然后在你的 Gemfile 中注释掉版本部分

您可以使用以下命令查看您是否安装了 gem list --local | grep -i jquery

于 2013-05-16T19:08:57.680 回答