Sha256: 1fc4e0ae0d0faa01a71b5f2a257bc629749c1938b7d99a92680fd96a11507faa
Contents?: true
Size: 1.13 KB
Versions: 2
Compression:
Stored size: 1.13 KB
Contents
# frozen_string_literal: true require 'eac_ruby_utils/core_ext' module Avm module Instances class Entry class << self def auto_value_method_name(suffix) "auto_#{suffix.to_s.gsub('.', '_')}" end end common_constructor :parent, :suffix, :options def auto_value parent.respond_to?(auto_value_method, true) ? parent.send(auto_value_method) : nil end def auto_value_method self.class.auto_value_method_name(suffix) end def full_path (parent.path_prefix + suffix_as_array).join('.') end def optional_value read(required: false, noinput: true) || auto_value end def read(extra_options = {}) ::Avm.configs.read_entry(full_path, options.merge(extra_options)) end def suffix_as_array if suffix.is_a?(::Array) suffix.dup else ::EacConfig::PathsHash.parse_entry_key(suffix.to_s) end end def value optional_value || read end def write(value) ::Avm.configs.configs.write_entry(full_path, value) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
avm-tools-0.99.1 | lib/avm/instances/entry.rb |
avm-tools-0.99.0 | lib/avm/instances/entry.rb |