Class: CC::Config::Validation::FileValidator

Inherits:
Object
  • Object
show all
Includes:
HashValidations
Defined in:
lib/cc/config/validation/file_validator.rb

Direct Known Subclasses

JSON, YAML

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from HashValidations

#key_type_error_message, #validate_hash_data, #validate_key_type, #warn_unrecognized_keys

Constructor Details

#initialize(path, registry) ⇒ FileValidator

Returns a new instance of FileValidator.



9
10
11
12
13
14
15
16
17
# File 'lib/cc/config/validation/file_validator.rb', line 9

def initialize(path, registry)
  @path = path
  @registry = registry

  @errors = []
  @warnings = []

  validate
end

Instance Attribute Details

#errorsObject (readonly)

Returns the value of attribute errors.



7
8
9
# File 'lib/cc/config/validation/file_validator.rb', line 7

def errors
  @errors
end

#pathObject (readonly)

Returns the value of attribute path.



7
8
9
# File 'lib/cc/config/validation/file_validator.rb', line 7

def path
  @path
end

#warningsObject (readonly)

Returns the value of attribute warnings.



7
8
9
# File 'lib/cc/config/validation/file_validator.rb', line 7

def warnings
  @warnings
end

Instance Method Details

#valid?Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/cc/config/validation/file_validator.rb', line 19

def valid?
  errors.none?
end