Class: DoubleEntry::Reporting::HourRange
- Defined in:
- lib/double_entry/reporting/hour_range.rb
Instance Attribute Summary collapse
-
#day ⇒ Object
readonly
Returns the value of attribute day.
-
#hour ⇒ Object
readonly
Returns the value of attribute hour.
-
#week ⇒ Object
readonly
Returns the value of attribute week.
-
#year ⇒ Object
readonly
Returns the value of attribute year.
Attributes inherited from TimeRange
#finish, #month, #range_type, #start
Class Method Summary collapse
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(options) ⇒ HourRange
constructor
A new instance of HourRange.
- #next ⇒ Object
- #previous ⇒ Object
- #to_s ⇒ Object
Methods inherited from TimeRange
#human_readable_name, #include?, #key, make, range_from_time_for_period
Constructor Details
#initialize(options) ⇒ HourRange
Returns a new instance of HourRange.
7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/double_entry/reporting/hour_range.rb', line 7 def initialize() super @week = [:week] @day = [:day] @hour = [:hour] day_range = DayRange.new() @start = day_range.start + [:hour].hours @finish = @start.end_of_hour end |
Instance Attribute Details
#day ⇒ Object (readonly)
Returns the value of attribute day.
5 6 7 |
# File 'lib/double_entry/reporting/hour_range.rb', line 5 def day @day end |
#hour ⇒ Object (readonly)
Returns the value of attribute hour.
5 6 7 |
# File 'lib/double_entry/reporting/hour_range.rb', line 5 def hour @hour end |
#week ⇒ Object (readonly)
Returns the value of attribute week.
5 6 7 |
# File 'lib/double_entry/reporting/hour_range.rb', line 5 def week @week end |
#year ⇒ Object (readonly)
Returns the value of attribute year.
5 6 7 |
# File 'lib/double_entry/reporting/hour_range.rb', line 5 def year @year end |
Class Method Details
Instance Method Details
#==(other) ⇒ Object
33 34 35 36 37 38 |
# File 'lib/double_entry/reporting/hour_range.rb', line 33 def ==(other) week == other.week && year == other.year && day == other.day && hour == other.hour end |
#next ⇒ Object
29 30 31 |
# File 'lib/double_entry/reporting/hour_range.rb', line 29 def next HourRange.from_time(@start + 1.hour) end |
#previous ⇒ Object
25 26 27 |
# File 'lib/double_entry/reporting/hour_range.rb', line 25 def previous HourRange.from_time(@start - 1.hour) end |
#to_s ⇒ Object
40 41 42 |
# File 'lib/double_entry/reporting/hour_range.rb', line 40 def to_s "#{start.hour}:00:00 - #{start.hour}:59:59" end |