Class: CC::Config::Validation::FetchValidator

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

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(data) ⇒ FetchValidator

Returns a new instance of FetchValidator.



12
13
14
15
16
17
18
19
# File 'lib/cc/config/validation/fetch_validator.rb', line 12

def initialize(data)
  @data = data

  @errors = []
  @warnings = []

  validate
end

Instance Attribute Details

#errorsObject (readonly)

Returns the value of attribute errors.



10
11
12
# File 'lib/cc/config/validation/fetch_validator.rb', line 10

def errors
  @errors
end

#warningsObject (readonly)

Returns the value of attribute warnings.



10
11
12
# File 'lib/cc/config/validation/fetch_validator.rb', line 10

def warnings
  @warnings
end