module VCR::LibraryHooks::Typhoeus
@private
@private
Public Class Methods
vcr_response_from(response)
click to toggle source
@private
# File lib/vcr/library_hooks/typhoeus.rb, line 77 def self.vcr_response_from(response) VCR::Response.new \ VCR::ResponseStatus.new(response.code, response.status_message), response.headers, response.body, response.http_version, { "effective_url" => response.effective_url } end