Class: Cliqr::Config::Validation::ValidatorFactory::HashValidator Private
- Inherits:
-
CollectionValidator
- Object
- Validator
- NonNilValidator
- TypeHierarchyValidator
- CollectionValidator
- Cliqr::Config::Validation::ValidatorFactory::HashValidator
- Defined in:
- lib/cliqr/config/validation/validator_factory.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.
Validates each element inside a hash map
Instance Method Summary collapse
-
#initialize(config) ⇒ HashValidator
constructor
private
Create a new hash validator.
Methods inherited from Validator
Constructor Details
#initialize(config) ⇒ HashValidator
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.
Create a new hash validator
253 254 255 |
# File 'lib/cliqr/config/validation/validator_factory.rb', line 253 def initialize(config) super(config, Hash) end |