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上生产宝石。我该如何解决?谢谢。