Class: Dry::CLI::Registry::Prefix

Inherits:
Object
  • Object
show all
Defined in:
lib/dry/cli/registry.rb

Overview

Command name prefix

Since:

  • 0.1.0

Instance Method Summary collapse

Constructor Details

#initialize(registry, prefix, aliases) ⇒ Prefix

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 Prefix.

Since:

  • 0.1.0



311
312
313
314
315
316
# File 'lib/dry/cli/registry.rb', line 311

def initialize(registry, prefix, aliases)
  @registry = registry
  @prefix   = prefix

  registry.set(prefix, nil, aliases)
end

Instance Method Details

#register(name, command, aliases: []) ⇒ Object

See Also:

Since:

  • 0.1.0



321
322
323
324
# File 'lib/dry/cli/registry.rb', line 321

def register(name, command, aliases: [])
  command_name = "#{prefix} #{name}"
  registry.set(command_name, command, aliases)
end