class VCR::ResponseStatus

Public Class Methods

from_net_http_response(response) click to toggle source
# File lib/vcr/structs/response_status.rb, line 5
def self.from_net_http_response(response)
  new(response.code.to_i, response.message)
end