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 1606
1606:     def <=>(other)
1607:       -1
1608:     end

[Source]

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

[Validate]