0
我有whenever
寶石安裝正確。我如何運行capistrano
從我的whenever
schedule.rb
?如何在每次任務中運行一個capistrano任務?
我schedule.rb
every 1.minute, roles: [:app] do
# how to run here a capistrano task
# invoke 'my_app:test'
end
我Capistrano的任務:
namespace :my_app do
desc 'test'
task :test do
on roles(:web) do
puts "the task runs"
end
end
end
或者我應該動議的任務變成了rake
任務。我應該在whenever
和capistrano
範圍內運行該耙子任務嗎?