Class: DataMapper::Query::Conditions::GreaterThanComparison
- Inherits:
-
AbstractComparison
- Object
- AbstractComparison
- DataMapper::Query::Conditions::GreaterThanComparison
- Defined in:
- lib/dm-core/query/conditions/comparison.rb
Overview
Tests whether the value in the record is greater than the expected set for the Comparison.
Instance Attribute Summary
Attributes inherited from AbstractComparison
#loaded_value, #parent, #subject
Instance Method Summary collapse
-
#matches?(record) ⇒ Boolean
Tests that the record value matches the comparison.
Methods inherited from AbstractComparison
descendants, inherited, #inspect, #negated?, #property?, #relationship?, slug, #slug, #to_s, #valid?, #value
Methods included from Equalizer
Instance Method Details
#matches?(record) ⇒ Boolean
Tests that the record value matches the comparison
799 800 801 802 |
# File 'lib/dm-core/query/conditions/comparison.rb', line 799 def matches?(record) record_value = record_value(record) !record_value.nil? && record_value > expected end |