Class: Abide::CLI::SceValidate

Inherits:
AbideCommand
  • Object
show all
Defined in:
lib/abide_dev_utils/cli/sce.rb

Constant Summary collapse

CMD_NAME =
'validate'
CMD_SHORT =
'Validation commands for SCE modules'
CMD_LONG =
'Validation commands for SCE modules'

Constants included from AbideDevUtils::Config

AbideDevUtils::Config::DEFAULT_PATH

Instance Method Summary collapse

Methods inherited from AbideCommand

#deprecated?, #on_after_add

Methods included from AbideDevUtils::Config

config_section, #config_section, fetch, #fetch, to_h, #to_h

Constructor Details

#initializeSceValidate

Returns a new instance of SceValidate.



215
216
217
218
# File 'lib/abide_dev_utils/cli/sce.rb', line 215

def initialize
  super(CMD_NAME, CMD_SHORT, CMD_LONG, takes_commands: true)
  add_command(SceValidatePuppetStrings.new)
end