class Build::Files::Glob

def each(&block)

Enumerate all paths matching the pattern.
def each(&block)
	return to_enum(:each) unless block_given?
	
	Dir.glob(full_pattern) do |path|
		yield Path.new(path, @root)
	end
end