Здесь - это руководство по передаче параметров в задачу capistrano 3.
namespace :task do
desc 'Execute the specific cmd task'
task :invoke, :command do |task, args|
on roles(:app) do
execute :cmd, args[:command]
end
end
end
Может выполняться с помощью:
$ cap staging "task:invoke[arg]"
Как я могу использовать это в моем deploy.rb? Не работает.
before :started, "task:invoke[arg]"