Class: Hanami::CLI::CommandRegistry::LookupResult Private

Inherits:
Object
  • Object
show all
Defined in:
lib/hanami/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

Since:

  • 0.1.0

Instance Attribute Summary collapse

Instance Method Summary collapse

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.

Since:

  • 0.1.0



174
175
176
177
178
179
# File 'lib/hanami/cli/command_registry.rb', line 174

def initialize(node, arguments, names, found)
  @node      = node
  @arguments = arguments
  @names     = names
  @found     = found
end

Instance Attribute Details

#argumentsObject (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.

Since:

  • 0.1.0



170
171
172
# File 'lib/hanami/cli/command_registry.rb', line 170

def arguments
  @arguments
end

#namesObject (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.

Since:

  • 0.1.0



166
167
168
# File 'lib/hanami/cli/command_registry.rb', line 166

def names
  @names
end

Instance Method Details

#after_callbacksObject

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.

Since:

  • 0.2.0



207
208
209
# File 'lib/hanami/cli/command_registry.rb', line 207

def after_callbacks
  @node.after_callbacks
end

#before_callbacksObject

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.

Since:

  • 0.2.0



201
202
203
# File 'lib/hanami/cli/command_registry.rb', line 201

def before_callbacks
  @node.before_callbacks
end

#childrenObject

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.

Since:

  • 0.1.0



189
190
191
# File 'lib/hanami/cli/command_registry.rb', line 189

def children
  @node.children
end

#commandObject

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.

Since:

  • 0.1.0



195
196
197
# File 'lib/hanami/cli/command_registry.rb', line 195

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.

Returns:

  • (Boolean)

Since:

  • 0.1.0



183
184
185
# File 'lib/hanami/cli/command_registry.rb', line 183

def found?
  @found
end