Class: Dry::CLI::CommandRegistry::LookupResult Private
- Inherits:
-
Object
- Object
- Dry::CLI::CommandRegistry::LookupResult
- Defined in:
- lib/dry/cli/command_registry.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Result of a registry lookup
Instance Attribute Summary collapse
- #arguments ⇒ Object readonly private
- #names ⇒ Object readonly private
Instance Method Summary collapse
- #after_callbacks ⇒ Object private
- #before_callbacks ⇒ Object private
- #children ⇒ Object private
- #command ⇒ Object private
- #found? ⇒ Boolean private
-
#initialize(node, arguments, names, found) ⇒ LookupResult
constructor
private
A new instance of LookupResult.
Constructor Details
#initialize(node, arguments, names, found) ⇒ LookupResult
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.
Returns a new instance of LookupResult.
197 198 199 200 201 202 |
# File 'lib/dry/cli/command_registry.rb', line 197 def initialize(node, arguments, names, found) @node = node @arguments = arguments @names = names @found = found end |
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.
193 194 195 |
# File 'lib/dry/cli/command_registry.rb', line 193 def arguments @arguments end |
#names ⇒ 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.
189 190 191 |
# File 'lib/dry/cli/command_registry.rb', line 189 def names @names end |
Instance Method Details
#after_callbacks ⇒ 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.
230 231 232 |
# File 'lib/dry/cli/command_registry.rb', line 230 def after_callbacks @node.after_callbacks end |
#before_callbacks ⇒ 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.
224 225 226 |
# File 'lib/dry/cli/command_registry.rb', line 224 def before_callbacks @node.before_callbacks end |
#children ⇒ 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.
212 213 214 |
# File 'lib/dry/cli/command_registry.rb', line 212 def children @node.children end |
#command ⇒ 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.
218 219 220 |
# File 'lib/dry/cli/command_registry.rb', line 218 def command @node.command end |
#found? ⇒ Boolean
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.
206 207 208 |
# File 'lib/dry/cli/command_registry.rb', line 206 def found? @found end |