2

我的问题类似于如何从另一个调用 Capistrano 任务?

我想要的额外的事情是能够在从 foo 调用它时将参数传递给 bar:

task :foo do
  # this calls bar, I would like to pass params (i.e n = 10)
  # as if I were calling cap bar -s n=10
  # bar does not take arguments
  bar
end

task :bar do
  if exists?(:n)
    puts "n is: #{n}"
  end
end
4

2 回答 2

3

在 capistrano 3.x 中

desc "I accept a parameter"
task :foo, :foo_param do |t, args|
  foo_param = args[:foo_param]
  puts "I am #{foo_param}"
end

desc "I call the foo task"
task :bar do
  invoke("foo", "batman")
  # prints "I am batman"
end
于 2015-07-31T14:16:36.503 回答
0

Capistrano 任务不能真正参数化。您可以定义一个辅助方法,如下所示:

task :foo do
  bar(10)
end

def bar(n=variables[:n])
  puts "N is #{n}"  
end

如果你对让 :bar 也是一项任务很执着,试试这个技巧:

task :foo do
  bar(10)
end

task :bar { bar }

def bar(n=variables[:n])
  puts "N is #{n}"  
end

请注意,任务必须在方法之前声明。

于 2013-07-30T22:48:53.230 回答