Sha256: f27db317a28d2ac03cacd28efa6a0414160189cb5a4198abb33b6f6fdf299737
Contents?: true
Size: 252 Bytes
Versions: 17
Compression:
Stored size: 252 Bytes
Contents
module Excon class Response attr_accessor :body, :headers, :status def initialize(attributes = {}) @body = attributes[:body] || '' @headers = attributes[:headers] || {} @status = attributes[:status] end end end
Version data entries
17 entries across 17 versions & 1 rubygems