gitlab-org--gitlab-foss/lib/github/response.rb

23 lines
465 B
Ruby
Raw Normal View History

2017-04-12 01:33:54 +00:00
module Github
class Response
attr_reader :raw, :headers, :body, :status
def initialize(response)
@raw = response
@headers = response.headers
@body = response.body
@status = response.status
end
def rels
links = headers['Link'].to_s.split(', ').map do |link|
href, name = link.match(/<(.*?)>; rel="(\w+)"/).captures
[name.to_sym, href]
end
Hash[*links.flatten]
end
end
end