Class: Mongoid::Matchers::Lte
- Defined in:
- lib/mongoid/matchers/lte.rb
Instance Method Summary collapse
-
#matches?(value) ⇒ Boolean
Return true if the attribute is less than or equal to the value.
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 less than or equal to the value.
6 7 8 |
# File 'lib/mongoid/matchers/lte.rb', line 6 def matches?(value) determine(value, :<=) end |