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,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EacRubyUtils
4
+ class Context
5
+ def current
6
+ optional_current || raise('No elements in context')
7
+ end
8
+
9
+ def optional_current
10
+ stack.last
11
+ end
12
+
13
+ delegate :pop, to: :stack
14
+ delegate :push, to: :stack
15
+
16
+ def on(obj)
17
+ push(obj)
18
+ begin
19
+ yield
20
+ ensure
21
+ pop
22
+ end
23
+ end
24
+
25
+ private
26
+
27
+ def stack
28
+ @stack ||= []
29
+ end
30
+ end
31
+ end
@@ -1,16 +1,21 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'eac_ruby_utils/context'
4
+
3
5
  module EacRubyUtils
4
- # Provides the method context which search and call a method in self and ancestor objects.
5
6
  module Contextualizable
6
- def context(method)
7
- current = self
8
- while current
9
- return current.send(method) if current.respond_to?(method)
7
+ common_concern
8
+
9
+ module ClassMethods
10
+ def context
11
+ @context ||= ::EacRubyUtils::Context.new
12
+ end
13
+ end
10
14
 
11
- current = current.respond_to?(:parent) ? current.parent : nil
15
+ module InstanceMethods
16
+ def context
17
+ self.class.context
12
18
  end
13
- raise "Context method \"#{method}\" not found for #{self.class}"
14
19
  end
15
20
  end
16
21
  end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/patch'
4
+ require 'eac_ruby_utils/contextualizable'
5
+
6
+ class Module
7
+ # Patches module with [EacRubyUtils::Contextualizable].
8
+ def enable_context
9
+ ::EacRubyUtils.patch(self, ::EacRubyUtils::Contextualizable)
10
+ end
11
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/speaker/sender'
4
+
5
+ class Module
6
+ def enable_speaker
7
+ include ::EacRubyUtils::Speaker::Sender
8
+ end
9
+ end
@@ -3,11 +3,19 @@
3
3
  module EacRubyUtils
4
4
  module SimpleCache
5
5
  UNCACHED_METHOD_NAME_SUFFIX = '_uncached'
6
- UNCACHED_METHOD_PATTERN = /\A(\s+)_#{::Regexp.quote(UNCACHED_METHOD_NAME_SUFFIX)}\z/.freeze
6
+ UNCACHED_METHOD_PATTERN = /
7
+ \A(\s+)_#{::Regexp.quote(UNCACHED_METHOD_NAME_SUFFIX)}([\!\?]?)\z
8
+ /x.freeze
7
9
 
8
10
  class << self
9
11
  def uncached_method_name(method_name)
10
- "#{method_name}#{UNCACHED_METHOD_NAME_SUFFIX}"
12
+ method_name = method_name.to_s
13
+ end_mark = nil
14
+ if %w[! ?].any? { |mark| method_name.end_with?(mark) }
15
+ end_mark = method_name[-1]
16
+ method_name = method_name[0..-2]
17
+ end
18
+ "#{method_name}#{UNCACHED_METHOD_NAME_SUFFIX}#{end_mark}"
11
19
  end
12
20
  end
