each()
Stream the file’s contents if Rack::Sendfile isn’t present.
# File actionpack/lib/action_dispatch/http/response.rb, line 364 def each File.open(to_path, "rb") do |file| while chunk = file.read(16384) yield chunk end end end