0

我正在使用 RoR,并且正在尝试使用从“Rails 3 in Action”一书中学习的 Cucumber 框架。但是,当我输入

rails g cucumber:install

我收到以下错误。

Could not find activesupport-3.1.3 in any of the sources
Run `bundle install` to install missing gems.

但是,当我执行“捆绑安装”时,我得到以下输出显示已安装 activesupport-3.1.3

...
Using rake (0.9.2.2) 
Using multi_json (1.3.6) 
Using activesupport (3.1.3) 
Using builder (3.0.0) 
Using i18n (0.6.0) 
Using activemodel (3.1.3) 
Using erubis (2.7.0)
...

我的 Gem 文件可以在这里找到,在这里输入链接描述

任何帮助是极大的赞赏。

4

1 回答 1

0

试试bundle exec rails ...也许其他版本的 Rails 可以使用?

env 变量BUNDLE_GEMFILE也设置为其他 Gemfile?

于 2012-08-31T18:31:55.513 回答