13
21
 
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/contextualizable'
4
+
5
+ module EacRubyUtils
6
+ module Speaker
7
+ include ::EacRubyUtils::Contextualizable
8
+
9
+ class << self
10
+ # @return [EacRubyUtils::Speaker::Receiver]
11
+ def current_receiver
12
+ context.current
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,57 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/abstract_methods'
4
+
5
+ module EacRubyUtils
6
+ module Speaker
7
+ module Receiver
8
+ extend ::EacRubyUtils::AbstractMethods
9
+
10
+ def error(_string)
11
+ raise_abstract_method(__FILE__)
12
+ end
13
+
14
+ def fatal_error(string)
15
+ error(string)
16
+ ::Kernel.exit 1 # rubocop:disable Rails/Exit
17
+ end
18
+
19
+ # @see EacRubyUtils::Speaker::Sender.input
20
+ def input(_question, _options = {})
21
+ raise_abstract_method(__FILE__)
22
+ end
23
+
24
+ def info(_string)
25
+ raise_abstract_method(__FILE__)
26
+ end
27
+
28
+ def infom(_string)
29
+ raise_abstract_method(__FILE__)
30
+ end
31
+
32
+ def infov(*_args)
33
+ raise_abstract_method(__FILE__)
34
+ end
35
+
36
+ def out(_string = '')
37
+ raise_abstract_method(__FILE__)
38
+ end
39
+
40
+ def puts(_string = '')
41
+ raise_abstract_method(__FILE__)
42
+ end
43
+
44
+ def success(_string)
45
+ raise_abstract_method(__FILE__)
46
+ end
47
+
48
+ def title(_string)
49
+ raise_abstract_method(__FILE__)
50
+ end
51
+
52
+ def warn(_string)
53
+ raise_abstract_method(__FILE__)
54
+ end
55
+ end
56
+ end
57
+ end
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EacRubyUtils
4
+ module Speaker
5
+ module Sender
6
+ delegate :error, :fatal_error, :info, :infom, :title, :success, :warn, to: :speaker_receiver
7
+
8
+ def infov(*args)
9
+ speaker_receiver.infov(*args)
10
+ end
11
+
12
+ delegate :out, to: :speaker_receiver
13
+
14
+ delegate :puts, to: :speaker_receiver
15
+
16
+ # Shortcut to [EacRubyUtils::Speaker.current_receiver].
17
+ #
18
+ # @return [EacRubyUtils::Speaker::Receiver]
19
+ def speaker_receiver
20
+ ::EacRubyUtils::Speaker.current_receiver
21
+ end
22
+
23
+ # Options:
24
+ # +bool+ ([Boolean], default: +false+): requires a answer "yes" or "no".
25
+ # +list+ ([Hash] or [Array], default: +nil+): requires a answer from a list.
26
+ # +noecho+ ([Boolean], default: +false+): does not output answer.
27
+ def input(question, options = {})
28
+ speaker_receiver.input(question, options)
29
+ end
30
+ end
31
+ end
32
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacRubyUtils
4
- VERSION = '0.64.0'
4
+ VERSION = '0.68.0'
5
5
  end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'eac_cli/patches/module/speaker'
3
+ require 'eac_ruby_utils/patches/module/speaker'
4
4
 
5
5
  RSpec.describe ::Module do
6
6
  class StubClass # rubocop:disable RSpec/LeakyConstantDeclaration
@@ -8,6 +8,6 @@ RSpec.describe ::Module do
8
8
  end
9
9
 
10
10
  describe '#enable_speaker' do
11
- it { expect(StubClass.included_modules).to include(::EacCli::Speaker) }
11
+ it { expect(StubClass.included_modules).to include(::EacRubyUtils::Speaker::Sender) }
12
12
  end
13
13
  end
@@ -10,6 +10,14 @@ class CacheableObject
10
10
  @counter += 1
11
11
  end
12
12
 
13
+ def method_with_question_uncached?
14
+ 'question'
15
+ end
16
+
17
+ def method_with_exclamation_uncached!
18
+ 'exclamation'
19
+ end
20
+
13
21
  def method_with_args_uncached(arg1)
14
22
  @counter2 ||= 0
15
23
  @counter2 += 1
@@ -74,6 +82,16 @@ RSpec.describe ::EacRubyUtils::SimpleCache do
74
82
  end
75
83
  end
76
84
 
85
+ describe 'method with marks' do
86
+ it 'found uncached method with exclamation mark' do
87
+ expect(instance.method_with_exclamation!).to eq('exclamation')
88
+ end
89
+
90
+ it 'found uncached method with question mark' do
91
+ expect(instance.method_with_question?).to eq('question')
92
+ end
93
+ end
94
+
77
95
  describe '#respond_to?' do
78
96
  it 'responds to cached method without args' do
79
97
  expect(instance.respond_to?(:my_method)).to be(true)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ehbrs-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.21.0
4
+ version: 0.22.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esquilo Azul Company
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-05-26 00:00:00.000000000 Z
11
+ date: 2021-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: avm-tools
@@ -154,6 +154,7 @@ files:
154
154
  - lib/ehbrs/cooking_book/recipe/ingredient.rb
155
155
  - lib/ehbrs/cooking_book/recipe/measure.rb
156
156
  - lib/ehbrs/cooking_book/recipe/part.rb
157
+ - lib/ehbrs/core_ext.rb
157
158
  - lib/ehbrs/executables.rb
158
159
  - lib/ehbrs/fs.rb
159
160
  - lib/ehbrs/fs/compressed_package.rb
@@ -166,6 +167,7 @@ files:
166
167
  - lib/ehbrs/observers.rb
167
168
  - lib/ehbrs/observers/base.rb
