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

Version Path
mongoid-3.0.11 lib/mongoid/matchers/ne.rb
mongoid-3.0.10 lib/mongoid/matchers/ne.rb
mongoid-3.0.9 lib/mongoid/matchers/ne.rb
mongoid-3.0.6 lib/mongoid/matchers/ne.rb
mongoid-3.0.5 lib/mongoid/matchers/ne.rb
mongoid-3.0.4 lib/mongoid/matchers/ne.rb
mongoid-3.0.3 lib/mongoid/matchers/ne.rb
mongoid-3.0.2 lib/mongoid/matchers/ne.rb
mongoid-3.0.1 lib/mongoid/matchers/ne.rb
mongoid-3.0.0 lib/mongoid/matchers/ne.rb
mongoid-3.0.0.rc lib/mongoid/matchers/ne.rb