Bundler中的宝石组

时间:2014-04-03 04:52:30

标签: ruby-on-rails

Bundler中有以下代码:

group :production do
  gem 'pg'
  gem 'mysql2'
end

正如您所看到的,我只在生产中使用mysql2。现在我在我的本地计算机上开发我的应用程序,但是我收到以下错误:

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

但我不想这样做,我只需要在生产VPS上生产宝石。我该如何解决?谢谢。

1 个答案:

答案 0 :(得分:3)

您只需指定option即可。另请参阅this(它会保存选项,因此您只需指定一次)

bundle install --without production