class Build::Files::Directory

def each

def each
	return to_enum(:each) unless block_given?
	
	Dir.glob(@root + "**/*") do |path|
		yield Path.new(path, @root)
	end
end