这个问题在0.9.8中修复了,但似乎已经在1.x分支中重现.
在我的Gemfile中,我有一个使用rspec宝石的测试和开发环境的组.
在我的生产服务器rspec没有安装.
我使用命令包安装 – 没有测试开发在我的
rails应用程式
在生产模式下启动我的rails应用程序提供了例外:
Could not find gem ‘rspec (>= 0)’ in any of the gem sources listed in
your Gemfile.
如果我从开发模式开始,则会尝试在测试组中加载宝石,同样的问题也存在.
看来,bundler完全忽略环境组,并尝试加载Gemfile中的所有宝石:
group :test do gem "rspec" end group :development do gem "rspec-rails" end versions: bundle 1.0.15 rails 3.0.7 ruby 1.9.2-p180