Class: Connect::Datasources::Yaml
- Inherits:
-
Base
- Object
- Base
- Connect::Datasources::Yaml
- Defined in:
- lib/connect/datasources/yaml.rb
Overview
The ‘YAML` datasource allows you to import yaml data into connect and use them as normal connect variables.
Instance Method Summary collapse
-
#initialize(_name, file_name) ⇒ Datasource::Base
constructor
Opens and parses a yaml file and keeps the data.
-
#lookup(key) ⇒ Object
Lookup a key in a parsed yaml file en return it.
Constructor Details
#initialize(_name, file_name) ⇒ Datasource::Base
Opens and parses a yaml file and keeps the data. The lookup method reads so the lookup method can easily access it
20 21 22 23 |
# File 'lib/connect/datasources/yaml.rb', line 20 def initialize(_name, file_name) super @yaml_data ||= YAML.load_file(file_name) end |
Instance Method Details
#lookup(key) ⇒ Object
Lookup a key in a parsed yaml file en return it.
30 31 32 |
# File 'lib/connect/datasources/yaml.rb', line 30 def lookup(key) @yaml_data[key] end |