class Build::Files::Glob

def rebase(root)

@returns [Glob] A new glob with the same pattern under the new root.
@parameter root [Path] The new root path.
Rebase the glob to a new root.
def rebase(root)
	self.class.new(root, @pattern)
end