Sha256: a662a6dd5373c9ba402646fef957ef16dda0c982ba294b4ae55a914c18c63281
Contents?: true
Size: 1.06 KB
Versions: 6
Compression:
Stored size: 1.06 KB
Contents
module Aitch class Configuration # Set proxy. attr_accessor :proxy # Set request timeout. attr_accessor :timeout # Set default headers. attr_accessor :default_headers # Set follow redirect. attr_accessor :follow_redirect # Set redirection limit. attr_accessor :redirect_limit # Set the user agent. attr_accessor :user_agent # Set the logger. attr_accessor :logger # Set the JSON parser. attr_accessor :json_parser # Set the XML parser. attr_accessor :xml_parser # Set the HTML parser. attr_accessor :html_parser def initialize @timeout = 10 @redirect_limit = 5 @follow_redirect = true @user_agent = "Aitch/#{Aitch::VERSION} (http://rubygems.org/gems/aitch)" @default_headers = {} @json_parser = JSON @xml_parser = XMLParser @html_parser = HTMLParser end def to_h instance_variables.each_with_object({}) do |name, buffer| buffer[name.to_s.tr("@", "").to_sym] = instance_variable_get(name) end end end end
Version data entries
6 entries across 6 versions & 1 rubygems