class Sinatra::Helpers::StaticFile

def each

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