Method: URI::Generic#eql?

Defined in:
lib/extensions/uri/uri/generic.rb

#eql?(oth) ⇒ Boolean

Returns:

  • (Boolean)


1069
1070
1071
1072
1073
# File 'lib/extensions/uri/uri/generic.rb', line 1069

def eql?(oth)
  self.class == oth.class &&
  parser == oth.parser &&
  self.component_ary.eql?(oth.component_ary)
end