Class: NxtSchema::Validators::Excluded

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Validator

register_as, #translate_error

Constructor Details

#initialize(target) ⇒ Excluded

Returns a new instance of Excluded.



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

def initialize(target)
  @target = target
end

Instance Attribute Details

#targetObject (readonly)

Returns the value of attribute target.



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

def target
  @target
end

Instance Method Details

#buildObject



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

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