Files
crono/lib/periodicity/extensions/active_job.rb
Dzmitry Plashchynski b3a26ba7d3 Add basic Period class
2015-03-01 16:06:32 +02:00

10 lines
156 B
Ruby

module Periodicity
module Extensions
class ActiveJob
def self.perform_every(period, *args)
@period = period
end
end
end
end