ehbrs-tools 0.21.0 → 0.22.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (115) hide show
  1. checksums.yaml +4 -4
  2. data/lib/ehbrs/core_ext.rb +4 -0
  3. data/lib/ehbrs/music/album.rb +2 -0
  4. data/{vendor/eac_cli/lib/eac_cli/patches/module.rb → lib/ehbrs/patches.rb} +1 -1
  5. data/lib/ehbrs/runner/fs/selected.rb +79 -0
  6. data/lib/ehbrs/runner/fs/used_space.rb +1 -2
  7. data/lib/ehbrs/runner/music/selected.rb +9 -46
  8. data/lib/ehbrs/tools/version.rb +1 -1
  9. data/lib/ehbrs/videos/unsupported/check_support.rb +12 -8
  10. data/vendor/avm-apps/Gemfile +5 -0
  11. data/vendor/avm-apps/avm-apps.gemspec +18 -0
  12. data/vendor/avm-apps/lib/avm/apps.rb +9 -0
  13. data/vendor/avm-apps/lib/avm/apps/config.rb +19 -0
  14. data/vendor/avm-apps/lib/avm/apps/jobs.rb +11 -0
  15. data/vendor/avm-apps/lib/avm/apps/jobs/base.rb +64 -0
  16. data/vendor/avm-apps/lib/avm/apps/jobs/variables_source.rb +24 -0
  17. data/vendor/avm-apps/lib/avm/apps/sources/configuration.rb +57 -0
  18. data/vendor/avm-apps/lib/avm/apps/sources/configuration/_locale.rb +18 -0
  19. data/vendor/avm-apps/lib/avm/apps/sources/configuration/_rubocop.rb +26 -0
  20. data/vendor/avm-apps/lib/avm/apps/sources/configuration/_tests.rb +29 -0
  21. data/vendor/avm-apps/lib/avm/apps/version.rb +7 -0
  22. data/vendor/avm-apps/spec/rubocop_spec.rb +3 -0
  23. data/vendor/avm-apps/spec/spec_helper.rb +103 -0
  24. data/vendor/eac_cli/eac_cli.gemspec +1 -2
  25. data/vendor/eac_cli/lib/eac_cli/config.rb +16 -0
  26. data/vendor/eac_cli/lib/eac_cli/config/entry.rb +48 -0
  27. data/vendor/eac_cli/lib/eac_cli/config/entry/options.rb +57 -0
  28. data/vendor/eac_cli/lib/eac_cli/config/entry/undefined.rb +26 -0
  29. data/vendor/eac_cli/lib/eac_cli/definition/help_formatter.rb +3 -2
  30. data/vendor/eac_cli/lib/eac_cli/definition/positional_argument.rb +6 -1
  31. data/vendor/eac_cli/lib/eac_cli/old_configs.rb +0 -1
  32. data/vendor/eac_cli/lib/eac_cli/old_configs/entry_reader.rb +2 -2
  33. data/vendor/eac_cli/lib/eac_cli/old_configs_bridge.rb +39 -0
  34. data/vendor/eac_cli/lib/eac_cli/runner.rb +0 -2
  35. data/vendor/eac_cli/lib/eac_cli/runner/after_class_methods.rb +20 -3
  36. data/vendor/eac_cli/lib/eac_cli/runner/instance_methods.rb +5 -1
  37. data/vendor/eac_cli/lib/eac_cli/runner_with/help.rb +9 -4
  38. data/vendor/eac_cli/lib/eac_cli/runner_with/help/builder.rb +73 -0
  39. data/vendor/eac_cli/lib/eac_cli/runner_with/help/builder/alternative.rb +56 -0
  40. data/vendor/eac_cli/lib/eac_cli/runner_with/subcommands.rb +6 -4
  41. data/vendor/eac_cli/lib/eac_cli/speaker.rb +15 -19
  42. data/vendor/eac_cli/lib/eac_cli/speaker/_constants.rb +1 -1
  43. data/vendor/eac_cli/lib/eac_cli/speaker/list.rb +1 -1
  44. data/vendor/eac_cli/lib/eac_cli/speaker/options.rb +38 -0
  45. data/vendor/eac_cli/lib/eac_cli/version.rb +1 -1
  46. data/vendor/eac_cli/spec/lib/eac_cli/parser/alternative_spec.rb +1 -1
  47. data/vendor/eac_cli/spec/lib/eac_cli/runner_spec.rb +0 -1
  48. data/vendor/eac_cli/spec/lib/eac_cli/speaker_spec.rb +5 -9
  49. data/vendor/eac_config/Gemfile +5 -0
  50. data/vendor/eac_config/eac_config.gemspec +19 -0
  51. data/vendor/eac_config/lib/eac_config.rb +7 -0
  52. data/vendor/eac_config/lib/eac_config/entry.rb +49 -0
  53. data/vendor/eac_config/lib/eac_config/entry_path.rb +41 -0
  54. data/vendor/eac_config/lib/eac_config/envvars_node.rb +25 -0
  55. data/vendor/eac_config/lib/eac_config/envvars_node/entry.rb +54 -0
  56. data/vendor/eac_config/lib/eac_config/load_nodes_search.rb +39 -0
  57. data/vendor/eac_config/lib/eac_config/load_path.rb +28 -0
  58. data/vendor/eac_config/lib/eac_config/node.rb +67 -0
  59. data/vendor/eac_config/lib/eac_config/node_entry.rb +18 -0
  60. data/vendor/eac_config/lib/eac_config/node_uri.rb +38 -0
  61. data/vendor/eac_config/lib/eac_config/old_configs.rb +75 -0
  62. data/vendor/eac_config/lib/eac_config/old_configs/base.rb +43 -0
  63. data/vendor/eac_config/lib/eac_config/old_configs/file.rb +47 -0
  64. data/vendor/eac_config/lib/eac_config/paths_hash.rb +56 -0
  65. data/vendor/eac_config/lib/eac_config/paths_hash/entry_key_error.rb +8 -0
  66. data/vendor/eac_config/lib/eac_config/paths_hash/node.rb +67 -0
  67. data/vendor/eac_config/lib/eac_config/paths_hash/path_search.rb +39 -0
  68. data/vendor/eac_config/lib/eac_config/version.rb +5 -0
  69. data/vendor/eac_config/lib/eac_config/yaml_file_node.rb +48 -0
  70. data/vendor/eac_config/lib/eac_config/yaml_file_node/entry.rb +37 -0
  71. data/vendor/eac_config/spec/lib/eac_config/entry_path_spec.rb +30 -0
  72. data/vendor/eac_config/spec/lib/eac_config/envvars_node/entry_spec.rb +14 -0
  73. data/vendor/eac_config/spec/lib/eac_config/envvars_node_spec.rb +40 -0
  74. data/vendor/eac_config/spec/lib/eac_config/old_configs_spec.rb +46 -0
  75. data/vendor/eac_config/spec/lib/eac_config/paths_hash_spec.rb +88 -0
  76. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec.rb +52 -0
  77. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1.yaml +6 -0
  78. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_1.yaml +2 -0
  79. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_2.yaml +4 -0
  80. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_2/storage1_2_1.yaml +2 -0
  81. data/vendor/eac_config/spec/rubocop_spec.rb +3 -0
  82. data/vendor/eac_config/spec/spec_helper.rb +17 -0
  83. data/vendor/eac_ruby_base0/eac_ruby_base0.gemspec +2 -2
  84. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application.rb +23 -9
  85. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application_xdg.rb +34 -0
  86. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/jobs_runner.rb +2 -2
  87. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner.rb +19 -7
  88. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/confirmation.rb +8 -1
  89. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/version.rb +1 -1
  90. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/context.rb +31 -0
  91. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/contextualizable.rb +12 -7
  92. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/context.rb +11 -0
  93. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/speaker.rb +9 -0
  94. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/simple_cache.rb +10 -2
  95. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker.rb +16 -0
  96. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/receiver.rb +57 -0
  97. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/sender.rb +32 -0
  98. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
  99. data/vendor/{eac_cli/spec/lib → eac_ruby_utils/spec/lib/eac_ruby_utils/patches}/module/speaker_spec.rb +2 -2
  100. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/simple_cache_spec.rb +18 -0
  101. metadata +69 -18
  102. data/vendor/eac_cli/lib/eac_cli/docopt/doc_builder.rb +0 -71
  103. data/vendor/eac_cli/lib/eac_cli/docopt/doc_builder/alternative.rb +0 -50
  104. data/vendor/eac_cli/lib/eac_cli/docopt/runner_context_replacement.rb +0 -15
  105. data/vendor/eac_cli/lib/eac_cli/docopt/runner_extension.rb +0 -51
  106. data/vendor/eac_cli/lib/eac_cli/docopt_runner.rb +0 -43
  107. data/vendor/eac_cli/lib/eac_cli/docopt_runner/_class_methods.rb +0 -16
  108. data/vendor/eac_cli/lib/eac_cli/docopt_runner/_doc.rb +0 -23
  109. data/vendor/eac_cli/lib/eac_cli/docopt_runner/_settings.rb +0 -17
  110. data/vendor/eac_cli/lib/eac_cli/docopt_runner/_subcommands.rb +0 -152
  111. data/vendor/eac_cli/lib/eac_cli/patches/module/speaker.rb +0 -10
  112. data/vendor/eac_cli/lib/eac_cli/speaker/_class_methods.rb +0 -37
  113. data/vendor/eac_cli/lib/eac_cli/speaker/node.rb +0 -24
  114. data/vendor/eac_cli/spec/lib/eac_cli/docopt/runner_extension_spec.rb +0 -35
  115. data/vendor/eac_cli/spec/lib/eac_cli/docopt_runner_spec.rb +0 -136
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gemspec
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ $LOAD_PATH.push File.expand_path('lib', __dir__)
4
+
5
+ require 'eac_config/version'
6
+
7
+ Gem::Specification.new do |s|
8
+ s.name = 'eac_config'
9
+ s.version = EacConfig::VERSION
10
+ s.authors = ['Put here the authors']
11
+ s.summary = 'Put here de description.'
12
+
13
+ s.files = Dir['{lib}/**/*']
14
+
15
+ s.add_dependency 'addressable'
16
+ s.add_dependency 'eac_ruby_utils', '~> 0.64'
17
+
18
+ s.add_development_dependency 'eac_ruby_gem_support', '~> 0.2'
19
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module EacConfig
6
+ require_sub __FILE__
7
+ end
@@ -0,0 +1,49 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_config/entry_path'
4
+ require 'eac_ruby_utils/core_ext'
5
+
6
+ module EacConfig
7
+ class Entry
8
+ enable_simple_cache
9
+ common_constructor :root_node, :path do
10
+ self.path = ::EacConfig::EntryPath.assert(path)
11
+ end
12
+
13
+ def found?
14
+ node_entry.if_present(false, &:found?)
15
+ end
16
+
17
+ def found_node
18
+ node_entry.if_present(&:node)
19
+ end
20
+
21
+ def value
22
+ node_entry.if_present(&:value)
23
+ end
24
+
25
+ def value=(a_value)
26
+ write_node.self_entry(path).value = a_value
27
+ end
28
+
29
+ def write_node
30
+ root_node.write_node || root_node
31
+ end
32
+
33
+ private
34
+
35
+ def node_entry_uncached
36
+ node_entry_from_root || node_entry_from_load_path
37
+ end
38
+
39
+ def node_entry_from_load_path_uncached
40
+ root_node.recursive_loaded_nodes.lazy.map { |loaded_node| loaded_node.self_entry(path) }
41
+ .find(&:found?)
42
+ end
43
+
44
+ def node_entry_from_root_uncached
45
+ e = root_node.self_entry(path)
46
+ e.found? ? e : nil
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,41 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module EacConfig
6
+ class EntryPath
7
+ PART_SEPARATOR = '.'
8
+
9
+ class << self
10
+ def assert(source)
11
+ source.is_a?(self) ? source : new(build_parts(source))
12
+ end
13
+
14
+ def build_parts(source)
15
+ return validate_parts!(source.split(PART_SEPARATOR)) if source.is_a?(::String)
16
+ return validate_parts!(source.flat_map { |part| build_parts(part) }) if
17
+ source.is_a?(::Enumerable)
18
+
19
+ build_parts(source.to_s)
20
+ end
21
+
22
+ def validate_parts!(parts)
23
+ parts.assert_argument(::Enumerable, 'parts')
24
+ parts.each_with_index do |part, index|
25
+ raise ::ArgumentError, "Part #{index} of #{parts} is blank" if part.blank?
26
+ raise ::ArgumentError, "Part #{index} is not a string" unless part.is_a?(::String)
27
+ end
28
+ end
29
+ end
30
+
31
+ attr_reader :parts
32
+
33
+ def initialize(parts)
34
+ @parts = parts.to_a.freeze
35
+ end
36
+
37
+ def to_s
38
+ "#{self.class}[#{parts.join(PART_SEPARATOR)}]"
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'addressable'
4
+ require 'eac_config/node'
5
+ require 'eac_ruby_utils/core_ext'
6
+
7
+ module EacConfig
8
+ # A node that read/write entries from environment variables.
9
+ class EnvvarsNode
10
+ require_sub __FILE__
11
+ include ::EacConfig::Node
12
+
13
+ URI = ::Addressable::URI.parse('self://envvars')
14
+
15
+ class << self
16
+ def from_uri(uri)
17
+ return new if uri == URI
18
+ end
19
+ end
20
+
21
+ def url
22
+ URI
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,54 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_config/entry_path'
4
+ require 'eac_config/node_entry'
5
+ require 'eac_ruby_utils/blank_not_blank'
6
+ require 'eac_ruby_utils/core_ext'
7
+ require 'eac_ruby_utils/yaml'
8
+
9
+ module EacConfig
10
+ class EnvvarsNode
11
+ class Entry < ::EacConfig::NodeEntry
12
+ class << self
13
+ def entry_path_to_envvar_name(path)
14
+ ::EacConfig::EntryPath.assert(path).parts.join('_').gsub(/[^a-z0-9_]/i, '')
15
+ .gsub(/\A_+/, '').gsub(/_+\z/, '').gsub(/_{2,}/, '_').upcase
16
+ end
17
+
18
+ def from_value(string)
19
+ return nil if string.nil?
20
+ return ::EacRubyUtils::Yaml.load(string) if string.start_with?('---')
21
+
22
+ string
23
+ end
24
+
25
+ def to_value(object)
26
+ return nil if object.nil?
27
+ return object if object.is_a?(String)
28
+
29
+ ::EacRubyUtils::Yaml.dump(object)
30
+ end
31
+ end
32
+
33
+ enable_simple_cache
34
+
35
+ def found?
36
+ ENV.key?(envvar_name)
37
+ end
38
+
39
+ def value
40
+ self.class.from_value(ENV[envvar_name])
41
+ end
42
+
43
+ def value=(a_value)
44
+ ENV[envvar_name] = self.class.to_value(a_value)
45
+ end
46
+
47
+ private
48
+
49
+ def envvar_name_uncached
50
+ self.class.entry_path_to_envvar_name(path)
51
+ end
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module EacConfig
6
+ class LoadNodesSearch
7
+ common_constructor :root_node do
8
+ add_next_pending until pending.empty?
9
+ end
10
+
11
+ def result
12
+ added
13
+ end
14
+
15
+ private
16
+
17
+ def added
18
+ @added ||= []
19
+ end
20
+
21
+ def add_next_pending
22
+ current = pending.pop
23
+ current.self_loaded_nodes.each do |loaded_node|
24
+ next if added.include?(loaded_node)
25
+
26
+ added << loaded_node
27
+ pending.push(loaded_node)
28
+ end
29
+ end
30
+
31
+ def pending
32
+ @pending ||= begin
33
+ r = Queue.new
34
+ r.push(root_node)
35
+ r
36
+ end
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_config/entry_path'
4
+ require 'eac_ruby_utils/core_ext'
5
+
6
+ module EacConfig
7
+ class LoadPath
8
+ ENTRY_PATH = ::EacConfig::EntryPath.assert(%w[load_path])
9
+
10
+ common_constructor :node
11
+
12
+ def entry
13
+ node.self_entry(ENTRY_PATH)
14
+ end
15
+
16
+ # @return [Array<String>]
17
+ def paths
18
+ r = entry.value
19
+ r.is_a?(::Array) ? r : []
20
+ end
21
+
22
+ def push(new_path)
23
+ entry.value = paths + [new_path]
24
+ end
25
+
26
+ delegate :to_s, to: :paths
27
+ end
28
+ end
@@ -0,0 +1,67 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_config/entry'
4
+ require 'eac_config/entry_path'
5
+ require 'eac_config/load_path'
6
+ require 'eac_config/load_nodes_search'
7
+ require 'eac_config/node_entry'
8
+ require 'eac_config/node_uri'
9
+ require 'eac_ruby_utils/core_ext'
10
+ require 'eac_ruby_utils/context'
11
+
12
+ module EacConfig
13
+ module Node
14
+ class << self
15
+ def context
16
+ @context ||= ::EacRubyUtils::Context.new
17
+ end
18
+ end
19
+
20
+ attr_accessor :write_node
21
+
22
+ common_concern do
23
+ enable_abstract_methods
24
+ include ::Comparable
25
+ end
26
+
27
+ def entry(path)
28
+ ::EacConfig::Entry.new(self, path)
29
+ end
30
+
31
+ # @return [[EacConfig::IncludePath]]
32
+ def load_path
33
+ @load_path ||= ::EacConfig::LoadPath.new(self)
34
+ end
35
+
36
+ # @return [Addressable::URI]
37
+ def url
38
+ raise_abstract_method(__method__)
39
+ end
40
+
41
+ # Return a entry which search values only in the self node.
42
+ # @return [EacConfig::NodeEntry]
43
+ def self_entry(path)
44
+ self_entry_class.new(self, path)
45
+ end
46
+
47
+ def self_entry_class
48
+ self.class.const_get('Entry')
49
+ end
50
+
51
+ # @return [Array<EacConfig::Node>]
52
+ def self_loaded_nodes
53
+ load_path.paths.map { |node_path| load_node(node_path) }
54
+ end
55
+
56
+ # @return [Array<EacConfig::Node>]
57
+ def recursive_loaded_nodes
58
+ ::EacConfig::LoadNodesSearch.new(self).result
59
+ end
60
+
61
+ private
62
+
63
+ def load_node(node_path)
64
+ ::EacConfig::NodeUri.new(node_path, url).instanciate
65
+ end
66
+ end
67
+ end
@@ -0,0 +1,18 @@
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
+ # A entry which search values only in the source node.
9
+ class NodeEntry
10
+ enable_abstract_methods
11
+ enable_simple_cache
12
+ common_constructor :node, :path do
13
+ self.path = ::EacConfig::EntryPath.assert(path)
14
+ end
15
+
16
+ abstract_methods :found?, :value, :value=
17
+ end
18
+ end
@@ -0,0 +1,38 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EacConfig
4
+ class NodeUri
5
+ enable_simple_cache
6
+ common_constructor :source, :loader_uri, default: [nil]
7
+
8
+ def available_node_classes
9
+ require 'eac_config/envvars_node'
10
+ require 'eac_config/yaml_file_node'
11
+ [::EacConfig::EnvvarsNode, ::EacConfig::YamlFileNode]
12
+ end
13
+
14
+ def instanciate
15
+ available_node_classes.lazy.map { |k| k.from_uri(self) }.find(&:present?) ||
16
+ raise("No class mapped for \"#{to_addressable}\"")
17
+ end
18
+
19
+ delegate :to_s, to: :to_addressable
20
+
21
+ private
22
+
23
+ def to_addressable_uncached
24
+ r = ::Addressable::URI.parse(source)
25
+ path = r.path.to_pathname
26
+ r.path = path.expand_path(loader_uri_path_directory).to_path if path.relative?
27
+ r.scheme = 'file' if r.scheme.blank?
28
+ r
29
+ end
30
+
31
+ def loader_uri_path_directory
32
+ r = loader_uri.path
33
+ raise ".loader_uri \"#{loader_uri}\" has no path (Source: \"#{source}\")" if r.blank?
34
+
35
+ r.to_pathname.parent
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,75 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'active_support/core_ext/string'
4
+ require 'yaml'
5
+ require 'eac_config/old_configs/file'
6
+ require 'eac_ruby_utils/patches/hash/sym_keys_hash'
7
+ require 'eac_config/paths_hash'
8
+ require 'eac_ruby_utils/simple_cache'
9
+
10
+ module EacConfig
11
+ # @deprecated Use {EacConfig::YamlFileNode} instead.
12
+ class OldConfigs
13
+ include ::EacRubyUtils::SimpleCache
14
+
15
+ attr_reader :configs_key, :options
16
+
17
+ # Valid options: [:storage_path]
18
+ def initialize(configs_key, options = {})
19
+ @configs_key = configs_key
20
+ @options = options.to_sym_keys_hash.freeze
21
+ load
22
+ end
23
+
24
+ delegate :clear, to: :file
25
+
26
+ delegate :save, to: :file
27
+
28
+ delegate :load, to: :file
29
+
30
+ def []=(entry_key, entry_value)
31
+ write_entry(entry_key, entry_value)
32
+ end
33
+
34
+ def write_entry(entry_key, entry_value)
35
+ file.write(entry_key, entry_value)
36
+ end
37
+
38
+ def [](entry_key)
39
+ read_entry(entry_key)
40
+ end
41
+
42
+ def read_entry(entry_key)
43
+ file.read(entry_key)
44
+ end
45
+
46
+ delegate :autosave?, to: :file
47
+
48
+ private
49
+
50
+ attr_accessor :data
51
+
52
+ def file_uncached
53
+ ::EacConfig::OldConfigs::File.new(
54
+ storage_path, options
55
+ )
56
+ end
57
+
58
+ def storage_path_uncached
59
+ path = options_storage_path || default_storage_path
60
+ return path if ::File.exist?(path) && ::File.size(path).positive?
61
+
62
+ ::FileUtils.mkdir_p(::File.dirname(path))
63
+ ::File.write(path, {}.to_yaml)
64
+ path
65
+ end
66
+
67
+ def options_storage_path
68
+ options[:storage_path]
69
+ end
70
+
71
+ def default_storage_path
72
+ ::File.join(ENV['HOME'], '.config', configs_key, 'settings.yml')
73
+ end
74
+ end
75
+ end