ehbrs-tools 0.21.0 → 0.24.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (213) hide show
  1. checksums.yaml +4 -4
  2. data/exe/ehbrs +2 -2
  3. data/lib/ehbrs/core_ext.rb +4 -0
  4. data/lib/ehbrs/music/album.rb +2 -0
  5. data/{vendor/eac_cli/lib/eac_cli/patches/module.rb → lib/ehbrs/patches.rb} +1 -1
  6. data/lib/ehbrs/tools/runner.rb +21 -0
  7. data/lib/ehbrs/tools/runner/cooking_book.rb +32 -0
  8. data/lib/ehbrs/tools/runner/cooking_book/build.rb +52 -0
  9. data/lib/ehbrs/{runner/videos/series.rb → tools/runner/finances.rb} +4 -4
  10. data/lib/ehbrs/tools/runner/finances/bb_browser.rb +66 -0
  11. data/lib/ehbrs/tools/runner/fs.rb +18 -0
  12. data/lib/ehbrs/tools/runner/fs/selected.rb +81 -0
  13. data/lib/ehbrs/tools/runner/fs/used_space.rb +161 -0
  14. data/lib/ehbrs/tools/runner/google.rb +18 -0
  15. data/lib/ehbrs/tools/runner/google/translate.rb +89 -0
  16. data/lib/ehbrs/tools/runner/music.rb +18 -0
  17. data/lib/ehbrs/tools/runner/music/selected.rb +28 -0
  18. data/lib/ehbrs/tools/runner/self.rb +18 -0
  19. data/lib/ehbrs/tools/runner/self/test.rb +27 -0
  20. data/lib/ehbrs/tools/runner/telegram.rb +28 -0
  21. data/lib/ehbrs/tools/runner/telegram/send_message.rb +31 -0
  22. data/lib/ehbrs/tools/runner/vg.rb +18 -0
  23. data/lib/ehbrs/tools/runner/vg/ips.rb +134 -0
  24. data/lib/ehbrs/tools/runner/vg/wii.rb +74 -0
  25. data/lib/ehbrs/{runner/web_utils → tools/runner}/videos.rb +3 -3
  26. data/lib/ehbrs/tools/runner/videos/extract.rb +70 -0
  27. data/lib/ehbrs/tools/runner/videos/probe.rb +34 -0
  28. data/lib/ehbrs/tools/runner/videos/series.rb +20 -0
  29. data/lib/ehbrs/tools/runner/videos/series/rename.rb +74 -0
  30. data/lib/ehbrs/tools/runner/videos/unsupported.rb +61 -0
  31. data/lib/ehbrs/tools/runner/web_utils.rb +26 -0
  32. data/lib/ehbrs/tools/runner/web_utils/videos.rb +20 -0
  33. data/lib/ehbrs/tools/runner/web_utils/videos/download.rb +65 -0
  34. data/lib/ehbrs/tools/runner/web_utils/videos/upload.rb +77 -0
  35. data/lib/ehbrs/tools/version.rb +1 -1
  36. data/lib/ehbrs/vg/wii/game_file.rb +10 -0
  37. data/lib/ehbrs/videos/unsupported/check_support.rb +12 -8
  38. data/vendor/aranha-parsers/aranha-parsers.gemspec +2 -2
  39. data/vendor/aranha-parsers/lib/aranha/parsers/rspec.rb +11 -0
  40. data/vendor/aranha-parsers/lib/aranha/parsers/rspec/setup_include.rb +17 -0
  41. data/vendor/aranha-parsers/lib/aranha/parsers/{spec → rspec}/source_target_fixtures_example.rb +0 -0
  42. data/vendor/aranha-parsers/lib/aranha/parsers/source_address.rb +10 -8
  43. data/vendor/aranha-parsers/lib/aranha/parsers/version.rb +1 -1
  44. data/vendor/aranha-parsers/spec/lib/rubocop_check_spec.rb +1 -5
  45. data/vendor/aranha-parsers/spec/spec_helper.rb +2 -6
  46. data/vendor/aranha-selenium/aranha-selenium.gemspec +2 -2
  47. data/vendor/aranha-selenium/lib/aranha/selenium/version.rb +1 -1
  48. data/vendor/aranha-selenium/spec/rubocop_check_spec.rb +1 -5
  49. data/vendor/aranha-selenium/spec/spec_helper.rb +2 -98
  50. data/vendor/eac_cli/eac_cli.gemspec +3 -4
  51. data/vendor/eac_cli/lib/eac_cli/config.rb +18 -0
  52. data/vendor/eac_cli/lib/eac_cli/config/entry.rb +46 -0
  53. data/vendor/eac_cli/lib/eac_cli/config/entry/options.rb +57 -0
  54. data/vendor/eac_cli/lib/eac_cli/config/entry/undefined.rb +26 -0
  55. data/vendor/eac_cli/lib/eac_cli/definition/help_formatter.rb +3 -2
  56. data/vendor/eac_cli/lib/eac_cli/definition/positional_argument.rb +6 -1
  57. data/vendor/eac_cli/lib/eac_cli/old_configs.rb +0 -1
  58. data/vendor/eac_cli/lib/eac_cli/old_configs/entry_reader.rb +2 -2
  59. data/vendor/eac_cli/lib/eac_cli/old_configs_bridge.rb +39 -0
  60. data/vendor/eac_cli/lib/eac_cli/runner.rb +0 -2
  61. data/vendor/eac_cli/lib/eac_cli/runner/after_class_methods.rb +20 -3
  62. data/vendor/eac_cli/lib/eac_cli/runner/instance_methods.rb +5 -1
  63. data/vendor/eac_cli/lib/eac_cli/runner_with/help.rb +9 -4
  64. data/vendor/eac_cli/lib/eac_cli/runner_with/help/builder.rb +73 -0
  65. data/vendor/eac_cli/lib/eac_cli/runner_with/help/builder/alternative.rb +56 -0
  66. data/vendor/eac_cli/lib/eac_cli/runner_with/subcommands.rb +6 -4
  67. data/vendor/eac_cli/lib/eac_cli/speaker.rb +15 -19
  68. data/vendor/eac_cli/lib/eac_cli/speaker/_constants.rb +1 -1
  69. data/vendor/eac_cli/lib/eac_cli/speaker/list.rb +1 -1
  70. data/vendor/eac_cli/lib/eac_cli/speaker/options.rb +38 -0
  71. data/vendor/eac_cli/lib/eac_cli/version.rb +1 -1
  72. data/vendor/eac_cli/spec/lib/eac_cli/parser/alternative_spec.rb +1 -1
  73. data/vendor/eac_cli/spec/lib/eac_cli/runner_spec.rb +0 -1
  74. data/vendor/eac_cli/spec/lib/eac_cli/speaker_spec.rb +5 -9
  75. data/vendor/eac_cli/spec/rubocop_spec.rb +1 -1
  76. data/vendor/eac_cli/spec/spec_helper.rb +2 -101
  77. data/vendor/eac_config/Gemfile +5 -0
  78. data/vendor/eac_config/eac_config.gemspec +19 -0
  79. data/vendor/eac_config/lib/eac_config.rb +7 -0
  80. data/vendor/eac_config/lib/eac_config/entry.rb +49 -0
  81. data/vendor/eac_config/lib/eac_config/entry_path.rb +41 -0
  82. data/vendor/eac_config/lib/eac_config/envvars_node.rb +25 -0
  83. data/vendor/eac_config/lib/eac_config/envvars_node/entry.rb +54 -0
  84. data/vendor/eac_config/lib/eac_config/load_nodes_search.rb +39 -0
  85. data/vendor/eac_config/lib/eac_config/load_path.rb +28 -0
  86. data/vendor/eac_config/lib/eac_config/node.rb +67 -0
  87. data/vendor/eac_config/lib/eac_config/node_entry.rb +18 -0
  88. data/vendor/eac_config/lib/eac_config/node_uri.rb +38 -0
  89. data/vendor/eac_config/lib/eac_config/old_configs.rb +75 -0
  90. data/vendor/eac_config/lib/eac_config/old_configs/base.rb +43 -0
  91. data/vendor/eac_config/lib/eac_config/old_configs/file.rb +47 -0
  92. data/vendor/eac_config/lib/eac_config/paths_hash.rb +56 -0
  93. data/vendor/eac_config/lib/eac_config/paths_hash/entry_key_error.rb +8 -0
  94. data/vendor/eac_config/lib/eac_config/paths_hash/node.rb +67 -0
  95. data/vendor/eac_config/lib/eac_config/paths_hash/path_search.rb +39 -0
  96. data/vendor/eac_config/lib/eac_config/version.rb +5 -0
  97. data/vendor/eac_config/lib/eac_config/yaml_file_node.rb +48 -0
  98. data/vendor/eac_config/lib/eac_config/yaml_file_node/entry.rb +37 -0
  99. data/vendor/eac_config/spec/lib/eac_config/entry_path_spec.rb +30 -0
  100. data/vendor/eac_config/spec/lib/eac_config/envvars_node/entry_spec.rb +14 -0
  101. data/vendor/eac_config/spec/lib/eac_config/envvars_node_spec.rb +40 -0
  102. data/vendor/eac_config/spec/lib/eac_config/old_configs_spec.rb +46 -0
  103. data/vendor/eac_config/spec/lib/eac_config/paths_hash_spec.rb +88 -0
  104. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec.rb +52 -0
  105. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1.yaml +6 -0
  106. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_1.yaml +2 -0
  107. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_2.yaml +4 -0
  108. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_2/storage1_2_1.yaml +2 -0
  109. data/vendor/eac_config/spec/rubocop_spec.rb +3 -0
  110. data/vendor/eac_config/spec/spec_helper.rb +4 -0
  111. data/vendor/eac_docker/eac_docker.gemspec +2 -2
  112. data/vendor/eac_docker/lib/eac_docker/container.rb +7 -3
  113. data/vendor/eac_docker/lib/eac_docker/debug.rb +15 -0
  114. data/vendor/eac_docker/lib/eac_docker/images/coded.rb +4 -0
  115. data/vendor/eac_docker/lib/eac_docker/images/templatized.rb +16 -2
  116. data/vendor/eac_docker/lib/eac_docker/rspec.rb +2 -10
  117. data/vendor/eac_docker/lib/eac_docker/rspec/setup_include.rb +23 -0
  118. data/vendor/eac_docker/lib/eac_docker/version.rb +1 -1
  119. data/vendor/eac_docker/spec/rubocop_spec.rb +1 -1
  120. data/vendor/eac_docker/spec/spec_helper.rb +2 -104
  121. data/vendor/eac_ruby_base0/eac_ruby_base0.gemspec +4 -4
  122. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application.rb +23 -9
  123. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application_xdg.rb +34 -0
  124. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/jobs_runner.rb +2 -2
  125. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner.rb +19 -7
  126. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/confirmation.rb +8 -1
  127. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/version.rb +1 -1
  128. data/vendor/eac_ruby_base0/spec/rubocop_spec.rb +1 -1
  129. data/vendor/eac_ruby_base0/spec/spec_helper.rb +2 -101
  130. data/vendor/eac_ruby_utils/eac_ruby_utils.gemspec +1 -1
  131. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/boolean.rb +1 -1
  132. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/context.rb +31 -0
  133. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/contextualizable.rb +12 -7
  134. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/envs/executable.rb +15 -3
  135. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/gems_registry.rb +36 -0
  136. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/gems_registry/gem.rb +39 -0
  137. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/context.rb +11 -0
  138. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/speaker.rb +9 -0
  139. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/pathname/parent_n.rb +11 -0
  140. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/default_setup.rb +18 -0
  141. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/setup.rb +45 -0
  142. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/simple_cache.rb +10 -2
  143. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker.rb +16 -0
  144. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/receiver.rb +57 -0
  145. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/sender.rb +32 -0
  146. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
  147. data/vendor/{eac_cli/spec/lib → eac_ruby_utils/spec/lib/eac_ruby_utils/patches}/module/speaker_spec.rb +2 -2
  148. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/pathname/parent_n_spec.rb +33 -0
  149. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/simple_cache_spec.rb +18 -0
  150. data/vendor/eac_ruby_utils/spec/rubocop_check_spec.rb +1 -1
  151. data/vendor/eac_ruby_utils/spec/spec_helper.rb +6 -6
  152. data/vendor/ehbrs_ruby_utils/ehbrs_ruby_utils.gemspec +4 -2
  153. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/finances/bb_browser/docker_image.rb +18 -0
  154. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/patches/object/template.rb +6 -0
  155. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/version.rb +1 -1
  156. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/videos/stream.rb +11 -1
  157. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec.rb +13 -0
  158. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_attachment.source.yaml +28 -0
  159. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_attachment.target.yaml +7 -0
  160. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_audio.source.yaml +49 -0
  161. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_audio.target.yaml +7 -0
  162. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_subtitle.source.yaml +43 -0
  163. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_subtitle.target.yaml +7 -0
  164. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_video.source.yaml +59 -0
  165. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_video.target.yaml +7 -0
  166. data/vendor/ehbrs_ruby_utils/spec/rubocop_check_spec.rb +1 -5
  167. data/vendor/ehbrs_ruby_utils/spec/spec_helper.rb +2 -98
  168. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/Dockerfile +44 -0
  169. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/Makefile +35 -0
  170. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/README.md +16 -0
  171. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/context/firefox.service +8 -0
  172. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/context/startbrowser.sh +9 -0
  173. metadata +115 -52
  174. data/lib/ehbrs/runner.rb +0 -19
  175. data/lib/ehbrs/runner/cooking_book.rb +0 -30
  176. data/lib/ehbrs/runner/cooking_book/build.rb +0 -50
  177. data/lib/ehbrs/runner/finances.rb +0 -16
  178. data/lib/ehbrs/runner/finances/bb_browser.rb +0 -35
  179. data/lib/ehbrs/runner/fs.rb +0 -16
  180. data/lib/ehbrs/runner/fs/used_space.rb +0 -160
  181. data/lib/ehbrs/runner/google.rb +0 -16
  182. data/lib/ehbrs/runner/google/translate.rb +0 -87
  183. data/lib/ehbrs/runner/music.rb +0 -16
  184. data/lib/ehbrs/runner/music/selected.rb +0 -63
  185. data/lib/ehbrs/runner/self.rb +0 -16
  186. data/lib/ehbrs/runner/self/test.rb +0 -25
  187. data/lib/ehbrs/runner/telegram.rb +0 -26
  188. data/lib/ehbrs/runner/telegram/send_message.rb +0 -29
  189. data/lib/ehbrs/runner/vg.rb +0 -16
  190. data/lib/ehbrs/runner/vg/ips.rb +0 -132
  191. data/lib/ehbrs/runner/vg/wii.rb +0 -72
  192. data/lib/ehbrs/runner/videos.rb +0 -16
  193. data/lib/ehbrs/runner/videos/extract.rb +0 -68
  194. data/lib/ehbrs/runner/videos/probe.rb +0 -32
  195. data/lib/ehbrs/runner/videos/series/rename.rb +0 -72
  196. data/lib/ehbrs/runner/videos/unsupported.rb +0 -59
  197. data/lib/ehbrs/runner/web_utils.rb +0 -24
  198. data/lib/ehbrs/runner/web_utils/videos/download.rb +0 -63
  199. data/lib/ehbrs/runner/web_utils/videos/upload.rb +0 -75
  200. data/vendor/eac_cli/lib/eac_cli/docopt/doc_builder.rb +0 -71
  201. data/vendor/eac_cli/lib/eac_cli/docopt/doc_builder/alternative.rb +0 -50
  202. data/vendor/eac_cli/lib/eac_cli/docopt/runner_context_replacement.rb +0 -15
  203. data/vendor/eac_cli/lib/eac_cli/docopt/runner_extension.rb +0 -51
  204. data/vendor/eac_cli/lib/eac_cli/docopt_runner.rb +0 -43
  205. data/vendor/eac_cli/lib/eac_cli/docopt_runner/_class_methods.rb +0 -16
  206. data/vendor/eac_cli/lib/eac_cli/docopt_runner/_doc.rb +0 -23
  207. data/vendor/eac_cli/lib/eac_cli/docopt_runner/_settings.rb +0 -17
  208. data/vendor/eac_cli/lib/eac_cli/docopt_runner/_subcommands.rb +0 -152
  209. data/vendor/eac_cli/lib/eac_cli/patches/module/speaker.rb +0 -10
  210. data/vendor/eac_cli/lib/eac_cli/speaker/_class_methods.rb +0 -37
  211. data/vendor/eac_cli/lib/eac_cli/speaker/node.rb +0 -24
  212. data/vendor/eac_cli/spec/lib/eac_cli/docopt/runner_extension_spec.rb +0 -35
  213. data/vendor/eac_cli/spec/lib/eac_cli/docopt_runner_spec.rb +0 -136
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module EacCli
6
+ class Config
7
+ class Entry
8
+ module Undefined
9
+ private
10
+
11
+ def undefined_value
12
+ loop do
13
+ entry_value = undefined_value_no_loop
14
+ next unless options[:validator].if_present(true) { |v| v.call(entry_value) }
15
+
16
+ return entry_value
17
+ end
18
+ end
19
+
20
+ def undefined_value_no_loop
21
+ input("Value for entry \"#{path}\"", options.request_input_options)
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'eac_cli/runner_with/help/builder/alternative'
3
4
  require 'eac_ruby_utils/core_ext'
