eac_config 0.8.1 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/eac_config/entry_path.rb +5 -0
- data/lib/eac_config/node.rb +6 -0
- data/lib/eac_config/prefixed_path_node/entry.rb +25 -0
- data/lib/eac_config/prefixed_path_node.rb +19 -0
- data/lib/eac_config/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5db53702e6d4c6f65f85b26760876d5d6a6a2f0cbce94f4b51d5297ca62e37b3
|
4
|
+
data.tar.gz: 496941594317063a50560de0a0b570a9fbcaf6f7be33fb73a028339107f95b88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75828d4f5c77d072e8be098fd550fd119226adafb769906dd514044251aac013fcf987df0a5a050d7b11a0a034a5bc16825348a7b3f352f91bb64aa3184afd47
|
7
|
+
data.tar.gz: ed10850b15eedc3e3375f06a811e54cb0c3760bb09cdcdb484e7f77c476e84301d465b83c4fedb81dca66e66a2db7c694057322f3ab2f6c55c240c585ab4f68f
|
data/lib/eac_config/node.rb
CHANGED
@@ -58,6 +58,12 @@ module EacConfig
|
|
58
58
|
::EacConfig::LoadNodesSearch.new(self).result
|
59
59
|
end
|
60
60
|
|
61
|
+
# @return [EacConfig::PrefixedPathNode]
|
62
|
+
def with_prefix(path_prefix)
|
63
|
+
require 'eac_config/prefixed_path_node'
|
64
|
+
::EacConfig::PrefixedPathNode.new(self, path_prefix)
|
65
|
+
end
|
66
|
+
|
61
67
|
private
|
62
68
|
|
63
69
|
def load_node(node_path)
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_config/node_entry'
|
4
|
+
require 'eac_ruby_utils/core_ext'
|
5
|
+
|
6
|
+
module EacConfig
|
7
|
+
class PrefixedPathNode
|
8
|
+
class Entry < ::EacConfig::NodeEntry
|
9
|
+
enable_simple_cache
|
10
|
+
delegate :found?, :found_node, :secret_value, :value, :value=, :writ_node, to: :full_entry
|
11
|
+
|
12
|
+
# @return [EacConfig::EntryPath]
|
13
|
+
def full_path
|
14
|
+
node.path_prefix + path
|
15
|
+
end
|
16
|
+
|
17
|
+
private
|
18
|
+
|
19
|
+
# @return [EacConfig::NodeEntry]
|
20
|
+
def full_entry_uncached
|
21
|
+
node.from_node.entry(full_path)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_config/entry_path'
|
4
|
+
require 'eac_config/paths_hash'
|
5
|
+
require 'eac_ruby_utils/core_ext'
|
6
|
+
|
7
|
+
module EacConfig
|
8
|
+
class PrefixedPathNode
|
9
|
+
require_sub __FILE__
|
10
|
+
include ::EacConfig::Node
|
11
|
+
common_constructor :from_node, :path_prefix do
|
12
|
+
self.path_prefix = ::EacConfig::EntryPath.assert(path_prefix)
|
13
|
+
end
|
14
|
+
|
15
|
+
def entry(path)
|
16
|
+
::EacConfig::Entry.new(self, path)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
data/lib/eac_config/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eac_config
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Put here the authors
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-07-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|
@@ -75,6 +75,8 @@ files:
|
|
75
75
|
- lib/eac_config/paths_hash/entry_key_error.rb
|
76
76
|
- lib/eac_config/paths_hash/node.rb
|
77
77
|
- lib/eac_config/paths_hash/path_search.rb
|
78
|
+
- lib/eac_config/prefixed_path_node.rb
|
79
|
+
- lib/eac_config/prefixed_path_node/entry.rb
|
78
80
|
- lib/eac_config/rspec.rb
|
79
81
|
- lib/eac_config/rspec/setup.rb
|
80
82
|
- lib/eac_config/version.rb
|