This gem makes creating cron jobs very easy!
whenever -w
to write out the crontabcrontab -l
to see the list of cron jobs you haveset :output, {:standard => 'log/cron.log'} #logs to your log file to view
every 1.day, :at => '12:05 am' do
runner "Notifier.run_send_reminder_emails(host: 'example.com')"
end