lib/backports/2.3.0/hash/gt.rb



unless Hash.method_defined? :>
  require 'backports/tools/arguments'
  require 'backports/2.3.0/hash/lt'
  class Hash
    def >(hash)
      hash = Backports.coerce_to_hash(hash)
      hash < self
    end
  end
end