class Build::Files::State::FileTime
Represents a specific file on disk with a specific mtime.
def <=> other
@parameter other [FileTime] The other file time to compare.
Compare file times for ordering.
def <=> other @time <=> other.time end
def initialize(path, time)
@parameter path [Path] The file path.
Initialize a file time record.
def initialize(path, time) @path = path @time = time end
def inspect
Generate a string representation for debugging.
def inspect "<FileTime #{@path.inspect} #{@time.inspect}>" end