class Gibbon::Response

Attributes

body[RW]
headers[RW]

Public Class Methods

new(body: {}, headers: {}) click to toggle source
# File lib/gibbon/response.rb, line 5
def initialize(body: {}, headers: {})
  @body = body
  @headers = headers
end