我的组织有许多用于自动化测试的内部 gem,但不是生产部署所必需的。我正在尝试使用 Bundler,因此在我的 Gemfile 中,我将这些宝石包装在:
group :test, :development do
gem 'dashboard_summary'
end
但是,当我运行时:
$ bundle install --without staging development test
我仍然得到
Could not find gem 'dashboard_summary (>= 0) ruby' in the gems available on this machine.
我试图理解为什么当我告诉它时 Bundler 没有忽略那个宝石。