ehbrs-tools 0.20.0 → 0.23.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (264) 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/lib/ehbrs/patches.rb +4 -0
  6. data/lib/ehbrs/patches/object/template.rb +2 -2
  7. data/lib/ehbrs/tools/runner.rb +21 -0
  8. data/lib/ehbrs/tools/runner/cooking_book.rb +32 -0
  9. data/lib/ehbrs/tools/runner/cooking_book/build.rb +52 -0
  10. data/lib/ehbrs/{runner/videos/series.rb → tools/runner/finances.rb} +4 -4
  11. data/lib/ehbrs/tools/runner/finances/bb_browser.rb +37 -0
  12. data/lib/ehbrs/tools/runner/fs.rb +18 -0
  13. data/lib/ehbrs/tools/runner/fs/selected.rb +81 -0
  14. data/lib/ehbrs/tools/runner/fs/used_space.rb +161 -0
  15. data/lib/ehbrs/tools/runner/google.rb +18 -0
  16. data/lib/ehbrs/tools/runner/google/translate.rb +89 -0
  17. data/lib/ehbrs/tools/runner/music.rb +18 -0
  18. data/lib/ehbrs/tools/runner/music/selected.rb +28 -0
  19. data/lib/ehbrs/tools/runner/self.rb +18 -0
  20. data/lib/ehbrs/tools/runner/self/test.rb +27 -0
  21. data/lib/ehbrs/tools/runner/telegram.rb +28 -0
  22. data/lib/ehbrs/tools/runner/telegram/send_message.rb +31 -0
  23. data/lib/ehbrs/tools/runner/vg.rb +18 -0
  24. data/lib/ehbrs/tools/runner/vg/ips.rb +134 -0
  25. data/lib/ehbrs/tools/runner/vg/wii.rb +74 -0
  26. data/lib/ehbrs/{runner/web_utils → tools/runner}/videos.rb +3 -3
  27. data/lib/ehbrs/tools/runner/videos/extract.rb +70 -0
  28. data/lib/ehbrs/tools/runner/videos/probe.rb +34 -0
  29. data/lib/ehbrs/tools/runner/videos/series.rb +20 -0
  30. data/lib/ehbrs/tools/runner/videos/series/rename.rb +74 -0
  31. data/lib/ehbrs/tools/runner/videos/unsupported.rb +61 -0
  32. data/lib/ehbrs/tools/runner/web_utils.rb +26 -0
  33. data/lib/ehbrs/tools/runner/web_utils/videos.rb +20 -0
  34. data/lib/ehbrs/tools/runner/web_utils/videos/download.rb +65 -0
  35. data/lib/ehbrs/tools/runner/web_utils/videos/upload.rb +77 -0
  36. data/lib/ehbrs/tools/version.rb +1 -1
  37. data/lib/ehbrs/vg/wii/game_file.rb +10 -0
  38. data/lib/ehbrs/videos/convert_job.rb +1 -1
  39. data/lib/ehbrs/videos/series/rename/line_result.rb +1 -1
  40. data/lib/ehbrs/videos/unsupported/check_support.rb +12 -7
  41. data/lib/ehbrs/videos/unsupported/search.rb +1 -1
  42. data/lib/ehbrs/videos/unsupported/track.rb +1 -1
  43. data/vendor/aranha-parsers/aranha-parsers.gemspec +1 -1
  44. data/vendor/aranha-parsers/lib/aranha/parsers/source_address.rb +10 -8
  45. data/vendor/aranha-parsers/lib/aranha/parsers/version.rb +1 -1
  46. data/vendor/aranha-parsers/spec/lib/rubocop_check_spec.rb +1 -5
  47. data/vendor/aranha-parsers/spec/spec_helper.rb +3 -0
  48. data/vendor/aranha-selenium/lib/aranha/selenium/driver_factory/base.rb +8 -0
  49. data/vendor/aranha-selenium/lib/aranha/selenium/driver_factory/chrome.rb +10 -5
  50. data/vendor/aranha-selenium/lib/aranha/selenium/driver_factory/firefox.rb +25 -11
  51. data/vendor/aranha-selenium/lib/aranha/selenium/version.rb +1 -1
  52. data/vendor/eac_cli/eac_cli.gemspec +4 -2
  53. data/vendor/eac_cli/lib/eac_cli/config.rb +18 -0
  54. data/vendor/eac_cli/lib/eac_cli/config/entry.rb +48 -0
  55. data/vendor/{eac_ruby_utils/lib/eac_ruby_utils/console/configs/read_entry_options.rb → eac_cli/lib/eac_cli/config/entry/options.rb} +20 -9
  56. data/vendor/eac_cli/lib/eac_cli/config/entry/undefined.rb +26 -0
  57. data/vendor/eac_cli/lib/eac_cli/default_runner.rb +1 -1
  58. data/vendor/eac_cli/lib/eac_cli/definition/base_option.rb +5 -1
  59. data/vendor/eac_cli/lib/eac_cli/definition/help_formatter.rb +3 -2
  60. data/vendor/eac_cli/lib/eac_cli/definition/positional_argument.rb +6 -1
  61. data/vendor/eac_cli/lib/eac_cli/old_configs.rb +35 -0
  62. data/vendor/eac_cli/lib/eac_cli/old_configs/entry_reader.rb +80 -0
  63. data/vendor/eac_cli/lib/eac_cli/old_configs/password_entry_reader.rb +16 -0
  64. data/vendor/eac_cli/lib/eac_cli/old_configs/read_entry_options.rb +44 -0
  65. data/vendor/eac_cli/lib/eac_cli/old_configs/store_passwords_entry_reader.rb +25 -0
  66. data/vendor/eac_cli/lib/eac_cli/old_configs_bridge.rb +39 -0
  67. data/vendor/eac_cli/lib/eac_cli/parser/alternative/short_options.rb +4 -2
  68. data/vendor/eac_cli/lib/eac_cli/patches/object/runner_with.rb +1 -1
  69. data/vendor/eac_cli/lib/eac_cli/runner.rb +0 -2
  70. data/vendor/eac_cli/lib/eac_cli/runner/after_class_methods.rb +20 -3
  71. data/vendor/eac_cli/lib/eac_cli/runner/context.rb +2 -1
  72. data/vendor/eac_cli/lib/eac_cli/runner/instance_methods.rb +12 -1
  73. data/vendor/eac_cli/lib/eac_cli/runner_with/help.rb +9 -4
  74. data/vendor/eac_cli/lib/eac_cli/runner_with/help/builder.rb +73 -0
  75. data/vendor/eac_cli/lib/eac_cli/runner_with/help/builder/alternative.rb +56 -0
  76. data/vendor/eac_cli/lib/eac_cli/runner_with/subcommands.rb +10 -4
  77. data/vendor/eac_cli/lib/eac_cli/runner_with/subcommands/definition_concern.rb +10 -0
  78. data/vendor/eac_cli/lib/eac_cli/speaker.rb +127 -0
  79. data/vendor/eac_cli/lib/eac_cli/speaker/_constants.rb +12 -0
  80. data/vendor/eac_cli/lib/eac_cli/speaker/list.rb +61 -0
  81. data/vendor/eac_cli/lib/eac_cli/speaker/options.rb +38 -0
  82. data/vendor/eac_cli/lib/eac_cli/version.rb +1 -1
  83. data/vendor/{eac_ruby_utils/spec/lib/eac_ruby_utils/console/configs_spec.rb → eac_cli/spec/lib/eac_cli/old_configs_spec.rb} +2 -2
  84. data/vendor/eac_cli/spec/lib/eac_cli/parser/alternative_spec.rb +1 -1
  85. data/vendor/eac_cli/spec/lib/eac_cli/runner_spec.rb +0 -1
  86. data/vendor/{eac_ruby_utils/spec/lib/eac_ruby_utils/console → eac_cli/spec/lib/eac_cli}/speaker_spec.rb +7 -11
  87. data/vendor/eac_cli/spec/rubocop_spec.rb +1 -5
  88. data/vendor/eac_cli/spec/spec_helper.rb +3 -0
  89. data/vendor/eac_config/Gemfile +5 -0
  90. data/vendor/eac_config/eac_config.gemspec +19 -0
  91. data/vendor/eac_config/lib/eac_config.rb +7 -0
  92. data/vendor/eac_config/lib/eac_config/entry.rb +49 -0
  93. data/vendor/eac_config/lib/eac_config/entry_path.rb +41 -0
  94. data/vendor/eac_config/lib/eac_config/envvars_node.rb +25 -0
  95. data/vendor/eac_config/lib/eac_config/envvars_node/entry.rb +54 -0
  96. data/vendor/eac_config/lib/eac_config/load_nodes_search.rb +39 -0
  97. data/vendor/eac_config/lib/eac_config/load_path.rb +28 -0
  98. data/vendor/eac_config/lib/eac_config/node.rb +67 -0
  99. data/vendor/eac_config/lib/eac_config/node_entry.rb +18 -0
  100. data/vendor/eac_config/lib/eac_config/node_uri.rb +38 -0
  101. data/vendor/{eac_ruby_utils/lib/eac_ruby_utils/configs.rb → eac_config/lib/eac_config/old_configs.rb} +6 -5
  102. data/vendor/{eac_ruby_utils/lib/eac_ruby_utils/configs → eac_config/lib/eac_config/old_configs}/base.rb +5 -5
  103. data/vendor/{eac_ruby_utils/lib/eac_ruby_utils/configs → eac_config/lib/eac_config/old_configs}/file.rb +4 -4
  104. data/vendor/{eac_ruby_utils/lib/eac_ruby_utils → eac_config/lib/eac_config}/paths_hash.rb +8 -8
  105. data/vendor/{eac_ruby_utils/lib/eac_ruby_utils → eac_config/lib/eac_config}/paths_hash/entry_key_error.rb +1 -1
  106. data/vendor/{eac_ruby_utils/lib/eac_ruby_utils → eac_config/lib/eac_config}/paths_hash/node.rb +2 -2
  107. data/vendor/{eac_ruby_utils/lib/eac_ruby_utils → eac_config/lib/eac_config}/paths_hash/path_search.rb +4 -4
  108. data/vendor/eac_config/lib/eac_config/version.rb +5 -0
  109. data/vendor/eac_config/lib/eac_config/yaml_file_node.rb +48 -0
  110. data/vendor/eac_config/lib/eac_config/yaml_file_node/entry.rb +37 -0
  111. data/vendor/eac_config/spec/lib/eac_config/entry_path_spec.rb +30 -0
  112. data/vendor/eac_config/spec/lib/eac_config/envvars_node/entry_spec.rb +14 -0
  113. data/vendor/eac_config/spec/lib/eac_config/envvars_node_spec.rb +40 -0
  114. data/vendor/{eac_ruby_utils/spec/lib/eac_ruby_utils/configs_spec.rb → eac_config/spec/lib/eac_config/old_configs_spec.rb} +2 -2
  115. data/vendor/{eac_ruby_utils/spec/lib/eac_ruby_utils → eac_config/spec/lib/eac_config}/paths_hash_spec.rb +6 -6
  116. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec.rb +52 -0
  117. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1.yaml +6 -0
  118. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_1.yaml +2 -0
  119. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_2.yaml +4 -0
  120. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_2/storage1_2_1.yaml +2 -0
  121. data/vendor/eac_config/spec/rubocop_spec.rb +3 -0
  122. data/vendor/eac_config/spec/spec_helper.rb +17 -0
  123. data/vendor/eac_docker/eac_docker.gemspec +3 -2
  124. data/vendor/eac_docker/lib/eac_docker/debug.rb +15 -0
  125. data/vendor/eac_docker/lib/eac_docker/images/coded.rb +4 -0
  126. data/vendor/eac_docker/lib/eac_docker/images/templatized.rb +13 -2
  127. data/vendor/eac_docker/lib/eac_docker/version.rb +1 -1
  128. data/vendor/eac_docker/spec/lib/eac_docker/images/templatized_spec.rb +2 -1
  129. data/vendor/eac_docker/spec/rubocop_spec.rb +1 -5
  130. data/vendor/eac_docker/spec/spec_helper.rb +3 -0
  131. data/vendor/eac_ruby_base0/eac_ruby_base0.gemspec +4 -4
  132. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application.rb +23 -9
  133. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application_xdg.rb +34 -0
  134. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/core_ext.rb +4 -0
  135. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/jobs_runner.rb +2 -2
  136. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner.rb +22 -12
  137. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/confirmation.rb +43 -0
  138. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/input.rb +36 -0
  139. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/output.rb +58 -0
  140. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/version.rb +1 -1
  141. data/vendor/eac_ruby_base0/spec/lib/eac_ruby_base0/runner_with/confirmation_spec.rb +42 -0
  142. data/vendor/eac_ruby_base0/spec/lib/eac_ruby_base0/runner_with/output_spec.rb +81 -0
  143. data/vendor/eac_ruby_base0/spec/rubocop_spec.rb +1 -5
  144. data/vendor/eac_ruby_base0/spec/spec_helper.rb +3 -0
  145. data/vendor/eac_ruby_utils/eac_ruby_utils.gemspec +2 -3
  146. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/boolean.rb +1 -1
  147. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/context.rb +31 -0
  148. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/contextualizable.rb +12 -7
  149. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/envs/command.rb +10 -5
  150. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/filesystem_cache.rb +6 -0
  151. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/fs/logs.rb +63 -0
  152. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/inflector.rb +9 -1
  153. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/listable/list.rb +3 -2
  154. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/kernel/nyi.rb +4 -2
  155. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/common_concern.rb +0 -1
  156. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/context.rb +11 -0
  157. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/speaker.rb +9 -0
  158. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/pathname/parent_n.rb +11 -0
  159. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/regexp/to_parser.rb +10 -0
  160. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/string/inflector.rb +4 -2
  161. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/regexp_parser.rb +34 -0
  162. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/conditional.rb +1 -4
  163. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/settings_provider.rb +10 -29
  164. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/settings_provider/setting_value.rb +69 -0
  165. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/simple_cache.rb +26 -5
  166. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker.rb +16 -0
  167. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/receiver.rb +57 -0
  168. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/sender.rb +32 -0
  169. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
  170. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/module/speaker_spec.rb +13 -0
  171. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/pathname/parent_n_spec.rb +33 -0
  172. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/settings_provider_spec.rb +8 -0
  173. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/simple_cache_spec.rb +27 -0
  174. data/vendor/eac_ruby_utils/spec/rubocop_check_spec.rb +1 -5
  175. data/vendor/eac_ruby_utils/spec/spec_helper.rb +3 -0
  176. data/vendor/ehbrs_ruby_utils/ehbrs_ruby_utils.gemspec +3 -2
  177. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/version.rb +1 -1
  178. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/videos/convert_job.rb +1 -1
  179. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/videos/stream.rb +11 -1
  180. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/web_utils/videos/files_list.rb +1 -1
  181. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec.rb +14 -0
  182. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_attachment.source.yaml +28 -0
  183. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_attachment.target.yaml +7 -0
  184. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_audio.source.yaml +49 -0
  185. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_audio.target.yaml +7 -0
  186. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_subtitle.source.yaml +43 -0
  187. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_subtitle.target.yaml +7 -0
  188. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_video.source.yaml +59 -0
  189. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_video.target.yaml +7 -0
  190. data/vendor/ehbrs_ruby_utils/spec/rubocop_check_spec.rb +1 -5
  191. data/vendor/ehbrs_ruby_utils/spec/spec_helper.rb +3 -0
  192. metadata +133 -91
  193. data/lib/ehbrs/runner.rb +0 -19
  194. data/lib/ehbrs/runner/cooking_book.rb +0 -30
  195. data/lib/ehbrs/runner/cooking_book/build.rb +0 -32
  196. data/lib/ehbrs/runner/finances.rb +0 -16
  197. data/lib/ehbrs/runner/finances/bb_browser.rb +0 -35
  198. data/lib/ehbrs/runner/fs.rb +0 -16
  199. data/lib/ehbrs/runner/fs/used_space.rb +0 -160
  200. data/lib/ehbrs/runner/google.rb +0 -16
  201. data/lib/ehbrs/runner/google/translate.rb +0 -87
  202. data/lib/ehbrs/runner/music.rb +0 -16
  203. data/lib/ehbrs/runner/music/selected.rb +0 -63
  204. data/lib/ehbrs/runner/self.rb +0 -16
  205. data/lib/ehbrs/runner/self/test.rb +0 -25
  206. data/lib/ehbrs/runner/telegram.rb +0 -26
  207. data/lib/ehbrs/runner/telegram/send_message.rb +0 -29
  208. data/lib/ehbrs/runner/vg.rb +0 -16
  209. data/lib/ehbrs/runner/vg/ips.rb +0 -132
  210. data/lib/ehbrs/runner/vg/wii.rb +0 -72
  211. data/lib/ehbrs/runner/videos.rb +0 -16
  212. data/lib/ehbrs/runner/videos/extract.rb +0 -68
  213. data/lib/ehbrs/runner/videos/probe.rb +0 -32
  214. data/lib/ehbrs/runner/videos/series/rename.rb +0 -72
  215. data/lib/ehbrs/runner/videos/unsupported.rb +0 -59
  216. data/lib/ehbrs/runner/web_utils.rb +0 -24
  217. data/lib/ehbrs/runner/web_utils/videos/download.rb +0 -63
  218. data/lib/ehbrs/runner/web_utils/videos/upload.rb +0 -75
  219. data/vendor/eac_cli/lib/eac_cli/docopt/doc_builder.rb +0 -69
  220. data/vendor/eac_cli/lib/eac_cli/docopt/doc_builder/alternative.rb +0 -50
  221. data/vendor/eac_cli/lib/eac_cli/docopt/runner_context_replacement.rb +0 -15
  222. data/vendor/eac_cli/lib/eac_cli/docopt/runner_extension.rb +0 -51
  223. data/vendor/eac_cli/lib/eac_cli/runner_with/output_file.rb +0 -30
  224. data/vendor/eac_cli/spec/lib/eac_cli/docopt/runner_extension_spec.rb +0 -35
  225. data/vendor/eac_cli/spec/lib/eac_cli/runner_with/output_file_spec.rb +0 -53
  226. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/confirmable.rb +0 -21
  227. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console.rb +0 -5
  228. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/configs.rb +0 -38
  229. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/configs/entry_reader.rb +0 -81
  230. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/configs/password_entry_reader.rb +0 -18
  231. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/configs/store_passwords_entry_reader.rb +0 -27
  232. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/docopt_runner.rb +0 -45
  233. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/docopt_runner/_class_methods.rb +0 -18
  234. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/docopt_runner/_doc.rb +0 -25
  235. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/docopt_runner/_settings.rb +0 -19
  236. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/docopt_runner/_subcommands.rb +0 -154
  237. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/speaker.rb +0 -133
  238. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/speaker/_class_methods.rb +0 -39
  239. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/speaker/_constants.rb +0 -14
  240. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/speaker/list.rb +0 -63
  241. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/speaker/node.rb +0 -26
  242. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/console_speaker.rb +0 -10
  243. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/template.rb +0 -10
  244. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/object/template.rb +0 -9
  245. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates.rb +0 -9
  246. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/directory.rb +0 -110
  247. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/file.rb +0 -50
  248. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/searcher.rb +0 -55
  249. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/variable_not_found_error.rb +0 -7
  250. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/variable_providers.rb +0 -25
  251. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/variable_providers/base.rb +0 -23
  252. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/variable_providers/entries_reader.rb +0 -25
  253. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/variable_providers/generic.rb +0 -25
  254. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/variable_providers/hash.rb +0 -29
  255. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/console/docopt_runner_spec.rb +0 -136
  256. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/module/console_speaker_spec.rb +0 -13
  257. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/object/template_spec.rb +0 -23
  258. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/templates/file_spec.rb +0 -35
  259. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/templates/file_spec_files/expected_content +0 -2
  260. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/templates/file_spec_files/source.template +0 -2
  261. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/templates/searcher_spec.rb +0 -30
  262. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/templates/searcher_spec_files/path1/subdir1/file1.template +0 -1
  263. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/templates/searcher_spec_files/path1/subdir1/file2 +0 -1
  264. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/templates/searcher_spec_files/path2/subdir1/file3.template +0 -1
