Add Schedule

This commit is contained in:
Dzmitry Plashchynski
2015-03-03 15:11:19 +02:00
parent 2c78115ce7
commit 518160d5d9
9 changed files with 38 additions and 7 deletions

10
lib/crono/schedule.rb Normal file
View File

@@ -0,0 +1,10 @@
module Crono
class Schedule
def initialize
@schedule = []
end
def add(peformer, period)
end
end
end