How to stop cron jobs created by "whenever" gem How to stop cron jobs created by "whenever" gem ruby ruby

How to stop cron jobs created by "whenever" gem


To delete the auto-generated cronjobs from your crontab, run whenever against your defintion file with the -c flag:

$ whenever -c theCronJob

Alternatively, open your crontab...

$ crontab -e

... and then manually delete the undesired entries.


following will delete the scheduled crontab:

crontab -r