4
5
 
5
6
  module EacCli
@@ -27,7 +28,7 @@ module EacCli
27
28
 
28
29
  def positional_argument(positional)
29
30
  if positional.subcommand?
30
- ::EacCli::DocoptRunner::SUBCOMMANDS_MACRO
31
+ ::EacCli::RunnerWith::Help::Builder::Alternative::SUBCOMMANDS_MACRO
31
32
  else
32
33
  r = "<#{positional.name}>"
33
34
  r += '...' if positional.repeat?
@@ -52,7 +53,7 @@ module EacCli
52
53
  end
53
54
 
54
55
  def self_usage_arguments
55
- [::EacCli::DocoptRunner::PROGRAM_MACRO] +
56
+ [::EacCli::RunnerWith::Help::Builder::Alternative::PROGRAM_MACRO] +
56
57
  definition.options_argument.if_present([]) { |_v| ['[options]'] } +
57
58
  self_usage_arguments_options +
58
59
  self_usage_arguments_positional
@@ -6,9 +6,10 @@ module EacCli
6
6
  class Definition
7
7
  class PositionalArgument
8
8
  DEFAULT_REQUIRED = true
9
+ DEFAULT_VISIBLE = true
9
10
 
10
11
  enable_listable
11
- lists.add_symbol :option, :optional, :repeat, :required, :subcommand
12
+ lists.add_symbol :option, :optional, :repeat, :required, :subcommand, :visible
12
13
  common_constructor :name, :options, default: [{}] do
