class Sinatra::Helpers::StaticFile

:nodoc:
generated iteratively in 8K chunks.
Rack response body used to deliver static files. The file contents are

def each

def each
  rewind
  while buf = read(8192)
    yield buf
  end
end