I've got the following configuration. I've installed whenever gem, created shedule.rb:
# Learn more: http://github.com/javan/whenever
every 6.hours do
runner "Part.check_status_update"
end
In part.rb model I have corresponding method.
A. How can I check if whenever
runs? As I understand it should only modify the crontab after whenever
command in the bash, yes?
B. If the method is not triggered - then how can I debug the scheduled jobs? If I put into my method puts
statements - where shall they be stored or outputted?
You need to define a log file, which will then receive any output from your
Part.check_status_update
call (such asputs
calls). You can set a default log file for all of your jobs at the top of yourschedule.rb
file, such as:For example, to log to
Rails.root/log/whenever.log
:You can also define the output per-task:
See the Whenever wiki entry on the subject for a full explanation of details and options, such as logging errors to a separate file.