From Ruby docs: "the equal? method should never be overridden by subclasses: it is used to determine object identity (that is, a.equal?(b) iff a is the same object as b)."
I think it would make more sense to name such a method #identical?, since that is what it is doing --comparing identity. Over a sufficient period of time the current use of #equal? can be deprecated and possibly made better use of with a different definition. I realize this is not a minor change. This transition would probably be much like the one from #id to #object_id.
The reason I propose this, and why it is an issue for myself, is in of the design of assertion frameworks. For example, #assert_equal is a comparison of #==, not #equal?. We run into this naming conundrum and end up having to use assertion names that don't correspond well to the names of the underlying comparison. So that's the practical reason. But formally speaking, I think #identical? also better b/c it is more precise.
Yusuke, do you know if this proposal is accepted as 2.0.0 feature at the Ruby developer meeting?
Oops! I forget to write the result. Very sorry.
This feature request was rejected at the developers' meeting (7/21).
From a philosophical perspective, matz agreed that "identical?" was
more appropriate name.
But from a practical perspective, matz said we never delete "equal?",
and the name "identical?" has been already used, e.g., File#identical?.
So he rejected this proposal.