class Ronin::CLI

The main CLI logic for the ‘ronin` command.

@api private

@since 2.0.0

Constants

ADDITIONAL_RONIN_COMMANDS

Additional ‘ronin-` commands to checkout.

Public Instance Methods

help() click to toggle source

Prints the regular ‘–help` output but also lists other `ronin-*` commands.

Calls superclass method
# File lib/ronin/cli.rb, line 74
def help
  super

  puts
  puts "Additional Ronin Commands:"
  ADDITIONAL_RONIN_COMMANDS.each do |name|
    puts "    $ #{name}"
  end
  puts
end