168
169
  - lib/ehbrs/observers/with_persistence.rb
170
+ - lib/ehbrs/patches.rb
169
171
  - lib/ehbrs/patches/module/erb_template.rb
170
172
  - lib/ehbrs/patches/object/erb_template.rb
171
173
  - lib/ehbrs/patches/object/template.rb
@@ -175,6 +177,7 @@ files:
175
177
  - lib/ehbrs/runner/finances.rb
176
178
  - lib/ehbrs/runner/finances/bb_browser.rb
177
179
  - lib/ehbrs/runner/fs.rb
180
+ - lib/ehbrs/runner/fs/selected.rb
178
181
  - lib/ehbrs/runner/fs/used_space.rb
179
182
  - lib/ehbrs/runner/google.rb
180
183
  - lib/ehbrs/runner/google/translate.rb
@@ -303,9 +306,27 @@ files:
303
306
  - vendor/aranha-selenium/lib/aranha/selenium/version.rb
304
307
  - vendor/aranha-selenium/spec/rubocop_check_spec.rb
305
308
  - vendor/aranha-selenium/spec/spec_helper.rb
309
+ - vendor/avm-apps/Gemfile
310
+ - vendor/avm-apps/avm-apps.gemspec
311
+ - vendor/avm-apps/lib/avm/apps.rb
312
+ - vendor/avm-apps/lib/avm/apps/config.rb
313
+ - vendor/avm-apps/lib/avm/apps/jobs.rb
314
+ - vendor/avm-apps/lib/avm/apps/jobs/base.rb
315
+ - vendor/avm-apps/lib/avm/apps/jobs/variables_source.rb
316
+ - vendor/avm-apps/lib/avm/apps/sources/configuration.rb
317
+ - vendor/avm-apps/lib/avm/apps/sources/configuration/_locale.rb
318
+ - vendor/avm-apps/lib/avm/apps/sources/configuration/_rubocop.rb
319
+ - vendor/avm-apps/lib/avm/apps/sources/configuration/_tests.rb
320
+ - vendor/avm-apps/lib/avm/apps/version.rb
321
+ - vendor/avm-apps/spec/rubocop_spec.rb
322
+ - vendor/avm-apps/spec/spec_helper.rb
306
323
  - vendor/eac_cli/Gemfile
307
324
  - vendor/eac_cli/eac_cli.gemspec
308
325
  - vendor/eac_cli/lib/eac_cli.rb
326
+ - vendor/eac_cli/lib/eac_cli/config.rb
327
+ - vendor/eac_cli/lib/eac_cli/config/entry.rb
328
+ - vendor/eac_cli/lib/eac_cli/config/entry/options.rb
329
+ - vendor/eac_cli/lib/eac_cli/config/entry/undefined.rb
309
330
  - vendor/eac_cli/lib/eac_cli/core_ext.rb
310
331
  - vendor/eac_cli/lib/eac_cli/default_runner.rb
311
332
  - vendor/eac_cli/lib/eac_cli/definition.rb
@@ -316,20 +337,12 @@ files:
316
337
  - vendor/eac_cli/lib/eac_cli/definition/boolean_option.rb
317
338
  - vendor/eac_cli/lib/eac_cli/definition/help_formatter.rb
318
339
  - vendor/eac_cli/lib/eac_cli/definition/positional_argument.rb
319
- - vendor/eac_cli/lib/eac_cli/docopt/doc_builder.rb
320
- - vendor/eac_cli/lib/eac_cli/docopt/doc_builder/alternative.rb
321
- - vendor/eac_cli/lib/eac_cli/docopt/runner_context_replacement.rb
322
- - vendor/eac_cli/lib/eac_cli/docopt/runner_extension.rb
323
- - vendor/eac_cli/lib/eac_cli/docopt_runner.rb
324
- - vendor/eac_cli/lib/eac_cli/docopt_runner/_class_methods.rb
325
- - vendor/eac_cli/lib/eac_cli/docopt_runner/_doc.rb
326
- - vendor/eac_cli/lib/eac_cli/docopt_runner/_settings.rb
327
- - vendor/eac_cli/lib/eac_cli/docopt_runner/_subcommands.rb
328
340
  - vendor/eac_cli/lib/eac_cli/old_configs.rb
329
341
  - vendor/eac_cli/lib/eac_cli/old_configs/entry_reader.rb
330
342
  - vendor/eac_cli/lib/eac_cli/old_configs/password_entry_reader.rb
