Class: Mongoid::Matchers::Lte
- Inherits:
-
Default
- Object
- Default
- Mongoid::Matchers::Lte
- Defined in:
- lib/mongoid/matchers/lte.rb
Overview
Performs less than or equal to matching.
Instance Attribute Summary
Attributes inherited from Default
Instance Method Summary (collapse)
-
- (true, false) matches?(value)
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
- (true, false) matches?(value)
Return true if the attribute is less than or equal to the value.
16 17 18 |
# File 'lib/mongoid/matchers/lte.rb', line 16 def matches?(value) determine(value, :<=) end |