6

每次我使用 Capistrano 部署应用程序时,它都会抱怨缺少 gem。例如:

 ** [out :: mysite.com] Could not find WhateverGem-1.0.0 in any of the sources
 ** [out :: mysite.com] Run `bundle install` to install missing gems.

我通过手动上传我的 Gemfile、SSH 到服务器并运行bundle install. 但是,这不应该发生。

这是我的deploy.rbCapfile的副本。

有人能指出我正确的方向吗?

4

1 回答 1

19

您可能只需将其添加到您的 config/deploy.rb

require "bundler/capistrano"
于 2012-06-03T02:34:17.620 回答