class Build::Files::FileTime

Represents a specific file on disk with a specific mtime.

def <=> other

def <=> other
	@time <=> other.time
end

def initialize(path, time)

def initialize(path, time)
	@path = path
	@time = time
end

def inspect

def inspect
	"<FileTime #{@path.inspect} #{@time.inspect}>"
end