Class: Qonfig::Commands::Definition::LoadFromSelf Private
- Defined in:
- lib/qonfig/commands/definition/load_from_self.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
- #caller_location ⇒ String readonly private
- #format ⇒ String, Symbol readonly private
- #replace_on_merge ⇒ Boolean readonly private
Instance Method Summary collapse
- #call(data_set, settings) ⇒ void private
-
#initialize(caller_location, format:, replace_on_merge: false) ⇒ LoadFromSelf
constructor
private
A new instance of LoadFromSelf.
Methods inherited from Base
inheritable=, inheritable?, #inheritable?, inherited
Constructor Details
#initialize(caller_location, format:, replace_on_merge: false) ⇒ LoadFromSelf
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 LoadFromSelf.
35 36 37 38 39 40 41 42 43 |
# File 'lib/qonfig/commands/definition/load_from_self.rb', line 35 def initialize(caller_location, format:, replace_on_merge: false) unless format.is_a?(String) || format.is_a?(Symbol) raise Qonfig::ArgumentError, 'Format should be a symbol or a string' end @caller_location = caller_location @format = format.tap { Qonfig::Loaders.resolve(format) } @replace_on_merge = replace_on_merge end |
Instance Attribute Details
#caller_location ⇒ 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.
20 21 22 |
# File 'lib/qonfig/commands/definition/load_from_self.rb', line 20 def caller_location @caller_location end |
#format ⇒ String, Symbol (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.
14 15 16 |
# File 'lib/qonfig/commands/definition/load_from_self.rb', line 14 def format @format end |
#replace_on_merge ⇒ Boolean (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.
26 27 28 |
# File 'lib/qonfig/commands/definition/load_from_self.rb', line 26 def replace_on_merge @replace_on_merge end |
Instance Method Details
#call(data_set, 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.
52 53 54 55 56 57 |
# File 'lib/qonfig/commands/definition/load_from_self.rb', line 52 def call(data_set, settings) self_placed_end_data = load_self_placed_end_data self_placed_settings = build_data_set_klass(self_placed_end_data).new.settings settings.__append_settings__(self_placed_settings, with_redefinition: replace_on_merge) end |