mirror of
https://github.com/plashchynski/crono.git
synced 2026-04-23 17:28:45 +02:00
12 lines
147 B
Ruby
12 lines
147 B
Ruby
module Periodicity
|
|
class Period
|
|
def initialize(period)
|
|
@period = period
|
|
end
|
|
|
|
def next
|
|
@period.from_now
|
|
end
|
|
end
|
|
end
|