如果在测试环境中
gem "rspec", :group => :test
当多个gem的时候
group :test do
gem "webrat"
get "rspec"
end
如果我们现在运行
bundle install
它将会为所有环境装上其所指定的gem。
如果安装除了某一环境之外指定的gem之外的所有gem,可以使用--without
选项。例如,除了test环境特定的gem都安装我们可以这么做:
bundle install --without=test
2024-03-17 08:39:46
如果在测试环境中
gem "rspec", :group => :test
当多个gem的时候
group :test do
gem "webrat"
get "rspec"
end
如果我们现在运行
bundle install
它将会为所有环境装上其所指定的gem。
如果安装除了某一环境之外指定的gem之外的所有gem,可以使用--without
选项。例如,除了test环境特定的gem都安装我们可以这么做:
bundle install --without=test