# File lib/backports/1.8.7/hash.rb, line 30 def eql?(other) other.is_a?(Hash) && size == other.size && all? do |key, value| other.fetch(key){return false}.eql?(value) end end