Class: Range

Inherits:
Object
  • Object
show all
Defined in:
lib/time_range/core_ext/range.rb

Overview

Reopens the Range class from the core lib to include methods to converting to TimeRange.

Since:

  • 0.0.1

Direct Known Subclasses

TimeRange

Instance Method Summary collapse

Instance Method Details

#to_time_rangeTimeRange

Converts a Range of Times into a TimeRange.

Returns:

Since:

  • 0.0.1



11
12
13
# File 'lib/time_range/core_ext/range.rb', line 11

def to_time_range
  TimeRange.new(self.begin, self.end, exclude_end?)
end