class Sinatra::Helpers::StaticFile

:nodoc:

def each

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