Class: Sinatra::Helpers::StaticFile

Inherits:
File
  • Object
show all
Defined in:
lib/sinatra/base.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#eachObject



162
163
164
165
166
167
# File 'lib/sinatra/base.rb', line 162

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