class Build::Files::Path

def self.expand(path, root = Dir.getwd)

Expand a path within a given root.
def self.expand(path, root = Dir.getwd)
	if path.start_with?(File::SEPARATOR)
		self.new(path)
	else
		self.join(root, path)
	end
end