class SC::EarlyTime

EarlyTime is a fake timestamp that occurs before any other time value. Borrowed from Rake 0.8.3

Public Instance Methods

<=>(other) click to toggle source
# File lib/sproutcore/buildfile/early_time.rb, line 19
def <=>(other)
  -1
end
to_s() click to toggle source
# File lib/sproutcore/buildfile/early_time.rb, line 23
def to_s
  "<EARLY TIME>"
end