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

[Validate]