13
14
  options.assert_valid_keys(self.class.lists.option.values)
14
15
  end
@@ -51,6 +52,10 @@ module EacCli
51
52
  def to_s
52
53
  "#{self.class.name.demodulize}[#{identifier}]"
53
54
  end
55
+
56
+ def visible?
57
+ options.key?(OPTION_VISIBLE) ? options.fetch(OPTION_VISIBLE) : DEFAULT_VISIBLE
58
+ end
54
59
  end
55
60
  end
56
61
  end
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'eac_ruby_utils/core_ext'
4
- require 'eac_cli/patches/module/speaker'
5
4
 
6
5
  module EacCli
7
6
  class OldConfigs
@@ -70,8 +70,8 @@ module EacCli
70
70
  end
71
71
 
72
72
  def entry_value_from_input(entry_key, options)
73
- entry_value = request_input("Value for entry \"#{entry_key}\"",
74
- options.request_input_options)
73
+ entry_value = input("Value for entry \"#{entry_key}\"",
74
+ options.request_input_options)
75
75
  warn('Entered value is blank') if entry_value.blank?
76
76
  entry_value
77
77
  end
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/config'
4
+ require 'eac_config/envvars_node'
5
+ require 'eac_config/yaml_file_node'
6
+ require 'eac_ruby_utils/core_ext'
7
+
8
+ module EacCli
9
+ class OldConfigsBridge < ::EacCli::Config
10
+ ENTRY_KEY = 'core.store_passwords'
11
+
12
+ class << self
13
+ def new_configs_path(configs_key, options)
14
+ options[:storage_path] || ::File.join(ENV['HOME'], '.config', configs_key, 'settings.yml')
15
+ end
16
+ end
17
+
18
+ def initialize(configs_key, options = {})
19
+ options.assert_argument(::Hash, 'options')
20
+ envvar_node = ::EacConfig::EnvvarsNode.new
21
+ file_node = ::EacConfig::YamlFileNode.new(self.class.new_configs_path(configs_key, options))
22
+ envvar_node.load_path.push(file_node.url)
23
+ envvar_node.write_node = file_node
24
+ super(envvar_node)
25
+ end
26
+
27
+ def read_entry(entry_key, options = {})
28
+ entry(entry_key, options).value
29
+ end
30
+
31
+ def read_password(entry_key, options = {})
32
+ entry(entry_key, options.merge(noecho: true, store: store_passwords?)).value
33
+ end
34
+
35
+ def store_passwords?
36
+ read_entry(ENTRY_KEY, bool: true)
37
+ end
38
+ end
39
+ end
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'eac_cli/definition'
4
- require 'eac_cli/docopt/runner_extension'
5
4
  require 'eac_cli/parser'
