Class: Schedule
Instance Attribute Summary collapse
-
#hour_begin ⇒ Object
Returns the value of attribute hour_begin.
-
#hour_end ⇒ Object
Returns the value of attribute hour_end.
Instance Method Summary collapse
-
#initialize(logger) ⇒ Schedule
constructor
A new instance of Schedule.
Constructor Details
#initialize(logger) ⇒ Schedule
Returns a new instance of Schedule.
12 13 14 15 16 17 |
# File 'lib/data_services/schedule.rb', line 12 def initialize(logger) @logger = logger @hour_begin = 0; @hour_end = 0; @tms_guide_id = ""; end |
Instance Attribute Details
#hour_begin ⇒ Object
Returns the value of attribute hour_begin.
11 12 13 |
# File 'lib/data_services/schedule.rb', line 11 def hour_begin @hour_begin end |
#hour_end ⇒ Object
Returns the value of attribute hour_end.
11 12 13 |
# File 'lib/data_services/schedule.rb', line 11 def hour_end @hour_end end |