mirror of
https://github.com/plashchynski/crono.git
synced 2026-03-29 05:42:02 +02:00
10 lines
175 B
Ruby
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
|