0
whenever
宝石セットが正しくあります。どのようにすればwhenever
schedule.rb
からcapistrano
を実行できますか?いつでもタスク内でcapistranoタスクを実行するには?
私schedule.rb
every 1.minute, roles: [:app] do
# how to run here a capistrano task
# invoke 'my_app:test'
end
マイカピストラーノタスク:
namespace :my_app do
desc 'test'
task :test do
on roles(:web) do
puts "the task runs"
end
end
end
または私はrake
タスクにそのタスクを移動する必要があります。そして、そのレーキタスクをwhenever
とcapistrano
の中で実行する必要がありますか?