Class: EasyConf::Configuration
- Inherits:
-
Object
- Object
- EasyConf::Configuration
- Defined in:
- lib/easy_conf/configuration.rb
Overview
:nodoc
Instance Attribute Summary collapse
-
#black_list_keys ⇒ Object
Returns the value of attribute black_list_keys.
-
#config_files ⇒ Object
Returns the value of attribute config_files.
-
#environment ⇒ Object
Returns the value of attribute environment.
-
#inform_with ⇒ Object
Returns the value of attribute inform_with.
-
#white_list_keys ⇒ Object
Returns the value of attribute white_list_keys.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
5 6 7 8 9 10 |
# File 'lib/easy_conf/configuration.rb', line 5 def initialize @config_files = [] @inform_with = :log @white_list_keys = [] @black_list_keys = [] end |
Instance Attribute Details
#black_list_keys ⇒ Object
Returns the value of attribute black_list_keys.
3 4 5 |
# File 'lib/easy_conf/configuration.rb', line 3 def black_list_keys @black_list_keys end |
#config_files ⇒ Object
Returns the value of attribute config_files.
3 4 5 |
# File 'lib/easy_conf/configuration.rb', line 3 def config_files @config_files end |
#environment ⇒ Object
Returns the value of attribute environment.
3 4 5 |
# File 'lib/easy_conf/configuration.rb', line 3 def environment @environment end |
#inform_with ⇒ Object
Returns the value of attribute inform_with.
3 4 5 |
# File 'lib/easy_conf/configuration.rb', line 3 def inform_with @inform_with end |
#white_list_keys ⇒ Object
Returns the value of attribute white_list_keys.
3 4 5 |
# File 'lib/easy_conf/configuration.rb', line 3 def white_list_keys @white_list_keys end |