Sha256: ea07ebed205e31ccde5923c7dad5f277134c7e419655075c25e45d2b6f9a2c00
Contents?: true
Size: 485 Bytes
Versions: 31
Compression:
Stored size: 485 Bytes
Contents
# encoding: utf-8 module Mongoid module Matchers # Performs non-equivalency checks. class Ne < Default # Return true if the attribute and first value are not equal. # # @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) @attribute != value.values.first end end end end
Version data entries
31 entries across 31 versions & 2 rubygems