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.



133
134
135
136
137
138
# File 'lib/config_reader.rb', line 133

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.



128
129
130
# File 'lib/config_reader.rb', line 128

def config_file
  @config_file
end

#environmentObject

Returns the value of attribute environment.



128
129
130
# File 'lib/config_reader.rb', line 128

def environment
  @environment
end

#ignore_missing_keysObject

Returns the value of attribute ignore_missing_keys.



128
129
130
# File 'lib/config_reader.rb', line 128

def ignore_missing_keys
  @ignore_missing_keys
end

#sekrets_fileObject

Returns the value of attribute sekrets_file.



128
129
130
# File 'lib/config_reader.rb', line 128

def sekrets_file
  @sekrets_file
end