Class: NxtSchema::Validators::Includes
- Defined in:
- lib/nxt_schema/validators/includes.rb
Instance Attribute Summary collapse
-
#target ⇒ Object
readonly
Returns the value of attribute target.
Instance Method Summary collapse
- #build ⇒ Object
-
#initialize(target) ⇒ Includes
constructor
A new instance of Includes.
Methods inherited from Validator
Constructor Details
#initialize(target) ⇒ Includes
Returns a new instance of Includes.
4 5 6 |
# File 'lib/nxt_schema/validators/includes.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/includes.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/includes.rb', line 11 def build lambda do |node, value| if value.include?(target) true else = translate_error(coerced?.locale, value: value, target: target) node.add_error() end end end |