Module: CLI::Kit::CommandRegistry::ContextualResolver
- Included in:
- NullContextualResolver
- Defined in:
- lib/cli/kit/command_registry.rb
Instance Method Summary collapse
-
#aliases ⇒ Object
abstract
: -> Hash[String, String].
-
#command_class(_name) ⇒ Object
abstract
: (String) -> singleton(CLI::Kit::BaseCommand).
-
#command_names ⇒ Object
abstract
: -> Array.
Instance Method Details
#aliases ⇒ Object
This method is abstract.
: -> Hash[String, String]
26 27 28 |
# File 'lib/cli/kit/command_registry.rb', line 26 def aliases raise(NotImplementedError) end |
#command_class(_name) ⇒ Object
This method is abstract.
: (String) -> singleton(CLI::Kit::BaseCommand)
32 33 34 |
# File 'lib/cli/kit/command_registry.rb', line 32 def command_class(_name) raise(NotImplementedError) end |
#command_names ⇒ Object
This method is abstract.
: -> Array
20 21 22 |
# File 'lib/cli/kit/command_registry.rb', line 20 def command_names raise(NotImplementedError) end |