Class: NxtSchema::Validators::Excluded
- Defined in:
- lib/nxt_schema/validators/excluded_in.rb
Instance Attribute Summary collapse
-
#target ⇒ Object
readonly
Returns the value of attribute target.
Instance Method Summary collapse
- #build ⇒ Object
-
#initialize(target) ⇒ Excluded
constructor
A new instance of Excluded.
Methods inherited from Validator
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
#target ⇒ Object (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
#build ⇒ Object
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 = translate_error(node.locale, target: target, value: value) node.add_error() end end end |