@@ -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
@@ -2,13 +2,14 @@
2
2
 
3
3
  require 'active_support/core_ext/string'
4
4
  require 'yaml'
5
- require 'eac_ruby_utils/configs/file'
5
+ require 'eac_config/old_configs/file'
6
6
  require 'eac_ruby_utils/patches/hash/sym_keys_hash'
7
- require 'eac_ruby_utils/paths_hash'
7
+ require 'eac_config/paths_hash'
8
8
  require 'eac_ruby_utils/simple_cache'
9
9
 
10
- module EacRubyUtils
11
- class Configs
10
+ module EacConfig
11
+ # @deprecated Use {EacConfig::YamlFileNode} instead.
12
+ class OldConfigs
12
13
  include ::EacRubyUtils::SimpleCache
13
14
 
14
15
  attr_reader :configs_key, :options
@@ -49,7 +50,7 @@ module EacRubyUtils
49
50
  attr_accessor :data
50
51
 
51
52
  def file_uncached
52
- ::EacRubyUtils::Configs::File.new(
53
+ ::EacConfig::OldConfigs::File.new(
53
54
  storage_path, options
54
55
  )
55
56
  end
@@ -2,15 +2,15 @@
2
2
 
3
3
  require 'eac_ruby_utils/blank_not_blank'
4
4
  require 'eac_ruby_utils/core_ext'
5
- require 'eac_ruby_utils/paths_hash'
5
+ require 'eac_config/paths_hash'
6
6
 
7
- module EacRubyUtils
8
- class Configs
7
+ module EacConfig
8
+ class OldConfigs
9
9
  class Base
10
10
  enable_simple_cache
11
11
 
12
12
  common_constructor :data, default: [{}] do
13
- self.data = ::EacRubyUtils::PathsHash.new(data)
13
+ self.data = ::EacConfig::PathsHash.new(data)
14
14
  end
15
15
 
16
16
  def []=(entry_key, entry_value)
@@ -32,7 +32,7 @@ module EacRubyUtils
32
32
  end
33
33
 
34
34
  def replace(new_data)
35
- self.data = ::EacRubyUtils::PathsHash.new(new_data)
35
+ self.data = ::EacConfig::PathsHash.new(new_data)
36
36
  end
37
37
 
38
38
  def write(entry_key, entry_value)
@@ -1,11 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'eac_ruby_utils/configs/base'
3
+ require 'eac_config/old_configs/base'
4
4
  require 'yaml'
5
5
 
6
- module EacRubyUtils
7
- class Configs
8
- class File < ::EacRubyUtils::Configs::Base
6
+ module EacConfig
7
+ class OldConfigs
8
+ class File < ::EacConfig::OldConfigs::Base
9
9
  attr_reader :path, :options
10
10
 
11
11
  # Valid options: [:autosave]
@@ -2,23 +2,23 @@
2
2
 
3
3
  require 'eac_ruby_utils/core_ext'
4
4
 
5
- module EacRubyUtils
5
+ module EacConfig
6
6
  class PathsHash
7
7
  require_sub __FILE__
8
8
 
9
9
  class << self
10
10
  def parse_entry_key(entry_key)
11
11
  r = entry_key.to_s.strip
12
- raise ::EacRubyUtils::PathsHash::EntryKeyError, 'Entry key cannot start or end with dot' if
12
+ raise ::EacConfig::PathsHash::EntryKeyError, 'Entry key cannot start or end with dot' if
13
13
  r.start_with?('.') || r.end_with?('.')
14
14
 
15
15
  r = r.split('.').map(&:strip)
16
16
  if r.empty?
17
- raise ::EacRubyUtils::PathsHash::EntryKeyError, "Entry key \"#{entry_key}\" is empty"
17
+ raise ::EacConfig::PathsHash::EntryKeyError, "Entry key \"#{entry_key}\" is empty"
18
18
  end
19
19
  return r.map(&:to_sym) unless r.any?(&:blank?)
20
20
 
21
- raise ::EacRubyUtils::PathsHash::EntryKeyError,
21
+ raise ::EacConfig::PathsHash::EntryKeyError,
22
22
  "Entry key \"#{entry_key}\" has at least one blank part"
23
23
  end
24
24
  end
@@ -30,21 +30,21 @@ module EacRubyUtils
30
30
  end
31
31
 
32
32
  def [](entry_key)
33
- root.read_entry(::EacRubyUtils::PathsHash::PathSearch.parse_entry_key(entry_key))
33
+ root.read_entry(::EacConfig::PathsHash::PathSearch.parse_entry_key(entry_key))
34
34
  end
35
35
 
36
36
  def []=(entry_key, entry_value)
37
37
  root.write_entry(
38
- ::EacRubyUtils::PathsHash::PathSearch.parse_entry_key(entry_key), entry_value
38
+ ::EacConfig::PathsHash::PathSearch.parse_entry_key(entry_key), entry_value
39
39
  )
40
40
  end
41
41
 
42
42
  def fetch(entry_key)
43
- root.fetch(::EacRubyUtils::PathsHash::PathSearch.parse_entry_key(entry_key))
43
+ root.fetch(::EacConfig::PathsHash::PathSearch.parse_entry_key(entry_key))
44
44
  end
45
45
 
46
46
  def key?(entry_key)
47
- root.entry?(::EacRubyUtils::PathsHash::PathSearch.parse_entry_key(entry_key))
47
+ root.entry?(::EacConfig::PathsHash::PathSearch.parse_entry_key(entry_key))
48
48
  end
49
49
 
50
50
  delegate :to_h, to: :root
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module EacRubyUtils
3
+ module EacConfig
4
4
  class PathsHash
5
5
  class EntryKeyError < StandardError
6
6
  end
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'eac_ruby_utils/core_ext'
4
- require 'eac_ruby_utils/paths_hash/entry_key_error'
4
+ require 'eac_config/paths_hash/entry_key_error'
5
5
 
6
- module EacRubyUtils
6
+ module EacConfig
7
7
  class PathsHash
8
8
  class Node
9
9
  PATH_SEARCH_UNENDED_ERROR_MESSAGE = 'Path search is not a Node and is not ended'
@@ -1,18 +1,18 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module EacRubyUtils
3
+ module EacConfig
4
4
  class PathsHash
5
5
  class PathSearch
6
6
  class << self
7
7
  def parse_entry_key(string)
8
- new(::EacRubyUtils::PathsHash.parse_entry_key(string), [])
8
+ new(::EacConfig::PathsHash.parse_entry_key(string), [])
9
9
  end
10
10
  end
11
11
 
12
12
  common_constructor :current, :previous do
13
13
  self.current = current.assert_argument(Array, 'current').freeze
14
14
  self.previous = previous.assert_argument(Array, 'previous')
15
- raise ::EacRubyUtils::PathsHash::EntryKeyError, 'Current is empty' if current.empty?
15
+ raise ::EacConfig::PathsHash::EntryKeyError, 'Current is empty' if current.empty?
16
16
  end
17
17
 
18
18
  def cursor
@@ -24,7 +24,7 @@ module EacRubyUtils
24
24
  end
25
25
 
26
26
  def raise_error(message)
27
- raise ::EacRubyUtils::PathsHash::EntryKeyError, "#{message} (#{self})"
27
+ raise ::EacConfig::PathsHash::EntryKeyError, "#{message} (#{self})"
28
28
  end
29
29
 
30
30
  def succeeding
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EacConfig
4
+ VERSION = '0.5.0'
5
+ end
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'addressable'
4
+ require 'eac_config/node'
5
+ require 'eac_ruby_utils/core_ext'
6
+ require 'eac_ruby_utils/yaml'
7
+
8
+ module EacConfig
9
+ class YamlFileNode
10
+ require_sub __FILE__
11
+ include ::EacConfig::Node
12
+
13
+ class << self
14
+ def from_uri(uri)
15
+ return new(uri.to_addressable.path) if uri.to_addressable.scheme == 'file'
16
+ end
17
+ end
18
+
19
+ common_constructor :path do
20
+ self.path = path.to_pathname
21
+ end
22
+
23
+ def data
24
+ @data ||= ::EacRubyUtils::Yaml.load_file(assert_path) || {}
25
+ end
26
+
27
+ def persist_data(new_data)
28
+ path.parent.mkpath
29
+ ::EacRubyUtils::Yaml.dump_file(path, new_data)
30
+ @data = nil
31
+ end
32
+
33
+ def url
34
+ ::Addressable::URI.parse("file://#{path.expand_path}")
35
+ end
36
+
37
+ private
38
+
39
+ def assert_path
40
+ unless path.file?
41
+ raise("\"#{path}\" is a not a file") if path.exist?
42
+
43
+ persist_data({})
44
+ end
45
+ path
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_config/entry_path'
4
+ require 'eac_config/node_entry'
5
+ require 'eac_ruby_utils/core_ext'
6
+
7
+ module EacConfig
8
+ class YamlFileNode
9
+ class Entry < ::EacConfig::NodeEntry
10
+ enable_simple_cache
11
+
12
+ def found?
13
+ paths_hash.key?(to_paths_hash_key)
14
+ end
15
+
16
+ def value
17
+ paths_hash[to_paths_hash_key]
18
+ end
19
+
20
+ def value=(a_value)
21
+ paths_hash[to_paths_hash_key] = a_value
22
+ node.persist_data(paths_hash.root.to_h)
23
+ end
24
+
25
+ private
26
+
27
+ # @return [EacConfig::PathsHash]
28
+ def paths_hash_uncached
29
+ ::EacConfig::PathsHash.new(node.data)
30
+ end
31
+
32
+ def to_paths_hash_key
33
+ path.parts.join('.')
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_config/entry_path'
4
+
5
+ RSpec.describe ::EacConfig::EntryPath do
6
+ describe '#assert' do
7
+ {
8
+ ['a.b.c'] => %w[a b c],
9
+ [['a', 1], 'b', []] => %w[a 1 b],
10
+ ['a', 'b', ['c', 1.2], 'd', 'e.f'] => %w[a b c 1 2 d e f]
11
+ }.each do |data|
12
+ source = data[0]
13
+ expected_parts = data[1]
14
+
15
+ context "when source is #{source}" do
16
+ let(:instance) { described_class.assert(source) }
17
+
18
+ it { expect(instance.parts).to eq(expected_parts) }
19
+ end
20
+ end
21
+
22
+ [['a..c'], ['a', ' ']].each do |source|
23
+ context "when invalid source is #{source}" do
24
+ it do
25
+ expect { described_class.assert(source) }.to raise_error(::ArgumentError)
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_config/envvars_node/entry'
4
+
5
+ RSpec.describe ::EacConfig::EnvvarsNode::Entry do
6
+ describe '#entry_key_to_envvar_name' do
7
+ {
8
+ 'a.entry.value' => 'A_ENTRY_VALUE',
9
+ 'appli-cation_0.var_one' => 'APPLICATION_0_VAR_ONE'
10
+ }.each do |input, expected_result|
11
+ it { expect(described_class.entry_path_to_envvar_name(input)).to eq(expected_result) }
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_config/envvars_node'
4
+
5
+ RSpec.describe ::EacConfig::EnvvarsNode do
6
+ let(:instance) { described_class.new }
7
+
8
+ before do
9
+ ENV['COMMON'] = 'AAA'
10
+ ENV['BLANK'] = ''
11
+ ENV.delete('NO_EXIST')
12
+ end
13
+
14
+ context 'with common entry' do
15
+ let(:entry) { instance.entry('common') }
16
+
17
+ it { expect(entry).to be_a(::EacConfig::Entry) }
18
+ it { expect(entry.value).to eq('AAA') }
19
+ it { expect(entry.found_node).to eq(instance) }
20
+ it { expect(entry).to be_found }
21
+ end
22
+
23
+ context 'with blank entry' do
24
+ let(:entry) { instance.entry('blank') }
25
+
26
+ it { expect(entry).to be_a(::EacConfig::Entry) }
27
+ it { expect(entry.value).to eq('') }
28
+ it { expect(entry.found_node).to eq(instance) }
29
+ it { expect(entry).to be_found }
30
+ end
31
+
32
+ context 'with not existing entry' do
33
+ let(:entry) { instance.entry('no.exist') }
34
+
35
+ it { expect(entry).to be_a(::EacConfig::Entry) }
36
+ it { expect(entry.value).to eq(nil) }
37
+ it { expect(entry.found_node).to eq(nil) }
38
+ it { expect(entry).not_to be_found }
39
+ end
40
+ end
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'tempfile'
4
- require 'eac_ruby_utils/configs'
4
+ require 'eac_config/old_configs'
5
5
 
6
- RSpec.describe ::EacRubyUtils::Configs do
6
+ RSpec.describe ::EacConfig::OldConfigs do
7
7
  let(:configs_key) { 'configsspec' }
8
8
  let(:storage_path) do
9
9
  file = ::Tempfile.new(configs_key)
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'eac_ruby_utils/paths_hash'
3
+ require 'eac_config/paths_hash'
4
4
 
5
- RSpec.describe ::EacRubyUtils::PathsHash do
5
+ RSpec.describe ::EacConfig::PathsHash do
6
6
  let(:source_hash) do
7
7
  {
8
8
  parent: {
@@ -32,7 +32,7 @@ RSpec.describe ::EacRubyUtils::PathsHash do
32
32
 
33
33
  ['.only_suffix', '', '.', 'only_prefx.', 'empty..part'].each do |entry_key|
34
34
  it "invalid entry key \"#{entry_key}\" raises EntryKeyError" do
35
- expect { instance[entry_key] }.to raise_error(::EacRubyUtils::PathsHash::EntryKeyError)
35
+ expect { instance[entry_key] }.to raise_error(::EacConfig::PathsHash::EntryKeyError)
36
36
  end
37
37
  end
38
38
  end
@@ -51,10 +51,10 @@ RSpec.describe ::EacRubyUtils::PathsHash do
51
51
  {
52
52
  'parent.child1.child1_1' => 'v1_1',
53
53
  'parent.child1.child1_2' => 'v1_2',
54
- 'parent.child1.child1_2.no_exist' => ::EacRubyUtils::PathsHash::EntryKeyError,
55
- 'parent.child1.child1_3' => ::EacRubyUtils::PathsHash::EntryKeyError,
54
+ 'parent.child1.child1_2.no_exist' => ::EacConfig::PathsHash::EntryKeyError,
55
+ 'parent.child1.child1_3' => ::EacConfig::PathsHash::EntryKeyError,
56
56
  'parent.child2' => 'v2',
57
- 'no_exist' => ::EacRubyUtils::PathsHash::EntryKeyError,
57
+ 'no_exist' => ::EacConfig::PathsHash::EntryKeyError,
58
58
  'parent.child1' => {
59
59
  child1_1: 'v1_1',
60
60
  child1_2: 'v1_2'