6
5
  require 'eac_ruby_utils/core_ext'
7
6
 
@@ -43,7 +42,6 @@ module EacCli
43
42
 
44
43
  extend AfterClassMethods
45
44
  include InstanceMethods
46
- ::EacCli::Docopt::RunnerExtension.check(self)
47
45
  include ActiveSupport::Callbacks
48
46
  define_callbacks :run
49
47
  end
@@ -1,5 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'eac_cli/speaker'
4
+ require 'eac_ruby_utils/speaker'
5
+
3
6
  module EacCli
4
7
  module Runner
5
8
  module AfterClassMethods
@@ -10,9 +13,11 @@ module EacCli
10
13
  end
11
14
 
12
15
  def run(*runner_context_args)
13
- r = create(*runner_context_args)
14
- r.run_run
15
- r
16
+ on_asserted_speaker do
17
+ r = create(*runner_context_args)
18
+ r.run_run
19
+ r
20
+ end
16
21
  end
17
22
 
18
23
  def runner_definition(&block)
@@ -24,6 +29,18 @@ module EacCli
24
29
  def super_runner_definition
25
30
  superclass.try(:runner_definition).if_present(&:dup) || ::EacCli::Definition.new
26
31
  end
32
+
33
+ private
34
+
35
+ def on_asserted_speaker
36
+ if ::EacRubyUtils::Speaker.context.optional_current
37
+ yield
38
+ else
39
+ ::EacRubyUtils::Speaker.context.on(::EacCli::Speaker.new) do
40
+ yield
41
+ end
42
+ end
43
+ end
27
44
  end
