aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/extensions/class.rb
blob: fed2ef79c7054784127d89a770f6230e428989a7 (plain) (blame)
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