module VCR::LibraryHooks::Typhoeus
@private
@private
Public Class Methods
Source
# File lib/vcr/library_hooks/typhoeus.rb, line 66 def self.vcr_response_from(response) VCR::Response.new \ VCR::ResponseStatus.new(response.code, response.status_message), response.headers, response.body, response.http_version end
@private