@Ghazascanner
_2019runbot
Ghazascanner File Manager
server :Linux hosjweb-prod2 6.12.0-201.74.2.2.el9uek.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Apr 30 17:11:35 PDT 2026 x86_64
Current Path :
/
usr
/
local
/
lib
/
ruby
/
gems
/
2.4.0
/
gems
/
rake-12.0.0
/
lib
/
rake
/
Path :
Upload File :
New :
File
Dir
//usr/local/lib/ruby/gems/2.4.0/gems/rake-12.0.0/lib/rake/early_time.rb
module Rake # EarlyTime is a fake timestamp that occurs _before_ any other time value. class EarlyTime include Comparable include Singleton ## # The EarlyTime always comes before +other+! def <=>(other) -1 end def to_s # :nodoc: "<EARLY TIME>" end end EARLY = EarlyTime.instance end