首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Rails随时随地+ capistrano v3集成

Rails随时随地+ capistrano v3集成
EN

Stack Overflow用户
提问于 2013-12-23 13:51:56
回答 1查看 3.4K关注 0票数 3

在我的im使用时间+ capistrano的项目中,下面是我的Capfile

代码语言:javascript
复制
require 'capistrano/setup'
require 'capistrano/deploy'
require 'capistrano/rvm'
require 'capistrano/bundler'
require 'capistrano/rails/assets'
require 'capistrano/rails/migrations'
require 'whenever/capistrano'

Dir.glob('lib/capistrano/tasks/*.cap').each { |r| import r }

这是我的deployr.rb文件:

代码语言:javascript
复制
set :application, 'privet-mccafe'
set :repo_url, 'git@codebasehq.com:digitalizm/mccafe-vk-privet-app/application.git'
set :scm, :git
set :branch, 'master'
set :keep_releases, 5
set :ssh_options, { forward_agent: true }

set :bundle_roles, :all

set :linked_files, %w{config/database.yml config/initializers/secret_token.rb}
set :linked_dirs, %w{bin log tmp/pids tmp/cache tmp/sockets vendor/bundle public/system}

namespace :deploy do
  desc 'Restart application'
  task :restart do
    on roles(:app), in: :sequence, wait: 5 do
      execute :mkdir, "-p #{release_path.join('tmp')}"
      execute :touch, release_path.join('tmp/restart.txt')
    end
  end
end

这是我的schedule.rb文件:

代码语言:javascript
复制
every 4.hours do
  rake "notifications:deliver"
end

无论如何,通过执行cap staging deploy,我得到了错误:

代码语言:javascript
复制
cap aborted!
undefined method `instance' for Capistrano::Configuration:Class
/Users/xamenrax/.rvm/gems/ruby-2.0.0-p353/gems/whenever-0.8.4/lib/whenever/capistrano/recipes.rb:3:in `<top (required)>'
/Users/xamenrax/.rvm/gems/ruby-2.0.0-p353/gems/whenever-0.8.4/lib/whenever/capistrano.rb:1:in `require'
/Users/xamenrax/.rvm/gems/ruby-2.0.0-p353/gems/whenever-0.8.4/lib/whenever/capistrano.rb:1:in `<top (required)>'
/Users/xamenrax/code/application/Capfile:7:in `require'
/Users/xamenrax/code/application/Capfile:7:in `<top (required)>'
/Users/xamenrax/.rvm/gems/ruby-2.0.0-p353/gems/capistrano-3.0.1/lib/capistrano/application.rb:22:in `load_rakefile'
/Users/xamenrax/.rvm/gems/ruby-2.0.0-p353/gems/capistrano-3.0.1/lib/capistrano/application.rb:12:in `run'
/Users/xamenrax/.rvm/gems/ruby-2.0.0-p353/gems/capistrano-3.0.1/bin/cap:3:in `<top (required)>'
/Users/xamenrax/.rvm/gems/ruby-2.0.0-p353/bin/cap:23:in `load'
/Users/xamenrax/.rvm/gems/ruby-2.0.0-p353/bin/cap:23:in `<main>'
/Users/xamenrax/.rvm/gems/ruby-2.0.0-p353/bin/ruby_executable_hooks:15:in `eval'
/Users/xamenrax/.rvm/gems/ruby-2.0.0-p353/bin/ruby_executable_hooks:15:in `<main>'
(See full trace by running task with --trace)
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2013-12-26 10:45:15

每当~> 0.9.0解决这个问题

无论何时< 0.9与capistrano v3不兼容

票数 11
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/20744958

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档