From 4bcbf77c8d34bd59c0d6f59f52ca31418d22dec4 Mon Sep 17 00:00:00 2001 From: marcandre Date: Thu, 24 Dec 2009 07:33:24 +0000 Subject: * lib/uri/generic.rb (eql?): Check the class of the compared object. Based on a patch by Peter McLain [ruby-core:27019] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@26168 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/uri/generic.rb | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 024fdbf81..d02d38564 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Dec 24 16:32:30 2009 Marc-Andre Lafortune + + * lib/uri/generic.rb (eql?): Check the class of the compared object. + Based on a patch by Peter McLain [ruby-core:27019] + Thu Dec 24 15:20:03 2009 NARUSE, Yui * regexec.c (match_at): follow enclen's change. diff --git a/lib/uri/generic.rb b/lib/uri/generic.rb index fd01f8979..1ca970de7 100644 --- a/lib/uri/generic.rb +++ b/lib/uri/generic.rb @@ -1066,6 +1066,7 @@ module URI end def eql?(oth) + self.class == oth.class && parser == oth.parser && self.component_ary.eql?(oth.component_ary) end -- cgit