Sha256: db36e5adcc8595653ed6013fc5b6d453e52a74f9f12fe70590faa9f878c01e05
Contents?: true
Size: 571 Bytes
Versions: 76
Compression:
Stored size: 571 Bytes
Contents
# frozen_string_literal: true require 'eac_config/entry_path' require 'eac_config/paths_hash' require 'eac_ruby_utils/core_ext' module EacConfig # A entry which search values only in the source node. class NodeEntry enable_abstract_methods enable_simple_cache common_constructor :node, :path do self.path = ::EacConfig::EntryPath.assert(path) end abstract_methods :found?, :value, :value= def secret_value value end # @return [String] def to_s "#{self.class}[Node: #{node}, Path: #{path}]" end end end
Version data entries
76 entries across 76 versions & 2 rubygems