mirror of
https://github.com/plashchynski/crono.git
synced 2026-04-18 15:10:00 +02:00
10 lines
171 B
Ruby
10 lines
171 B
Ruby
module Periodicity
|
|
module Extensions
|
|
module ActiveJob
|
|
def perform_every(period, *args)
|
|
@period = Period.new(period, *args)
|
|
end
|
|
end
|
|
end
|
|
end
|