Class: NxtSchema::Validators::GreaterThan

Inherits:
Validator
  • Object
show all
Defined in:
lib/nxt_schema/validators/greater_than.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Validator

register_as, #translate_error

Constructor Details

#initialize(threshold) ⇒ GreaterThan

Returns a new instance of GreaterThan.



4
5
6
# File 'lib/nxt_schema/validators/greater_than.rb', line 4

def initialize(threshold)
  @threshold = threshold
end

Instance Attribute Details

#thresholdObject (readonly)

Returns the value of attribute threshold.



9
10
11
# File 'lib/nxt_schema/validators/greater_than.rb', line 9

def threshold
  @threshold
end

Instance Method Details

#buildObject



11
12
13
14
15
16
17
18
19
20
# File 'lib/nxt_schema/validators/greater_than.rb', line 11

def build
  lambda do |node, value|
    if value > threshold
      true
    else
      message = translate_error(node.locale, value: value, threshold: threshold)
      node.add_error(message)
    end
  end
end