28
45
  end
29
46
  end
@@ -15,7 +15,7 @@ module EacCli
15
15
  end
16
16
 
17
17
  def run_parser_error(error)
18
- $stderr.write("#{error}\n")
18
+ $stderr.write("#{program_name}: #{error}\n")
19
19
  ::Kernel.exit(PARSER_ERROR_EXIT_CODE)
20
20
  end
21
21
 
@@ -33,6 +33,10 @@ module EacCli
33
33
  def parsed
34
34
  @parsed ||= ::EacCli::Parser.new(self.class.runner_definition, runner_context.argv).parsed
35
35
  end
36
+
37
+ def program_name
38
+ runner_context.if_present(&:program_name) || $PROGRAM_NAME
39
+ end
36
40
  end
37
41
  end
38
42
  end
@@ -6,12 +6,13 @@ require 'eac_ruby_utils/core_ext'
6
6
  module EacCli
7
7
  module RunnerWith
8
8
  module Help
9
+ require_sub __FILE__
9
10
  common_concern do
10
11
  include ::EacCli::Runner
11
12
 
12
13
  runner_definition.alt do
13
- options_argument false
14
- bool_opt '-h', '--help', 'Show help.', usage: true
14
+ bool_opt '-h', '--help', 'Show help.', usage: true, required: true
15
+ pos_arg :any_arg_with_help, repeat: true, optional: true, visible: false
15
16
  end
