class EventMachine::Protocols::HttpClient2::Request

def receive_chunked_text text


We get a single chunk. Append it to the incoming content and switch back to line mode.
--
def receive_chunked_text text
  # p "RECEIVED #{text.length} CHUNK"
  (@content ||= []) << text
end