@return [IO]
@return [URI::HTTP, URI::HTTPS, nil]
@return [Headers] The hash of request headers.
@return [String] The HTTP request method, e.g. `GET`, `PUT`, etc.
@option options [URI::HTTP, URI::HTTPS] :endpoint (nil) @option options [String] :http_method ('GET') @option options [Headers] :headers (Headers.new) @option options [Body] :body (StringIO.new)
# File lib/seahorse/client/http/request.rb, line 13 def initialize(options = {}) self.endpoint = options[:endpoint] if options[:endpoint] self.http_method = options[:http_method] || 'GET' self.headers = Headers.new(options[:headers] || {}) self.body = options[:body] end
@param [#read, size, rewind] io
# File lib/seahorse/client/http/request.rb, line 53 def body=(io) @body =case io when nil then StringIO.new('') when String then StringIO.new(io) else io end end
@return [String]
# File lib/seahorse/client/http/request.rb, line 45 def body_contents body.rewind contents = body.read body.rewind contents end
@param [String, URI::HTTP, URI::HTTPS, nil] endpoint
# File lib/seahorse/client/http/request.rb, line 33 def endpoint=(endpoint) endpoint = URI.parse(endpoint) if endpoint.is_a?(String) if endpoint.nil? or URI::HTTP === endpoint or URI::HTTPS === endpoint @endpoint = endpoint else msg = "invalid endpoint, expected URI::HTTP, URI::HTTPS, or nil, " msg << "got #{endpoint.inspect}" raise ArgumentError, msg end end