class Build::Files::List

def rebase(root)

@returns [Paths] A new paths list with rebased paths.
@parameter root [Path] The new root path.
Rebase all paths in the list to a new root.
def rebase(root)
	Paths.new(self.collect{|path| path.rebase(root)}, [root])
end