Sha256: 156f4ed2853661c4d5f8f042575146a879a81e89437425f3c2a91ca93bab5285
Contents?: true
Size: 463 Bytes
Versions: 35
Compression:
Stored size: 463 Bytes
Contents
# encoding: utf-8 module Mongoid module Matchable # Performs less than matching. class Lt < Default # Return true if the attribute is less than the value. # # @example Do the values match? # matcher.matches?({ :key => 10 }) # # @param [ Hash ] value The values to check. # # @return [ true, false ] If a value exists. def matches?(value) determine(value, :<) end end end end
Version data entries
35 entries across 32 versions & 6 rubygems