カピストラーノで展開しようとしています。サーバーには RVM がインストールされており、ruby のバージョンは 1.93p385 です。
以下は cap production deploy のログです。
http://pastie.org/private/vs336nrgejpwdkuelufnma#
capistrano がデプロイに失敗するのはなぜですか?
展開ファイルは次のとおりです。
require "rvm/capistrano"
require "bundler/capistrano"
set :rvm_ruby_string, "1.9.3-p385"
set :rvm_type, :user #Should the user by the username?
require "capistrano/ext/multistage"
set :http_server, :apache2
set :rake, "#{rake} --trace"
set :application, "app"
set :user, "myuser" # The server's user for deploys
set :ruby_version, "1.9.3-p385"
set :scm, "git"
set :repository, "my git repo here"
set :deploy_to, "/var/www/#{application}"
set :deploy_via, :remote_cache
set :use_sudo, true
default_run_options[:pty] = true # Must be set for the password prompt from git to work
ssh_options[:forward_agent] = true
set :nodejs, true
# if you want to clean up old releases on each deploy uncomment this:
after "deploy:restart", "deploy:cleanup"
サーバーはUbuntu 10.04 LTSです