Class: Qonfig::Commands::Definition::LoadFromVault Private

Inherits:
Base
  • Object
show all
Defined in:
lib/qonfig/plugins/vault/commands/definition/load_from_vault.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.25.0

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Base

inheritable=, inheritable?, #inheritable?, inherited

Constructor Details

#initialize(path, strict: true) ⇒ LoadFromVault

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

Parameters:

  • path (String)
  • strict (Hash) (defaults to: true)

    a customizable set of options

Options Hash (strict:):

  • (Boolean)

Since:

  • 0.25.0



26
27
28
29
# File 'lib/qonfig/plugins/vault/commands/definition/load_from_vault.rb', line 26

def initialize(path, strict: true)
  @path = path
  @strict = strict
end

Instance Attribute Details

#pathString, Pathname (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:

  • (String, Pathname)

Since:

  • 0.25.0



13
14
15
# File 'lib/qonfig/plugins/vault/commands/definition/load_from_vault.rb', line 13

def path
  @path
end

#strictBoolean (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:

  • (Boolean)

Since:

  • 0.25.0



19
20
21
# File 'lib/qonfig/plugins/vault/commands/definition/load_from_vault.rb', line 19

def strict
  @strict
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.

Parameters:

Since:

  • 0.25.0



37
38
39
40
41
# File 'lib/qonfig/plugins/vault/commands/definition/load_from_vault.rb', line 37

def call(_data_set, settings)
  vault_data = Qonfig::Loaders::Vault.load_file(path, fail_on_unexist: strict)
  vault_based_settings = build_data_set_klass(vault_data).new.settings
  settings.__append_settings__(vault_based_settings)
end