Rails 3和vlad the deployer

时间:2010-11-03 21:19:55

标签: ruby-on-rails-3 deployment vlad-deployer

我无法找到任何地方,如果它与Rails 3兼容,但我尝试部署我们正在开发的新rails 3应用程序,并始终返回相同的错误:

Error loading vlad: no such file to load -- vladrake aborted!
Don't know how to build task 'vlad:init_setup:production'

我正在使用ruby 1.8.7(2010-08-16 patchlevel 302)[i686-darwin9.8.0]

使用vlad 2.0.0和vlad 2.1.0进行rails 3.0.1和i testit

在Rakefile中我有这个:

# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.

require File.expand_path('../config/application', __FILE__)
require 'rake'

begin
 require 'rubygems'
 require 'vlad'
 Vlad.load :scm => :git, :app => :passenger
rescue LoadError => e
 $stderr << "Error loading vlad: #{e}"
end

如果有人知道在哪里查看它以便修复或者告诉我,如果vlad它的轨道3准备好了吗?

提前感谢您的时间

空化

1 个答案:

答案 0 :(得分:0)

也许你已经想到了这一点,但你的Gemfile中是否包含了vlad?您可能想要添加:

group :development do
  gem 'vlad-git'
  gem 'vlad'
end

然后运行bundle。