class VCR::Middleware::Excon::StreamingResponseBodyReader

def read_body_from(response_params)

Other tags:
    Private: -
def read_body_from(response_params)
  if @chunks.none?
    # Not sure why, but sometimes the body comes through the params
    # instead of via the streaming block even when the block was
    # configured.
    response_params[:body]
  else
    @chunks.join('')
  end
end