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

12 lines
147 B
Ruby

module Periodicity
class Period
def initialize(period)
@period = period
end
def next
@period.from_now
end
end
end