Class: Qonfig::Commands::AddOption Private

Inherits:
Base
  • Object
show all
Defined in:
lib/qonfig/commands/add_option.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.

Since:

  • 0.1.0

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(key, value) ⇒ AddOption

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

Parameters:

  • key (Symbol, String)
  • value (Object)

Raises:

Since:

  • 0.1.0



28
29
30
31
32
33
# File 'lib/qonfig/commands/add_option.rb', line 28

def initialize(key, value)
  Qonfig::Settings::KeyGuard.prevent_incomparabilities!(key)

  @key = key
  @value = value
end

Instance Attribute Details

#keySymbol, String (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.

Returns:

  • (Symbol, String)

Since:

  • 0.1.0



12
13
14
# File 'lib/qonfig/commands/add_option.rb', line 12

def key
  @key
end

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

Returns:

  • (Object)

Since:

  • 0.1.0



18
19
20
# File 'lib/qonfig/commands/add_option.rb', line 18

def value
  @value
end

Instance Method Details

#call(settings) ⇒ void

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.

This method returns an undefined value.

Parameters:

Since:

  • 0.1.0



40
41
42
# File 'lib/qonfig/commands/add_option.rb', line 40

def call(settings)
  settings.__define_setting__(key, value)
end