class VCR::Middleware::Excon::RequestHandler

def vcr_response_for(response)

def vcr_response_for(response)
  return nil if response.nil?
  VCR::Response.new(
    VCR::ResponseStatus.new(response.fetch(:status), nil),
    response.fetch(:headers),
    response_body_reader.read_body_from(response),
    nil
  )
end