331
343
  - vendor/eac_cli/lib/eac_cli/old_configs/read_entry_options.rb
332
344
  - vendor/eac_cli/lib/eac_cli/old_configs/store_passwords_entry_reader.rb
345
+ - vendor/eac_cli/lib/eac_cli/old_configs_bridge.rb
333
346
  - vendor/eac_cli/lib/eac_cli/parser.rb
334
347
  - vendor/eac_cli/lib/eac_cli/parser/alternative.rb
335
348
  - vendor/eac_cli/lib/eac_cli/parser/alternative/argv.rb
@@ -342,8 +355,6 @@ files:
342
355
  - vendor/eac_cli/lib/eac_cli/parser/collector.rb
343
356
  - vendor/eac_cli/lib/eac_cli/parser/error.rb
344
357
  - vendor/eac_cli/lib/eac_cli/patches.rb
345
- - vendor/eac_cli/lib/eac_cli/patches/module.rb
346
- - vendor/eac_cli/lib/eac_cli/patches/module/speaker.rb
347
358
  - vendor/eac_cli/lib/eac_cli/patches/object.rb
348
359
  - vendor/eac_cli/lib/eac_cli/patches/object/runner_with.rb
349
360
  - vendor/eac_cli/lib/eac_cli/runner.rb
@@ -353,27 +364,59 @@ files:
353
364
  - vendor/eac_cli/lib/eac_cli/runner/instance_methods.rb
354
365
  - vendor/eac_cli/lib/eac_cli/runner_with.rb
355
366
  - vendor/eac_cli/lib/eac_cli/runner_with/help.rb
367
+ - vendor/eac_cli/lib/eac_cli/runner_with/help/builder.rb
368
+ - vendor/eac_cli/lib/eac_cli/runner_with/help/builder/alternative.rb
356
369
  - vendor/eac_cli/lib/eac_cli/runner_with/subcommands.rb
357
370
  - vendor/eac_cli/lib/eac_cli/runner_with/subcommands/definition_concern.rb
358
371
  - vendor/eac_cli/lib/eac_cli/runner_with_set.rb
359
372
  - vendor/eac_cli/lib/eac_cli/speaker.rb
360
- - vendor/eac_cli/lib/eac_cli/speaker/_class_methods.rb
361
373
  - vendor/eac_cli/lib/eac_cli/speaker/_constants.rb
362
374
  - vendor/eac_cli/lib/eac_cli/speaker/list.rb
363
- - vendor/eac_cli/lib/eac_cli/speaker/node.rb
375
+ - vendor/eac_cli/lib/eac_cli/speaker/options.rb
364
376
  - vendor/eac_cli/lib/eac_cli/version.rb
365
377
  - vendor/eac_cli/spec/lib/eac_cli/definition/alternative_spec.rb
366
- - vendor/eac_cli/spec/lib/eac_cli/docopt/runner_extension_spec.rb
367
- - vendor/eac_cli/spec/lib/eac_cli/docopt_runner_spec.rb
368
378
  - vendor/eac_cli/spec/lib/eac_cli/old_configs_spec.rb
369
379
  - vendor/eac_cli/spec/lib/eac_cli/parser/alternative_spec.rb
370
380
  - vendor/eac_cli/spec/lib/eac_cli/runner_spec.rb
371
381
  - vendor/eac_cli/spec/lib/eac_cli/runner_with/help_spec.rb
372
382
  - vendor/eac_cli/spec/lib/eac_cli/runner_with/subcommands_spec.rb
373
383
  - vendor/eac_cli/spec/lib/eac_cli/speaker_spec.rb
374
- - vendor/eac_cli/spec/lib/module/speaker_spec.rb
375
384
  - vendor/eac_cli/spec/rubocop_spec.rb
376
385
  - vendor/eac_cli/spec/spec_helper.rb
