这是我的deploy.rb
set :application, "admin"
set :repository, "here is my bitbucket repository"
set :scm, :git
# Or: `accurev`, `bzr`, `cvs`, `darcs`, `git`, `mercurial`, `perforce`, `subversion` or `none`
set :branch, "master"
set :rails_env, "production"
set :deploy_via, :copy
set :ssh_options, { forward_agent: true, port: 2020 }
set :keep_releases, 5
server "admin.mydomain.com", :app, :web, :db, primary: true
set :deploy_to "/var/www/vhosts/admin"
我已经提到了两个用于配置capistrano的链接
当我运行cap deploy:setup
我收到错误
cap aborted!
cannot load such file -- deploy
/home/seting/Documents/site/admin/Capfile:1:in `load'
/home/seting/Documents/site/admin/Capfile:1:in `<top (required)>'
/home/seting/.rvm/gems/ruby-2.0.0-p247/gems/capistrano-3.0.0/lib/capistrano/application.rb:22:in `load_rakefile'
/home/seting/.rvm/gems/ruby-2.0.0-p247/gems/capistrano-3.0.0/lib/capistrano/application.rb:12:in `run'
/home/seting/.rvm/gems/ruby-2.0.0-p247/gems/capistrano-3.0.0/bin/cap:3:in `<top (required)>'
/home/seting/.rvm/gems/ruby-2.0.0-p247/bin/cap:23:in `load'
/home/seting/.rvm/gems/ruby-2.0.0-p247/bin/cap:23:in `<main>'
/home/seting/.rvm/gems/ruby-2.0.0-p247/bin/ruby_noexec_wrapper:14:in `eval'
/home/seting/.rvm/gems/ruby-2.0.0-p247/bin/ruby_noexec_wrapper:14:in `<main>'
(See full trace by running task with --trace)
修改1
这是我的上限文件
load 'deploy'
# Uncomment if you are using Rails' asset pipeline
load 'deploy/assets'
Dir['vendor/gems/*/recipes/*.rb','vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) }
load 'config/deploy' # remove this line to skip loading any of the default tasks
答案 0 :(得分:5)
如果您使用RVM&gt; = 1.11.3,则应将rvm-capistrano
gem添加到您的Gemfile中,然后添加bundle install
。
答案 1 :(得分:0)
应该是
cap deploy:setup
不是
cap:deploy:setup
答案 2 :(得分:0)
在capfile的第1行,而不是
load 'deploy'
使用
load 'deploy' if respond_to?(:namespace)