Class: JsonChecker::Checker

Inherits:
Object
  • Object
show all
Defined in:
lib/json_checker.rb

Instance Method Summary collapse

Instance Method Details

#runObject



7
8
9
10
11
12
13
# File 'lib/json_checker.rb', line 7

def run()
  jsonConfig = JSONFetcher.json_from_path('json-config.json')

  unless jsonConfig.nil?
  JSONValidator.validate_with_config(jsonConfig)
  end    
end