3

我在我的 deploy.rb 文件中为 capistrano 使用以下配置:

require 'bundler/capistrano'
require 'rvm/capistrano'

set :bundle_cmd, "/home/deployment/.rvm/gems/ruby-1.9.3-p194@global/bin/bundle"

set :default_environment, {
    'PATH' => "/home/deployment/.rvm/gems/ruby-1.9.3-p194/bin:/home/deployment/.rvm/bin:$PATH",
    'RUBY_VERSION' => 'ruby 1.9.3',
    'GEM_HOME' => "/home/deployment/.rvm/gems/ruby-1.9.3-p194",
    'GEM_PATH' => "/home/deployment/.rvm/gems/ruby-1.9.3-p194",
    'BUNDLE_PATH' => "/home/deployment/.rvm/gems/ruby-1.9.3-p194"
}

但是当我跑步时,cap deploy:update我得到了这个:

* executing "cd /var/www/currienet/marketplace/releases/20120928140140 && /home/deployment/.rvm/gems/ruby-1.9.3-p194@global/bin/bundle install --gemfile /var/www/currienet/marketplace/releases/20120928140140/Gemfile --path /var/www/currienet/marketplace/shared/bundle --deployment --quiet --without development test"

也就是说,它没有将捆绑路径( --path 参数)设置为我想要的。

我尝试了许多教程,包括rvm capistrano 教程,但似乎没有任何效果。它继续使用 capistrano 默认值。

Capistrano 还使用以下 .bundler/config 创建了一个应用程序

BUNDLE_FROZEN: '1'
BUNDLE_PATH: /var/www/currienet/marketplace/shared/bundle
BUNDLE_DISABLE_SHARED_GEMS: '1'
BUNDLE_WITHOUT: development:test

开发机器:Windows 7, bundler (1.0.22), capistrano (2.12.0), rvm-capistrano (1.2.7), rails (3.2.8), (no rvm)

生产:Debian、bundler (1.2.1) (no capistrano)、(no rvm-capistrano)、rails (3.2.8)、rvm 1.16.5

4

1 回答 1

8

感谢Joseph Holsten 的博客,我能够确定我的问题是在我需要“bundler/capistrano”之前我没有在 deploy.rb 中定义捆绑器变量。我还需要定义 bundle_dir 变量,以创建如下所示的代码:

set :bundle_cmd, "/home/deployment/.rvm/gems/ruby-1.9.3-p194@global/bin/bundle"
set :bundle_dir, "/home/deployment/.rvm/gems/ruby-1.9.3-p194"

require 'bundler/capistrano'
于 2012-09-29T02:30:44.123 回答