Class: ConfigReader::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/config_reader.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



107
108
109
110
111
112
# File 'lib/config_reader.rb', line 107

def initialize
  @config_file = nil
  @sekrets_file = nil
  @ignore_missing_keys = false
  @environment = nil
end

Instance Attribute Details

#config_fileObject

Returns the value of attribute config_file.



105
106
107
# File 'lib/config_reader.rb', line 105

def config_file
  @config_file
end

#environmentObject

Returns the value of attribute environment.



105
106
107
# File 'lib/config_reader.rb', line 105

def environment
  @environment
end

#ignore_missing_keysObject

Returns the value of attribute ignore_missing_keys.



105
106
107
# File 'lib/config_reader.rb', line 105

def ignore_missing_keys
  @ignore_missing_keys
end

#sekrets_fileObject

Returns the value of attribute sekrets_file.



105
106
107
# File 'lib/config_reader.rb', line 105

def sekrets_file
  @sekrets_file
end