Class: Mongoid::Matchers::All
- Defined in:
- lib/mongoid/matchers/all.rb
Overview
Checks that all values match.
Instance Attribute Summary
Attributes inherited from Default
Instance Method Summary collapse
-
#matches?(value) ⇒ true, false
Return true if the attribute and first value in the hash are equal.
Methods inherited from Default
Constructor Details
This class inherits a constructor from Mongoid::Matchers::Default
Instance Method Details
#matches?(value) ⇒ true, false
Return true if the attribute and first value in the hash are equal.
16 17 18 19 20 21 22 23 24 25 |
# File 'lib/mongoid/matchers/all.rb', line 16 def matches?(value) attribute_array = Array.wrap(@attribute) value.values.first.all? do |e| if e.is_a?(Regexp) attribute_array.any? { |_attribute| _attribute =~ e } else attribute_array.include?(e) end end end |