schedule.cr icon indicating copy to clipboard operation
schedule.cr copied to clipboard

:clock3: Run periodic tasks in Crystal

Results 4 schedule.cr issues
Sort by recently updated
recently updated
newest added

The version specified in the `shard.yml` will fallback to `crystal (~> 0.35, >= 0.35.1)` by default. https://github.com/hugoabonizio/schedule.cr/blob/64d69b6e7548566259a562d700736d76c165446c/shard.yml#L7 For this to work with Crystal 1.0, it'll need to be changed to...

I'm not sure if this is intended behaviour or not, but Schedule.every doesn't compensate for the time it takes to execute the block. For instance, if you have a block...

It would be really cool to be able to define the timezone for the schedule to run.

Thanks for this useful shard. I have a question: ```crystal Schedule.every(1.minutes) do count = 1 foo = get_true_or_false if foo Schedule.every(:day) do bar end end Schedule.stop if foo end ```...