Method: Metanorma::Acme::Configuration#set_default_values_from_yaml_file
- Defined in:
- lib/metanorma/acme.rb
#set_default_values_from_yaml_file(config_file) ⇒ Object
63 64 65 66 67 68 |
# File 'lib/metanorma/acme.rb', line 63 def set_default_values_from_yaml_file(config_file) = YAML.load(File.read(config_file)) CONFIG_ATTRS.each do |attr_name| instance_variable_set("@#{attr_name}", [attr_name.to_s]) end end |