Class: Qonfig::Loaders::TOML Private
- Defined in:
- lib/qonfig/plugins/toml/loaders/toml.rb
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.
14 15 16 17 18 19 20 |
# File 'lib/qonfig/plugins/toml/loaders/toml.rb', line 14 def load(data) ::TomlRB.parse(ERB.new(data).result) rescue ::TomlRB::ParseError => error raise(Qonfig::TOMLLoaderParseError.new(error.).tap do |exception| exception.set_backtrace(error.backtrace) end) 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.
26 27 28 |
# File 'lib/qonfig/plugins/toml/loaders/toml.rb', line 26 def load_empty_data ::TomlRB.parse('') end |