我在互联网上搜索了这一点,文件并不是真正在谈论具体的每月工作.所以我希望有人能告诉我如何做到这一点.
我已经安装了gem,所有我需要知道的是正确的语法:
every :month,:on => '20th',:at => '02:00' do runner "Mailer.send_friend_sheet" end
希望有人能指出我正确的方向..
谢谢!
解决方法
每当我不知道的情况下不支持:选项,但你应该能够做到
every '0 2 20 * *' do runner "Mailer.send_friend_sheet" end
‘0 2 20 * *’只是相关的cron语法 – 见http://www.manpagez.com/man/5/crontab/