Class: Mongoid::Matchers::Nin
- Defined in:
- lib/mongoid/matchers/nin.rb
Instance Method Summary collapse
-
#matches?(value) ⇒ Boolean
Return true if the attribute is not in the value list.
Methods inherited from Default
Constructor Details
This class inherits a constructor from Mongoid::Matchers::Default
Instance Method Details
#matches?(value) ⇒ Boolean
Return true if the attribute is not in the value list.
6 7 8 |
# File 'lib/mongoid/matchers/nin.rb', line 6 def matches?(value) !value.values.first.include?(@attribute) end |