Class: Qonfig::Loaders::YAML Private
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Class Method Summary collapse
- .load(data) ⇒ Object private
- .load_empty_data ⇒ Object private
Methods inherited from Basic
Class Method Details
.load(data) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
12 13 14 |
# File 'lib/qonfig/loaders/yaml.rb', line 12 def load(data) ::YAML.load(ERB.new(data).result) end |
.load_empty_data ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
20 21 22 |
# File 'lib/qonfig/loaders/yaml.rb', line 20 def load_empty_data load('{}') end |