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.



115
116
117
118
119
120
# File 'lib/config_reader.rb', line 115

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.



113
114
115
# File 'lib/config_reader.rb', line 113

def config_file
  @config_file
end

#environmentObject

Returns the value of attribute environment.



113
114
115
# File 'lib/config_reader.rb', line 113

def environment
  @environment
end

#ignore_missing_keysObject

Returns the value of attribute ignore_missing_keys.



113
114
115
# File 'lib/config_reader.rb', line 113

def ignore_missing_keys
  @ignore_missing_keys
end

#sekrets_fileObject

Returns the value of attribute sekrets_file.



113
114
115
# File 'lib/config_reader.rb', line 113

def sekrets_file
  @sekrets_file
end