Sha256: 5c7c743a92fec9b23680cde47d462a96ee949a36380fc4edc016549675079472
Contents?: true
Size: 415 Bytes
Versions: 131
Compression:
Stored size: 415 Bytes
Contents
#-- # Extensions to time to allow comparisons with early and late time classes. require 'rake/early_time' require 'rake/late_time' if RUBY_VERSION < "1.9" class Time # :nodoc: all alias rake_original_time_compare :<=> def <=>(other) if Rake::EarlyTime === other || Rake::LateTime === other - other.<=>(self) else rake_original_time_compare(other) end end end end
Version data entries
131 entries across 118 versions & 44 rubygems