Method: Inspec::Plugins::CLI.add_subcommand
- Defined in:
- lib/inspec/plugins/cli.rb
.add_subcommand(klass, subcommand_name, usage, description, options = {}) ⇒ Object
13 14 15 16 17 18 19 20 21 |
# File 'lib/inspec/plugins/cli.rb', line 13 def self.add_subcommand(klass, subcommand_name, usage, description, = {}) subcommands[subcommand_name] = { klass: klass, subcommand_name: subcommand_name, usage: usage, description: description, options: , } end |