Class: DataMapper::Query::Conditions::GreaterThanComparison

Inherits:
AbstractComparison show all
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

Methods inherited from AbstractComparison

descendants, inherited, #inspect, #negated?, #property?, #relationship?, slug, #slug, #to_s, #valid?, #value

Methods included from Deprecate

#deprecate

Methods included from Equalizer

#equalize

Instance Method Details

#matches?(record) ⇒ Boolean

Tests that the record value matches the comparison

Parameters:

  • record (Resource, Hash)

    The record containing the value to be matched

Returns:

  • (Boolean)


802
803
804
805
# File 'lib/dm-core/query/conditions/comparison.rb', line 802

def matches?(record)
  record_value = record_value(record)
  !record_value.nil? && record_value > expected
end