Class: Legate::CLI::BaseCommand

Inherits:
Thor
  • Object
show all
Defined in:
lib/legate/cli/base_command.rb

Overview

Base class for every Legate CLI command group.

Thor 1.5 ships a built-in ‘tree` command on the base Thor class. Left alone it leaks into help output namespaced by the implementation class (e.g. `legate tool_commands tree`), which looks like a bug. We hide it here once so all command groups inherit clean help output.

Instance Method Summary collapse

Instance Method Details

#treeObject

rubocop:disable Lint/UselessMethodDefinition



19
20
21
# File 'lib/legate/cli/base_command.rb', line 19

def tree # rubocop:disable Lint/UselessMethodDefinition
  super
end