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 に答える