Class: Precursor::YamlVault
Overview
Vault that reads config data from a string with Yaml
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from Vault
Instance Method Summary collapse
-
#initialize(yaml) ⇒ YamlVault
constructor
A new instance of YamlVault.
Methods inherited from Vault
Constructor Details
#initialize(yaml) ⇒ YamlVault
Returns a new instance of YamlVault.
10 11 12 13 |
# File 'lib/yaml_vault.rb', line 10 def initialize(yaml) super() @yaml = yaml end |