I have the following task defined in my schedule.rb that should be run every 1st of the month a 2am.
every "0 2 1 * *" do
rake ":task_1"
end
What I really want to do though is run that task every fourth sunday instead. All I found in the whenever
gem-documentation was something like every :sunday, :at => '2am'
. How would this look if I wanted to run the task every fourth sunday at 2am?