Just a little update about using whenever with capistrano.
Now you don't need to create a task. You can just add this in your deploy.rb : set :whenever_command, "bundle exec whenever"
set :whenever_environment, defer { stage }
require "whenever/capistrano"
If you look at the github of Whenever, it is explained.
+1 :)
Thanks for this episode
(the link to your Dad's website doesn't work)
Just a little update about using whenever with capistrano.
Now you don't need to create a task. You can just add this in your deploy.rb :
set :whenever_command, "bundle exec whenever"
set :whenever_environment, defer { stage }
require "whenever/capistrano"
If you look at the github of Whenever, it is explained.