16
17
 
17
18
  set_callback :run, :before do
@@ -20,17 +21,21 @@ module EacCli
20
21
  end
21
22
 
22
23
  def help_run
23
- return unless parsed.help?
24
+ return unless show_help?
24
25
 
25
26
  puts help_text
26
27
  raise ::EacCli::Runner::Exit
27
28
  end
28
29
 
29
30
  def help_text
30
- r = ::EacCli::Docopt::DocBuilder.new(self.class.runner_definition).to_s
31
+ r = ::EacCli::RunnerWith::Help::Builder.new(self.class.runner_definition).to_s
31
32
  r += help_extra_text if respond_to?(:help_extra_text)
32
33
  r
33
34
  end
35
+
36
+ def show_help?
37
+ parsed.help? && !if_respond(:run_subcommand?, false)
38
+ end
34
39
  end
35
40
  end
36
41
  end
@@ -0,0 +1,73 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module EacCli
6
+ module RunnerWith
7
+ module Help
8
+ class Builder
9
+ require_sub __FILE__
10
+ common_constructor :definition
11
+
12
+ SEP = ' '
13
+ IDENT = SEP * 2
14
+ OPTION_DESC_SEP = IDENT * 2
15
+
16
+ class << self
17
+ def option_long(option)
18
+ b = option.long
19
+ b += '=<value>' if option.argument?
20
+ b
21
+ end
22
+
23
+ def option_short(option)
24
+ b = option.short
25
+ b += '=<value>' if option.argument?
26
+ b
27
+ end
28
+
29
+ def option_usage_full(option)
30
+ if option.long.present?
31
+ [option.short, option_long(option)].reject(&:blank?).join(SEP)
32
+ else
33
+ option_short(option)
34
+ end
35
+ end
36
+ end
37
+
38
+ def option_definition(option)
39
+ self.class.option_usage_full(option) + option.description.if_present('') do |v|
40
+ OPTION_DESC_SEP + v
41
+ end
42
+ end
43
+
44
+ def section(header, include_header = true)
45
+ b = include_header ? "#{header.humanize}:\n" : ''
46
+ b += send("self_#{header}") + "\n"
47
+ definition.alternatives.each do |alternative|
48
+ b += IDENT + ::EacCli::RunnerWith::Help::Builder::Alternative.new(alternative).to_s +
49
+ "\n"
50
+ end
51
+ b
52
+ end
53
+
54
+ def options_section
55
+ "Options:\n" +
56
+ definition.alternatives.flat_map(&:options)
57
+ .map { |option| IDENT + option_definition(option) + "\n" }.join
58
+ end
59
+
60
+ def usage_section
61
+ "Usage:\n" +
62
+ definition.alternatives.map do |alternative|
63
+ IDENT + ::EacCli::RunnerWith::Help::Builder::Alternative.new(alternative).to_s + "\n"
64
+ end.join
65
+ end
66
+
67
+ def to_s
68
+ "#{definition.description}\n\n#{usage_section}\n#{options_section}\n"
69
+ end
70
+ end
71
+ end
72
+ end
73
+ end
@@ -0,0 +1,56 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module EacCli
6
+ module RunnerWith
7
+ module Help
8
+ class Builder
9
+ class Alternative
10
+ PROGRAM_MACRO = '__PROGRAM__'
11
+ SUBCOMMANDS_MACRO = '__SUBCOMMANDS__'
12
+
13
+ common_constructor :alternative
14
+
15
+ def to_s
16
+ (
17
+ [PROGRAM_MACRO] +
18
+ alternative.options_argument?.if_present([]) { |_v| ['[options]'] } +
19
+ options +
20
+ positionals
21
+ ).join(::EacCli::RunnerWith::Help::Builder::SEP)
22
+ end
23
+
24
+ def options
25
+ alternative.options.select(&:show_on_usage?).map do |option|
26
+ ::EacCli::RunnerWith::Help::Builder.option_long(option)
27
+ end
28
+ end
29
+
30
+ def option_argument(option)
31
+ b = option.long
32
+ b += '=<value>' if option.argument?
33
+ b
34
+ end
35
+
36
+ def positionals
37
+ alternative.positional.map { |p| positional(p) }.reject(&:blank?)
38
+ end
39
+
40
+ def positional(positional)
41
+ return unless positional.visible?
42
+
43
+ if positional.subcommand?
44
+ SUBCOMMANDS_MACRO
45
+ else
46
+ r = "<#{positional.name}>"
47
+ r += '...' if positional.repeat?
48
+ r = "[#{r}]" if positional.optional?
49
+ r
50
+ end
51
+ end
52
+ end
53
+ end
54
+ end
55
+ end
56
+ end
@@ -10,9 +10,7 @@ module EacCli
10
10
 
