Class: Abide::CLI::SceGenerate
- Inherits:
 - 
      AbideCommand
      
        
- Object
 - CmdParse::Command
 - AbideCommand
 - Abide::CLI::SceGenerate
 
 
- Defined in:
 - lib/abide_dev_utils/cli/sce.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  ⇒ SceGenerate 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SceGenerate.
 
Methods inherited from AbideCommand
Methods included from AbideDevUtils::Config
config_section, #config_section, fetch, #fetch, to_h, #to_h
Constructor Details
#initialize ⇒ SceGenerate
Returns a new instance of SceGenerate.
      28 29 30 31 32  | 
    
      # File 'lib/abide_dev_utils/cli/sce.rb', line 28 def initialize super(CMD_NAME, CMD_SHORT, CMD_LONG, takes_commands: true) add_command(SceGenerateCoverageReport.new) add_command(SceGenerateReference.new) end  |