Heray-Was-Here
Server : Apache
System : Linux vps43555.mylogin.co 3.10.0-1160.53.1.vz7.185.3 #1 SMP Tue Jan 25 12:49:12 MSK 2022 x86_64
User : redsea ( 60651)
PHP Version : 7.4.32
Disable Function : NONE
Directory :  /usr/local/rvm/src/rvm/help/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/local/rvm/src/rvm/help/cron.md
Usage:

1. Add/Remove ruby variables to cron:

    rvm cron {setup|remove}

2. Manage rvm on single command level

    rvm cron command <"schedule"> <command> <params...>


Example 1 set one ruby for all cron jobs:

    cd /project/dir  # go to project dir, or `rvm use ...`
    rvm cron setup   # initialize cron with ruby settings
    crontab -e       # add tasks to cron

After project ruby changes:

    rvm cron setup   # update cron with new ruby settings



Example 2 add single job using current dir for rvm:

    cd /project/dir  # go to project dir, or `rvm use ...`
    rvm cron command "@daily" rake calculate:stats

Refer to `man 5 crontab` for definitions of time/date, examples:

    "*/5 * * * *" - Every 5 minutes
    "@hourly"     - Once an hour
    "* */4 * * *" - Every 4 hours
    "0 6 * * *"   - Everyday at 6am
    "0 7 * * 5"   - Every Friday at 7am

NOTE! Do not forget to set notification email in `crontab -e`:

    MAILTO=someone@project.com

Hry