Class: AppConfigLoader::Parser
- Inherits:
-
Object
- Object
- AppConfigLoader::Parser
- Defined in:
- lib/app_config_loader/parser.rb
Instance Method Summary collapse
-
#initialize(use_domain = false) ⇒ Parser
constructor
A new instance of Parser.
-
#parse(content) ⇒ Object
Parse a YAML format text and returns flattened list of all key entries.
Constructor Details
#initialize(use_domain = false) ⇒ Parser
Returns a new instance of Parser.
5 6 7 |
# File 'lib/app_config_loader/parser.rb', line 5 def initialize(use_domain = false) @use_domain = use_domain end |
Instance Method Details
#parse(content) ⇒ Object
Parse a YAML format text and returns flattened list of all key entries
12 13 14 |
# File 'lib/app_config_loader/parser.rb', line 12 def parse(content) flatten_keys YAML.load(content) end |