RailsCasts Pro episodes are now free!

Learn more or hide this

Alex's Profile

GitHub User: aklein-dex

Comments by Alex

Avatar

Thanks for this episode
(the link to your Dad's website doesn't work)

Avatar

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.