Class: Qonfig::Validation::Validators::Predefined Private
- Defined in:
- lib/qonfig/validation/validators/predefined.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #validation ⇒ Proc readonly private
Attributes inherited from Basic
Instance Method Summary collapse
- #initialize(setting_key_matcher, strict, validation) ⇒ void constructor private
- #validate_concrete(data_set) ⇒ void private
- #validate_full(data_set) ⇒ void private
Methods inherited from Basic
Constructor Details
#initialize(setting_key_matcher, strict, validation) ⇒ void
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
19 20 21 22 |
# File 'lib/qonfig/validation/validators/predefined.rb', line 19 def initialize(setting_key_matcher, strict, validation) super(setting_key_matcher, strict) @validation = validation end |
Instance Attribute Details
#validation ⇒ Proc (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
10 11 12 |
# File 'lib/qonfig/validation/validators/predefined.rb', line 10 def validation @validation end |
Instance Method Details
#validate_concrete(data_set) ⇒ void
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
This method returns an undefined value.
31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/qonfig/validation/validators/predefined.rb', line 31 def validate_concrete(data_set) data_set.settings.__deep_each_setting__ do |setting_key, setting_value| next unless setting_key_matcher.match?(setting_key) next if !strict && setting_value.nil? raise( Qonfig::ValidationError, "Invalid value of setting <#{setting_key}> (#{setting_value})" ) unless validation.call(setting_value) end end |
#validate_full(data_set) ⇒ void
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
This method returns an undefined value.
50 51 52 53 54 |
# File 'lib/qonfig/validation/validators/predefined.rb', line 50 def validate_full(data_set) # :nocov: raise Qonfig::Error, 'Predefined validator can be used with a setting key only' # :nocov: end |