Class: Mongoid::Matchers::Gt

Inherits:
Default
  • Object
show all
Defined in:
lib/mongoid/matchers/gt.rb

Overview

Performs Greater Than matching.

Instance Attribute Summary

Attributes inherited from Default

#attribute, #document

Instance Method Summary collapse

Methods inherited from Default

#initialize

Constructor Details

This class inherits a constructor from Mongoid::Matchers::Default

Instance Method Details

#matches?(value) ⇒ true, false

Return true if the attribute is greater than the value.

Examples:

Do the values match?

matcher.matches?({ :key => 10 })


16
17
18
# File 'lib/mongoid/matchers/gt.rb', line 16

def matches?(value)
  determine(value, :>)
end