如何在月初触发发条任务?

How to trigger Clockwork task at the beginning of the month?

我想 运行 每个月初的任务。例如:

2017-01-01 00:00:00 // January has just started
2017-02-01 00:00:00 // February has just started ...
...

如何使用发条来做到这一点?

使用:

every(1.day, 'myjob', at: '00:00', :if => lambda { |t| t.day == 1 }) do ... end