1 2 3 4 5 6 7 8 9
class Class def hash_on(delegatee) define_method :eql? do |other| self == other end delegate :hash, :to => delegatee end end