I'm testing whenever to figure out how to use it and am running into trouble even after reading the Github documentation.
I simply want to update the attributes of my model like this (config/schedule.rb)
set :output "/log/today.log"
every 10.seconds do
runner "Example.update_all(sample: Time.now)"
end
I am neither seeing a log file nor seeing the model attributes updated.
Is there anything I am not doing correctly?
whenever -w. Also you could trycrontab -l, it should contain your line from schedule.rb – Dfr Nov 5 '12 at 7:53whenever --helphas options to set environment, check it out – Dfr Nov 6 '12 at 6:03