Module: Dry::CLI::Command::ClassMethods Private
- Defined in:
- lib/dry/cli/command.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #arguments ⇒ Object readonly private
- #description ⇒ Object readonly private
- #examples ⇒ Object readonly private
- #options ⇒ Object readonly private
- #subcommands ⇒ Object private
Instance Attribute Details
#arguments ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
40 41 42 |
# File 'lib/dry/cli/command.rb', line 40 def arguments @arguments end |
#description ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
32 33 34 |
# File 'lib/dry/cli/command.rb', line 32 def description @description end |
#examples ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
36 37 38 |
# File 'lib/dry/cli/command.rb', line 36 def examples @examples end |
#options ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
44 45 46 |
# File 'lib/dry/cli/command.rb', line 44 def @options end |
#subcommands ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
48 49 50 |
# File 'lib/dry/cli/command.rb', line 48 def subcommands @subcommands end |