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 1376
1376:     def <=>(other)
1377:       -1
1378:     end

[Source]

      # File lib/rake.rb, line 1380
1380:     def to_s
1381:       "<EARLY TIME>"
1382:     end

[Validate]