views:

70

answers:

2

I've found the whenever gem quite useful for working with cron from Ruby. Does anyone know of a similar project for at/batch?

+1  A: 

Does it have to be run by 'at'? Otherwise you could check out delayed_job.

Jonas Elfström
NO, Hold on delayed Job still uses database poling. I don't need to check the database every 5 seconds for something that happens 3-4 time a **week**.
John F. Miller
Sure but you didn't really tell us it happens that seldom.
Jonas Elfström
A: 

Try rat, at http://github.com/koops/rat

koops