386
+ - vendor/eac_config/Gemfile
387
+ - vendor/eac_config/eac_config.gemspec
388
+ - vendor/eac_config/lib/eac_config.rb
389
+ - vendor/eac_config/lib/eac_config/entry.rb
390
+ - vendor/eac_config/lib/eac_config/entry_path.rb
391
+ - vendor/eac_config/lib/eac_config/envvars_node.rb
392
+ - vendor/eac_config/lib/eac_config/envvars_node/entry.rb
393
+ - vendor/eac_config/lib/eac_config/load_nodes_search.rb
394
+ - vendor/eac_config/lib/eac_config/load_path.rb
395
+ - vendor/eac_config/lib/eac_config/node.rb
396
+ - vendor/eac_config/lib/eac_config/node_entry.rb
397
+ - vendor/eac_config/lib/eac_config/node_uri.rb
398
+ - vendor/eac_config/lib/eac_config/old_configs.rb
399
+ - vendor/eac_config/lib/eac_config/old_configs/base.rb
400
+ - vendor/eac_config/lib/eac_config/old_configs/file.rb
401
+ - vendor/eac_config/lib/eac_config/paths_hash.rb
402
+ - vendor/eac_config/lib/eac_config/paths_hash/entry_key_error.rb
403
+ - vendor/eac_config/lib/eac_config/paths_hash/node.rb
404
+ - vendor/eac_config/lib/eac_config/paths_hash/path_search.rb
405
+ - vendor/eac_config/lib/eac_config/version.rb
406
+ - vendor/eac_config/lib/eac_config/yaml_file_node.rb
407
+ - vendor/eac_config/lib/eac_config/yaml_file_node/entry.rb
408
+ - vendor/eac_config/spec/lib/eac_config/entry_path_spec.rb
409
+ - vendor/eac_config/spec/lib/eac_config/envvars_node/entry_spec.rb
410
+ - vendor/eac_config/spec/lib/eac_config/envvars_node_spec.rb
411
+ - vendor/eac_config/spec/lib/eac_config/old_configs_spec.rb
412
+ - vendor/eac_config/spec/lib/eac_config/paths_hash_spec.rb
413
+ - vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec.rb
414
+ - vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1.yaml
415
+ - vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_1.yaml
416
+ - vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_2.yaml
417
+ - vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_2/storage1_2_1.yaml
418
+ - vendor/eac_config/spec/rubocop_spec.rb
419
+ - vendor/eac_config/spec/spec_helper.rb
377
420
  - vendor/eac_docker/Gemfile
378
421
  - vendor/eac_docker/eac_docker.gemspec
379
422
  - vendor/eac_docker/lib/eac_docker.rb
@@ -398,6 +441,7 @@ files:
398
441
  - vendor/eac_ruby_base0/eac_ruby_base0.gemspec
399
442
  - vendor/eac_ruby_base0/lib/eac_ruby_base0.rb
400
443
  - vendor/eac_ruby_base0/lib/eac_ruby_base0/application.rb
444
+ - vendor/eac_ruby_base0/lib/eac_ruby_base0/application_xdg.rb
401
445
  - vendor/eac_ruby_base0/lib/eac_ruby_base0/core_ext.rb
402
446
  - vendor/eac_ruby_base0/lib/eac_ruby_base0/jobs_runner.rb
403
447
  - vendor/eac_ruby_base0/lib/eac_ruby_base0/patches.rb
@@ -434,6 +478,7 @@ files:
434
478
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/common_constructor/class_initialize.rb
435
479
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/common_constructor/instance_initialize.rb
436
480
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/common_constructor/super_args.rb
481
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/context.rb
437
482
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/contextualizable.rb
438
483
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/core_ext.rb
439
484
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/custom_format.rb
@@ -503,11 +548,13 @@ files:
503
548
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module.rb
504
549
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/abstract_methods.rb
505
550
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/common_concern.rb
551
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/context.rb
506
552
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/immutable.rb
507
553
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/listable.rb
508
554
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/patch.rb
509
555
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/require_sub.rb
510
556
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/simple_cache.rb
557
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/speaker.rb
511
558
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/object.rb
512
559
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/object/asserts.rb
513
560
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/object/debug.rb
@@ -535,6 +582,9 @@ files:
535
582
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/settings_provider.rb
536
583
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/settings_provider/setting_value.rb
537
584
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/simple_cache.rb
585
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker.rb
586
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/receiver.rb
587
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/sender.rb
538
588
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/struct.rb
539
589
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/version.rb
540
590
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/yaml.rb
@@ -561,6 +611,7 @@ files:
561
611
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/hash/sym_keys_hash_spec.rb
562
612
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/module/listable_spec.rb
563
613
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/module/simple_cache_spec.rb
614
+ - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/module/speaker_spec.rb
564
615
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/object/if_present_spec.rb
565
616
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/object/template_spec_files/path/my_stub_with_template
566
617
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/pathname/basename_sub_spec.rb