Class: Qonfig::Commands::Instantiation::ValuesFile Private

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

Constant Summary collapse

SELF_LOCATED_FILE_DEFINITION =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Since:

  • 0.17.0

:self
NO_EXPOSE =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Since:

  • 0.17.0

nil
DEFAULT_STRICT_BEHAVIOR =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Since:

  • 0.17.0

false
DEFAULT_FORMAT =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Since:

  • 0.17.0

:dynamic

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(file_path, caller_location, format: DEFAULT_FORMAT, strict: DEFAULT_STRICT_BEHAVIOR, expose: NO_EXPOSE) ⇒ 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.

Options Hash (format:):

  • (String, Symbol)

Options Hash (strict:):

  • (Boolean)

Options Hash (expose:):

  • (NilClass, String, Symbol)

Since:

  • 0.17.0



69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/qonfig/commands/instantiation/values_file.rb', line 69

def initialize(
  file_path,
  caller_location,
  format: DEFAULT_FORMAT,
  strict: DEFAULT_STRICT_BEHAVIOR,
  expose: NO_EXPOSE
)
  prevent_incompatible_attributes!(file_path, format, strict, expose)

  @file_path = file_path
  @caller_location = caller_location
  @format = format
  @strict = strict
  @expose = expose
end

Instance Attribute Details

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

Since:

  • 0.17.0



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

def caller_location
  @caller_location
end

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

Since:

  • 0.17.0



58
59
60
# File 'lib/qonfig/commands/instantiation/values_file.rb', line 58

def expose
  @expose
end

#file_pathString, 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.

Since:

  • 0.17.0



34
35
36
# File 'lib/qonfig/commands/instantiation/values_file.rb', line 34

def file_path
  @file_path
end

#formatString, 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.

Since:

  • 0.17.0



46
47
48
# File 'lib/qonfig/commands/instantiation/values_file.rb', line 46

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

Since:

  • 0.17.0



52
53
54
# File 'lib/qonfig/commands/instantiation/values_file.rb', line 52

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.

Since:

  • 0.17.0



91
92
93
94
95
96
# File 'lib/qonfig/commands/instantiation/values_file.rb', line 91

def call(data_set, settings)
  settings_values = load_settings_values
  return unless settings_values
  settings_values = (settings_values[expose.to_sym] || settings_values[expose.to_s]) if expose
  data_set.configure(settings_values) if settings_values
end