How to stop cron jobs created by "whenever" gem
following will delete the scheduled crontab:
crontab -r
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.