Method: HTTPX::Options#==

Defined in:
lib/httpx/options.rb

#==(other) ⇒ Object



113
114
115
116
117
118
119
120
121
122
123
124
125
126
# File 'lib/httpx/options.rb', line 113

def ==(other)
  ivars = instance_variables | other.instance_variables
  ivars.all? do |ivar|
    case ivar
    when :@headers
      headers = instance_variable_get(ivar)
      headers.same_headers?(other.instance_variable_get(ivar))
    when *REQUEST_IVARS
      true
    else
      instance_variable_get(ivar) == other.instance_variable_get(ivar)
    end
  end
end