11
11
  class << self
12
12
  def runner?(object)
13
- ::EacCli::Runner.runner?(object) || (
14
- object.is_a?(::Class) && object < ::EacCli::DocoptRunner
15
- )
13
+ ::EacCli::Runner.runner?(object)
16
14
  end
17
15
  end
18
16
 
@@ -60,7 +58,7 @@ module EacCli
60
58
  end
61
59
 
62
60
  def run_with_subcommand
63
- if subcommand_name
61
+ if run_subcommand?
64
62
  if subcommand_runner.respond_to?(:run_run)
65
63
  subcommand_runner.run_run
66
64
  else
@@ -79,6 +77,10 @@ module EacCli
79
77
  "Method #{__method__} should be overrided in #{self.class.name}"
80
78
  end
81
79
 
80
+ def run_subcommand?
81
+ subcommand_name.present?
82
+ end
83
+
82
84
  def subcommands?
83
85
  self.class.runner_definition.subcommands?
84
86
  end
@@ -1,26 +1,26 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'colorize'
4
- require 'io/console'
5
- require 'eac_ruby_utils/patches/hash/options_consumer'
6
- require 'eac_ruby_utils/require_sub'
7
- ::EacRubyUtils.require_sub __FILE__
4
+ require 'eac_ruby_utils/core_ext'
5
+ require 'eac_ruby_utils/speaker/receiver'
8
6
 
