# File lib/rack/file.rb, line 77 def each F.open(@path, "rb") { |file| while part = file.read(8192) yield part end } end