Class Time
In: lib/rake.rb
Parent: Object

########################################################################### Extensions to time to allow comparisons with an early time class.

Methods

<=>  

External Aliases

<=> -> rake_original_time_compare

Public Instance methods

[Source]

      # File lib/rake.rb, line 1623
1623:   def <=>(other)
1624:     if Rake::EarlyTime === other
1625:       - other.<=>(self)
1626:     else
1627:       rake_original_time_compare(other)
1628:     end
1629:   end

[Validate]