9
7
  module EacCli
10
- # https://github.com/fazibear/colorize
11
- module Speaker
12
- def on_speaker_node(&block)
13
- ::EacCli::Speaker.on_node(&block)
8
+ class Speaker
9
+ require_sub __FILE__, include_modules: true
10
+ include ::EacRubyUtils::Speaker::Receiver
11
+
12
+ common_constructor :options, default: [{}] do
13
+ self.options = self.class.lists.option.hash_keys_validate!(options)
14
14
  end
15
15
 
16
16
  def puts(string = '')
17
17
  string.to_s.each_line do |line|
18
- current_node.stderr.puts(current_node.stderr_line_prefix.to_s + line)
18
+ err_out.puts(err_line_prefix.to_s + line)
19
19
  end
20
20
  end
21
21
 
22
22
  def out(string = '')
23
- current_node.stdout.write(string.to_s)
23
+ out_out.write(string.to_s)
24
24
  end
25
25
 
26
26
  def fatal_error(string)
@@ -52,7 +52,7 @@ module EacCli
52
52
  # +bool+ ([Boolean], default: +false+): requires a answer "yes" or "no".
53
53
  # +list+ ([Hash] or [Array], default: +nil+): requires a answer from a list.
54
54
  # +noecho+ ([Boolean], default: +false+): does not output answer.
55
- def request_input(question, options = {})
55
+ def input(question, options = {})
56
56
  bool, list, noecho = options.to_options_consumer.consume_all(:bool, :list, :noecho)
57
57
  if list
58
58
  request_from_list(question, list, noecho)
@@ -110,22 +110,18 @@ module EacCli
110
110
  end
111
111
 
112
112
  def request_string(question, noecho)
113
- current_node.stderr.write "#{question}: ".to_s.yellow
113
+ err_out.write "#{question}: ".to_s.yellow
114
114
  noecho ? request_string_noecho : request_string_echo
115
115
  end
116
116
 
117
117
  def request_string_noecho
118
- r = current_node.stdin.noecho(&:gets).chomp.strip
119
- current_node.stderr.write("\n")
118
+ r = in_in.noecho(&:gets).chomp.strip
119
+ err_out.write("\n")
120
120
  r
121
121
  end
122
122
 
123
123
  def request_string_echo
124
- current_node.stdin.gets.chomp.strip
125
- end
126
-
127
- def current_node
128
- ::EacCli::Speaker.current_node
124
+ in_in.gets.chomp.strip
129
125
  end
130
126
  end
131
127
  end