Sha256: c6474d96ab258c2c8697ab333bced887a76973035dc6d32c34375e85bbaa6b33

Contents?: true

Size: 564 Bytes

Versions: 1

Compression:

Stored size: 564 Bytes

Contents

# frozen_string_literal: true
require 'net/http'
require 'uri'
require 'json'

module Trav3
  module GET
    def self.call(url, headers = {})
      uri = URI(url)
      req = Net::HTTP::Get.new(uri.request_uri)
      headers.each_pair { |header, value|
        req[header] = value
      }
      http = Net::HTTP.new(uri.host, uri.port)
      http.use_ssl = (uri.scheme == "https")
      response = http.request(req)

      if Net::HTTPOK == response.code_type
        Success.new(response)
      else
        RequestError.new(response)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
trav3-0.1.1 lib/trav3/get.rb