class Build::Files::Path

def self.root(path)

def self.root(path)
	if Path === path
		path.root
	else
		File.dirname(path)
	end
end