Sha256: 14b3f453ab1c223bf6c8e782ffce0e00f4e8867c86bd2a022c37aa055e38651c
Contents?: true
Size: 506 Bytes
Versions: 188
Compression:
Stored size: 506 Bytes
Contents
# encoding: utf-8 module Mongoid #:nodoc: module Matchers #:nodoc: # Performs less than or equal to matching. class Lte < Default # Return true if the attribute is less than or equal to 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
188 entries across 96 versions & 4 rubygems