Class: Abide::CLI::CemGenerate
- Inherits:
-
AbideCommand
- Object
- CmdParse::Command
- AbideCommand
- Abide::CLI::CemGenerate
- Defined in:
- lib/abide_dev_utils/cli/cem.rb
Constant Summary collapse
- CMD_NAME =
'generate'
- CMD_SHORT =
'Holds subcommands for generating objects / files'
- CMD_LONG =
'Holds subcommands for generating objects / files'
Constants included from AbideDevUtils::Config
AbideDevUtils::Config::DEFAULT_PATH
Instance Method Summary collapse
-
#initialize ⇒ CemGenerate
constructor
A new instance of CemGenerate.
Methods included from AbideDevUtils::Config
config_section, #config_section, fetch, #fetch, to_h, #to_h
Constructor Details
#initialize ⇒ CemGenerate
Returns a new instance of CemGenerate.
28 29 30 31 32 |
# File 'lib/abide_dev_utils/cli/cem.rb', line 28 def initialize super(CMD_NAME, CMD_SHORT, CMD_LONG, takes_commands: true) add_command(CemGenerateCoverageReport.new) add_command(CemGenerateReference.new) end |