class WEBrick::HTTPResponse
This monkey patch allows for applications to perform their own chunking through WEBrick::HTTPResponse
if rack is set to true.
Attributes
Public Instance Methods
Source
# File lib/rack/handler/webrick.rb, line 12 def setup_header app_chunking = rack && @header['transfer-encoding'] == 'chunked' @chunked = app_chunking if app_chunking _rack_setup_header @chunked = false if app_chunking end
Also aliased as: _rack_setup_header