Skip to content

Instantly share code, notes, and snippets.

@mgartner
mgartner / scheduled_job.rb
Last active December 14, 2015 14:38 — forked from kares/scheduled_job.rb
Recurring jobs with delayed_job_mongoid
#
# 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