Files
crono/lib/periodicity/extensions/active_job.rb
Dzmitry Plashchynski 0cccc4b606 Add option 'at'
2015-03-01 16:37:07 +02:00

10 lines
175 B
Ruby

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