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

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

Methods

<=>, rake_original_time_compare,
Public Instance methods
<=>(other)
This method is also aliased as <=>
      # 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
rake_original_time_compare(other)

Alias for #<=>