Skip to content

Instantly share code, notes, and snippets.

@asharma-ror
asharma-ror / scheduled_job.rb
Created July 26, 2012 08:30 — forked from kares/scheduled_job.rb
Recurring Job using Delayed::Job
#
# Recurring Job using Delayed::Job
#
# Setup Your job the "plain-old" DJ (perform) way, include this module
# and Your handler will re-schedule itself every time it succeeds.
#
# Sample :
#
# class MyJob
# include Delayed::ScheduledJob