Class: Mongoid::Matchable::Ne
- Defined in:
- lib/mongoid/matchable/ne.rb
Overview
Performs non-equivalency checks.
Instance Attribute Summary
Attributes inherited from Default
Instance Method Summary collapse
-
#_matches?(value) ⇒ true, false
Return true if the attribute and first value are not equal.
Methods inherited from Default
Constructor Details
This class inherits a constructor from Mongoid::Matchable::Default
Instance Method Details
#_matches?(value) ⇒ true, false
Return true if the attribute and first value are not equal.
18 19 20 |
# File 'lib/mongoid/matchable/ne.rb', line 18 def _matches?(value) !super(value.values.first) end |