Class: Qonfig::Commands::AddOption Private
- 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.
Instance Attribute Summary collapse
- #key ⇒ Symbol, String readonly private
- #value ⇒ Object readonly private
Instance Method Summary collapse
- #call(settings) ⇒ void private
-
#initialize(key, value) ⇒ AddOption
constructor
private
A new instance of AddOption.
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.
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
#key ⇒ Symbol, 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.
12 13 14 |
# File 'lib/qonfig/commands/add_option.rb', line 12 def key @key end |
#value ⇒ 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.
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.
40 41 42 |
# File 'lib/qonfig/commands/add_option.rb', line 40 def call(settings) settings.__define_setting__(key, value) end |