Class: Mongoid::Matchers::Exists
- Defined in:
- lib/mongoid/matchers/exists.rb
Instance Method Summary collapse
-
#matches?(value) ⇒ Boolean
Return true if the attribute exists and checking for existence or return true if the attribute does not exist and checking for non-existence.
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 exists and checking for existence or return true if the attribute does not exist and checking for non-existence.
8 9 10 |
# File 'lib/mongoid/matchers/exists.rb', line 8 def matches?(value) @attribute.nil? != value.values.first end |