class Build::Files::Path
def self.expand(path, root = Dir.getwd)
def self.expand(path, root = Dir.getwd) if path.start_with?(File::SEPARATOR) self.new(path) else self.join(root, path) end end
def self.expand(path, root = Dir.getwd) if path.start_with?(File::SEPARATOR) self.new(path) else self.join(root, path) end end