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 1393
1393:   def <=>(other)
1394:     if Rake::EarlyTime === other
1395:       - other.<=>(self)
1396:     else
1397:       rake_original_time_compare(other)
1398:     end
1399:   end

[Validate]