Class Rake::EarlyTime
In: lib/rake.rb
Parent: Object

EarlyTime is a fake timestamp that occurs before any other time value.

Methods

<=>   to_s  

Included Modules

Comparable Singleton

Public Instance methods

[Source]

      # File lib/rake.rb, line 1608
1608:     def <=>(other)
1609:       -1
1610:     end

[Source]

      # File lib/rake.rb, line 1612
1612:     def to_s
1613:       "<EARLY TIME>"
1614:     end

[Validate]