Class: Legate::CLI::BaseCommand
- Inherits:
-
Thor
- Object
- Thor
- Legate::CLI::BaseCommand
- 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.
Direct Known Subclasses
AgentCommands, AuthCommands, AuthCredentialCommands, AuthMappingCommands, AuthSchemeCommands, DeploymentCommands, Main, SessionCommands, SkaffoldCommands, ToolCommands, WebCommands
Instance Method Summary collapse
-
#tree ⇒ Object
rubocop:disable Lint/UselessMethodDefinition.
Instance Method Details
#tree ⇒ Object
rubocop:disable Lint/UselessMethodDefinition
19 20 21 |
# File 'lib/legate/cli/base_command.rb', line 19 def tree # rubocop:disable Lint/UselessMethodDefinition super end |