Class: CodeownerValidator::ValidatorCLI

Inherits:
Thor
  • Object
show all
Defined in:
lib/codeowner_validator/cli/validator_cli.rb

Overview

Public: Class utilized for housing all validator executions

Constant Summary collapse

REPO_PATH_DESC =
'Absolute path to repository location for evaluation'
VERBOSE_DESC =
'Verbose output'

Instance Method Summary collapse

Instance Method Details

#validateObject

Public: Entry point execution to being the codeowner validation



17
18
19
20
21
22
# File 'lib/codeowner_validator/cli/validator_cli.rb', line 17

def validate
  get_user_input(options)

  validator = Validator.new options
  validator.validate
end