class Build::Files::Glob
def each(&block)
def each(&block) return to_enum(:each) unless block_given? Dir.glob(full_pattern) do |path| yield Path.new(path, @root) end end
def each(&block) return to_enum(:each) unless block_given? Dir.glob(full_pattern) do |path| yield Path.new(path, @root) end end