ehbrs-tools 0.17.0 → 0.22.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (244) hide show
  1. checksums.yaml +4 -4
  2. data/lib/ehbrs/cooking_book/project.rb +8 -2
  3. data/lib/ehbrs/core_ext.rb +4 -0
  4. data/lib/ehbrs/music.rb +9 -0
  5. data/lib/ehbrs/music/album.rb +44 -0
  6. data/lib/ehbrs/observers/base.rb +1 -1
  7. data/lib/ehbrs/observers/with_persistence.rb +1 -1
  8. data/lib/ehbrs/patches.rb +4 -0
  9. data/lib/ehbrs/patches/object/template.rb +2 -2
  10. data/lib/ehbrs/runner/cooking_book/build.rb +20 -2
  11. data/lib/ehbrs/runner/fs/selected.rb +79 -0
  12. data/lib/ehbrs/runner/fs/used_space.rb +2 -3
  13. data/lib/ehbrs/runner/music.rb +16 -0
  14. data/lib/ehbrs/runner/music/selected.rb +26 -0
  15. data/lib/ehbrs/runner/telegram.rb +26 -0
  16. data/lib/ehbrs/runner/telegram/send_message.rb +29 -0
  17. data/lib/ehbrs/runner/videos/probe.rb +2 -2
  18. data/lib/ehbrs/runner/videos/unsupported.rb +1 -1
  19. data/lib/ehbrs/runner/web_utils/videos/upload.rb +1 -1
  20. data/lib/ehbrs/telegram.rb +9 -0
  21. data/lib/ehbrs/telegram/message_sending.rb +32 -0
  22. data/lib/ehbrs/tools/instance.rb +16 -0
  23. data/lib/ehbrs/tools/version.rb +1 -1
  24. data/lib/ehbrs/videos/convert_job.rb +1 -1
  25. data/lib/ehbrs/videos/series/rename/line_result.rb +1 -1
  26. data/lib/ehbrs/videos/unsupported/check_support.rb +13 -8
  27. data/lib/ehbrs/videos/unsupported/fixes/supported_codec.rb +1 -1
  28. data/lib/ehbrs/videos/unsupported/profiles/aoc.rb +27 -0
  29. data/lib/ehbrs/videos/unsupported/search.rb +1 -1
  30. data/lib/ehbrs/videos/unsupported/track.rb +1 -1
  31. data/vendor/aranha-selenium/lib/aranha/selenium/driver_factory/base.rb +8 -0
  32. data/vendor/aranha-selenium/lib/aranha/selenium/driver_factory/chrome.rb +10 -5
  33. data/vendor/aranha-selenium/lib/aranha/selenium/driver_factory/firefox.rb +25 -11
  34. data/vendor/aranha-selenium/lib/aranha/selenium/version.rb +1 -1
  35. data/vendor/avm-apps/Gemfile +5 -0
  36. data/vendor/avm-apps/avm-apps.gemspec +18 -0
  37. data/vendor/avm-apps/lib/avm/apps.rb +9 -0
  38. data/vendor/avm-apps/lib/avm/apps/config.rb +19 -0
  39. data/vendor/avm-apps/lib/avm/apps/jobs.rb +11 -0
  40. data/vendor/avm-apps/lib/avm/apps/jobs/base.rb +64 -0
  41. data/vendor/avm-apps/lib/avm/apps/jobs/variables_source.rb +24 -0
  42. data/vendor/avm-apps/lib/avm/apps/sources/configuration.rb +57 -0
  43. data/vendor/avm-apps/lib/avm/apps/sources/configuration/_locale.rb +18 -0
  44. data/vendor/avm-apps/lib/avm/apps/sources/configuration/_rubocop.rb +26 -0
  45. data/vendor/avm-apps/lib/avm/apps/sources/configuration/_tests.rb +29 -0
  46. data/vendor/avm-apps/lib/avm/apps/version.rb +7 -0
  47. data/vendor/avm-apps/spec/rubocop_spec.rb +3 -0
  48. data/vendor/avm-apps/spec/spec_helper.rb +103 -0
  49. data/vendor/eac_cli/eac_cli.gemspec +4 -2
  50. data/vendor/eac_cli/lib/eac_cli/config.rb +16 -0
  51. data/vendor/eac_cli/lib/eac_cli/config/entry.rb +48 -0
  52. 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
  53. data/vendor/eac_cli/lib/eac_cli/config/entry/undefined.rb +26 -0
  54. data/vendor/eac_cli/lib/eac_cli/core_ext.rb +2 -0
  55. data/vendor/eac_cli/lib/eac_cli/default_runner.rb +1 -1
  56. data/vendor/eac_cli/lib/eac_cli/definition/alternative.rb +4 -7
  57. data/vendor/eac_cli/lib/eac_cli/definition/argument_option.rb +8 -0
  58. data/vendor/eac_cli/lib/eac_cli/definition/base_option.rb +26 -10
  59. data/vendor/eac_cli/lib/eac_cli/definition/base_option/initialize_args_parser.rb +47 -0
  60. data/vendor/eac_cli/lib/eac_cli/definition/boolean_option.rb +8 -0
  61. data/vendor/eac_cli/lib/eac_cli/definition/help_formatter.rb +3 -2
  62. data/vendor/eac_cli/lib/eac_cli/definition/positional_argument.rb +18 -1
  63. data/vendor/eac_cli/lib/eac_cli/old_configs.rb +35 -0
  64. data/vendor/eac_cli/lib/eac_cli/old_configs/entry_reader.rb +80 -0
  65. data/vendor/eac_cli/lib/eac_cli/old_configs/password_entry_reader.rb +16 -0
  66. data/vendor/eac_cli/lib/eac_cli/old_configs/read_entry_options.rb +44 -0
  67. data/vendor/eac_cli/lib/eac_cli/old_configs/store_passwords_entry_reader.rb +25 -0
  68. data/vendor/eac_cli/lib/eac_cli/old_configs_bridge.rb +39 -0
  69. data/vendor/eac_cli/lib/eac_cli/parser/alternative.rb +4 -4
  70. data/vendor/eac_cli/lib/eac_cli/parser/alternative/long_options.rb +37 -0
  71. data/vendor/eac_cli/lib/eac_cli/parser/alternative/option_argument.rb +29 -0
  72. data/vendor/eac_cli/lib/eac_cli/parser/alternative/options.rb +7 -36
  73. data/vendor/eac_cli/lib/eac_cli/parser/alternative/short_options.rb +47 -0
  74. data/vendor/eac_cli/lib/eac_cli/parser/collector.rb +3 -17
  75. data/vendor/eac_cli/lib/eac_cli/patches/object/runner_with.rb +3 -2
  76. data/vendor/eac_cli/lib/eac_cli/runner.rb +0 -50
  77. data/vendor/eac_cli/lib/eac_cli/runner/after_class_methods.rb +46 -0
  78. data/vendor/eac_cli/lib/eac_cli/runner/context.rb +2 -1
  79. data/vendor/eac_cli/lib/eac_cli/runner/instance_methods.rb +42 -0
  80. data/vendor/eac_cli/lib/eac_cli/runner_with/help.rb +9 -4
  81. data/vendor/eac_cli/lib/eac_cli/runner_with/help/builder.rb +73 -0
  82. data/vendor/eac_cli/lib/eac_cli/runner_with/help/builder/alternative.rb +56 -0
  83. data/vendor/eac_cli/lib/eac_cli/runner_with/subcommands.rb +22 -4
  84. data/vendor/eac_cli/lib/eac_cli/runner_with/subcommands/definition_concern.rb +10 -0
  85. data/vendor/eac_cli/lib/eac_cli/runner_with_set.rb +50 -0
  86. data/vendor/eac_cli/lib/eac_cli/speaker.rb +127 -0
  87. data/vendor/eac_cli/lib/eac_cli/speaker/_constants.rb +12 -0
  88. data/vendor/eac_cli/lib/eac_cli/speaker/list.rb +61 -0
  89. data/vendor/eac_cli/lib/eac_cli/speaker/options.rb +38 -0
  90. data/vendor/eac_cli/lib/eac_cli/version.rb +1 -1
  91. data/vendor/eac_cli/spec/lib/eac_cli/definition/alternative_spec.rb +4 -0
  92. 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
  93. data/vendor/eac_cli/spec/lib/eac_cli/parser/alternative_spec.rb +1 -1
  94. data/vendor/eac_cli/spec/lib/eac_cli/runner_spec.rb +43 -5
  95. data/vendor/{eac_ruby_utils/spec/lib/eac_ruby_utils/console → eac_cli/spec/lib/eac_cli}/speaker_spec.rb +7 -11
  96. data/vendor/eac_cli/spec/rubocop_spec.rb +1 -5
  97. data/vendor/eac_cli/spec/spec_helper.rb +3 -0
  98. data/vendor/eac_config/Gemfile +5 -0
  99. data/vendor/eac_config/eac_config.gemspec +19 -0
  100. data/vendor/eac_config/lib/eac_config.rb +7 -0
  101. data/vendor/eac_config/lib/eac_config/entry.rb +49 -0
  102. data/vendor/eac_config/lib/eac_config/entry_path.rb +41 -0
  103. data/vendor/eac_config/lib/eac_config/envvars_node.rb +25 -0
  104. data/vendor/eac_config/lib/eac_config/envvars_node/entry.rb +54 -0
  105. data/vendor/eac_config/lib/eac_config/load_nodes_search.rb +39 -0
  106. data/vendor/eac_config/lib/eac_config/load_path.rb +28 -0
  107. data/vendor/eac_config/lib/eac_config/node.rb +67 -0
  108. data/vendor/eac_config/lib/eac_config/node_entry.rb +18 -0
  109. data/vendor/eac_config/lib/eac_config/node_uri.rb +38 -0
  110. data/vendor/{eac_ruby_utils/lib/eac_ruby_utils/configs.rb → eac_config/lib/eac_config/old_configs.rb} +6 -5
  111. data/vendor/{eac_ruby_utils/lib/eac_ruby_utils/configs → eac_config/lib/eac_config/old_configs}/base.rb +5 -5
  112. data/vendor/{eac_ruby_utils/lib/eac_ruby_utils/configs → eac_config/lib/eac_config/old_configs}/file.rb +4 -4
  113. data/vendor/{eac_ruby_utils/lib/eac_ruby_utils → eac_config/lib/eac_config}/paths_hash.rb +8 -8
  114. data/vendor/{eac_ruby_utils/lib/eac_ruby_utils → eac_config/lib/eac_config}/paths_hash/entry_key_error.rb +1 -1
  115. data/vendor/{eac_ruby_utils/lib/eac_ruby_utils → eac_config/lib/eac_config}/paths_hash/node.rb +2 -2
  116. data/vendor/{eac_ruby_utils/lib/eac_ruby_utils → eac_config/lib/eac_config}/paths_hash/path_search.rb +4 -4
  117. data/vendor/eac_config/lib/eac_config/version.rb +5 -0
  118. data/vendor/eac_config/lib/eac_config/yaml_file_node.rb +48 -0
  119. data/vendor/eac_config/lib/eac_config/yaml_file_node/entry.rb +37 -0
  120. data/vendor/eac_config/spec/lib/eac_config/entry_path_spec.rb +30 -0
  121. data/vendor/eac_config/spec/lib/eac_config/envvars_node/entry_spec.rb +14 -0
  122. data/vendor/eac_config/spec/lib/eac_config/envvars_node_spec.rb +40 -0
  123. 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
  124. data/vendor/{eac_ruby_utils/spec/lib/eac_ruby_utils → eac_config/spec/lib/eac_config}/paths_hash_spec.rb +6 -6
  125. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec.rb +52 -0
  126. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1.yaml +6 -0
  127. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_1.yaml +2 -0
  128. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_2.yaml +4 -0
  129. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_2/storage1_2_1.yaml +2 -0
  130. data/vendor/eac_config/spec/rubocop_spec.rb +3 -0
  131. data/vendor/eac_config/spec/spec_helper.rb +17 -0
  132. data/vendor/eac_docker/eac_docker.gemspec +3 -2
  133. data/vendor/eac_docker/lib/eac_docker/images/templatized.rb +1 -0
  134. data/vendor/eac_docker/lib/eac_docker/version.rb +1 -1
  135. data/vendor/eac_docker/spec/lib/eac_docker/images/templatized_spec.rb +2 -1
  136. data/vendor/eac_docker/spec/rubocop_spec.rb +1 -5
  137. data/vendor/eac_docker/spec/spec_helper.rb +3 -0
  138. data/vendor/eac_ruby_base0/eac_ruby_base0.gemspec +4 -4
  139. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application.rb +23 -9
  140. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application_xdg.rb +34 -0
  141. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/core_ext.rb +4 -0
  142. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/jobs_runner.rb +31 -0
  143. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/patches.rb +4 -0
  144. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/patches/class.rb +4 -0
  145. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/patches/class/jobs_runner.rb +10 -0
  146. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/patches/object.rb +5 -0
  147. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/patches/object/runner_with.rb +5 -0
  148. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner.rb +22 -12
  149. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner/test_all.rb +4 -9
  150. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with.rb +9 -0
  151. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/confirmation.rb +43 -0
  152. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/filesystem_traverser.rb +52 -0
  153. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/input.rb +36 -0
  154. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/output.rb +58 -0
  155. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/version.rb +1 -1
  156. data/vendor/eac_ruby_base0/spec/lib/eac_ruby_base0/runner_with/confirmation_spec.rb +42 -0
  157. data/vendor/eac_ruby_base0/spec/lib/eac_ruby_base0/runner_with/output_spec.rb +81 -0
  158. data/vendor/eac_ruby_base0/spec/rubocop_spec.rb +1 -5
  159. data/vendor/eac_ruby_base0/spec/spec_helper.rb +3 -0
  160. data/vendor/eac_ruby_utils/eac_ruby_utils.gemspec +2 -3
  161. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/context.rb +31 -0
  162. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/contextualizable.rb +12 -7
  163. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/envs/command.rb +10 -5
  164. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/filesystem_cache.rb +6 -0
  165. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/fs/logs.rb +63 -0
  166. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/fs/traverser.rb +0 -2
  167. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/inflector.rb +13 -2
  168. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/listable/list.rb +3 -2
  169. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/local_time_zone.rb +48 -0
  170. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/class/settings_provider.rb +10 -0
  171. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/kernel.rb +4 -0
  172. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/kernel/nyi.rb +10 -0
  173. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/common_concern.rb +0 -1
  174. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/context.rb +11 -0
  175. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/speaker.rb +9 -0
  176. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/object/if_nil.rb +17 -0
  177. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/regexp/to_parser.rb +10 -0
  178. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/string/inflector.rb +4 -2
  179. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/time/required_zone.rb +11 -0
  180. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/regexp_parser.rb +34 -0
  181. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/conditional.rb +1 -4
  182. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/settings_provider.rb +10 -29
  183. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/settings_provider/setting_value.rb +69 -0
  184. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/simple_cache.rb +26 -5
  185. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker.rb +16 -0
  186. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/receiver.rb +57 -0
  187. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/sender.rb +32 -0
  188. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
  189. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/inflector_spec.rb +2 -1
  190. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/local_time_zone_spec.rb +17 -0
  191. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/module/speaker_spec.rb +13 -0
  192. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/settings_provider_spec.rb +8 -0
  193. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/simple_cache_spec.rb +27 -0
  194. data/vendor/eac_ruby_utils/spec/rubocop_check_spec.rb +1 -5
  195. data/vendor/eac_ruby_utils/spec/spec_helper.rb +3 -0
  196. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/videos/convert_job.rb +1 -1
  197. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/web_utils/videos/files_list.rb +1 -1
  198. metadata +157 -67
  199. data/vendor/eac_cli/lib/eac_cli/docopt/doc_builder.rb +0 -55
  200. data/vendor/eac_cli/lib/eac_cli/docopt/doc_builder/alternative.rb +0 -50
  201. data/vendor/eac_cli/lib/eac_cli/docopt/runner_extension.rb +0 -46
  202. data/vendor/eac_cli/lib/eac_cli/runner_with/output_file.rb +0 -30
  203. data/vendor/eac_cli/spec/lib/eac_cli/docopt/runner_extension_spec.rb +0 -35
  204. data/vendor/eac_cli/spec/lib/eac_cli/runner_with/output_file_spec.rb +0 -53
  205. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console.rb +0 -5
  206. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/configs.rb +0 -38
  207. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/configs/entry_reader.rb +0 -81
  208. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/configs/password_entry_reader.rb +0 -18
  209. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/configs/store_passwords_entry_reader.rb +0 -27
  210. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/docopt_runner.rb +0 -45
  211. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/docopt_runner/_class_methods.rb +0 -18
  212. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/docopt_runner/_doc.rb +0 -25
  213. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/docopt_runner/_settings.rb +0 -19
  214. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/docopt_runner/_subcommands.rb +0 -154
  215. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/speaker.rb +0 -133
  216. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/speaker/_class_methods.rb +0 -39
  217. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/speaker/_constants.rb +0 -14
  218. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/speaker/list.rb +0 -63
  219. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/speaker/node.rb +0 -26
  220. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/console_speaker.rb +0 -10
  221. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/template.rb +0 -10
  222. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/object/template.rb +0 -9
  223. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/time/default_time_zone_set.rb +0 -5
  224. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/time/local_time_zone.rb +0 -25
  225. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates.rb +0 -9
  226. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/directory.rb +0 -110
  227. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/file.rb +0 -50
  228. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/searcher.rb +0 -55
  229. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/variable_not_found_error.rb +0 -7
  230. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/variable_providers.rb +0 -25
  231. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/variable_providers/base.rb +0 -23
  232. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/variable_providers/entries_reader.rb +0 -25
  233. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/variable_providers/generic.rb +0 -25
  234. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/templates/variable_providers/hash.rb +0 -29
  235. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/console/docopt_runner_spec.rb +0 -136
  236. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/module/console_speaker_spec.rb +0 -13
  237. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/object/template_spec.rb +0 -23
  238. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/templates/file_spec.rb +0 -35
  239. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/templates/file_spec_files/expected_content +0 -2
  240. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/templates/file_spec_files/source.template +0 -2
  241. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/templates/searcher_spec.rb +0 -30
  242. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/templates/searcher_spec_files/path1/subdir1/file1.template +0 -1
  243. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/templates/searcher_spec_files/path1/subdir1/file2 +0 -1
  244. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/templates/searcher_spec_files/path2/subdir1/file3.template +0 -1
@@ -1,55 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_ruby_utils/core_ext'
4
- require 'eac_ruby_utils/console/docopt_runner'
5
-
6
- module EacCli
7
- module Docopt
8
- class DocBuilder
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
- end
23
-
24
- def option_definition(option)
25
- option.short + SEP + self.class.option_long(option) + OPTION_DESC_SEP + option.description
26
- end
27
-
28
- def section(header, include_header = true)
29
- b = include_header ? "#{header.humanize}:\n" : ''
30
- b += send("self_#{header}") + "\n"
31
- definition.alternatives.each do |alternative|
32
- b += IDENT + ::EacCli::Docopt::DocBuilder::Alternative.new(alternative).to_s + "\n"
33
- end
34
- b
35
- end
36
-
37
- def options_section
38
- "Options:\n" +
39
- definition.alternatives.flat_map(&:options)
40
- .map { |option| IDENT + option_definition(option) + "\n" }.join
41
- end
42
-
43
- def usage_section
44
- "Usage:\n" +
45
- definition.alternatives.map do |alternative|
46
- IDENT + ::EacCli::Docopt::DocBuilder::Alternative.new(alternative).to_s + "\n"
47
- end.join
48
- end
49
-
50
- def to_s
51
- "#{definition.description}\n\n#{usage_section}\n#{options_section}\n"
52
- end
53
- end
54
- end
55
- end
@@ -1,50 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_ruby_utils/core_ext'
4
- require 'eac_ruby_utils/console/docopt_runner'
5
-
6
- module EacCli
7
- module Docopt
8
- class DocBuilder
9
- class Alternative
10
- common_constructor :alternative
11
-
12
- def to_s
13
- (
14
- [::EacRubyUtils::Console::DocoptRunner::PROGRAM_MACRO] +
15
- alternative.options_argument?.if_present([]) { |_v| ['[options]'] } +
16
- options +
17
- positionals
18
- ).join(::EacCli::Docopt::DocBuilder::SEP)
19
- end
20
-
21
- def options
22
- alternative.options.select(&:show_on_usage?).map do |option|
23
- ::EacCli::Docopt::DocBuilder.option_long(option)
24
- end
25
- end
26
-
27
- def option_argument(option)
28
- b = option.long
29
- b += '=<value>' if option.argument?
30
- b
31
- end
32
-
33
- def positionals
34
- alternative.positional.map { |p| positional(p) }
35
- end
36
-
37
- def positional(positional)
38
- if positional.subcommand?
39
- ::EacRubyUtils::Console::DocoptRunner::SUBCOMMANDS_MACRO
40
- else
41
- r = "<#{positional.name}>"
42
- r += '...' if positional.repeat?
43
- r = "[#{r}]" if positional.optional?
44
- r
45
- end
46
- end
47
- end
48
- end
49
- end
50
- end
@@ -1,46 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/docopt/doc_builder'
4
- require 'eac_cli/runner'
5
- require 'eac_ruby_utils/console/docopt_runner'
6
-
7
- module EacCli
8
- module Docopt
9
- module RunnerExtension
10
- extend ::ActiveSupport::Concern
11
-
12
- included do
13
- prepend InstanceMethods
14
- end
15
-
16
- class << self
17
- def check(klass)
18
- return unless klass < ::EacRubyUtils::Console::DocoptRunner
19
-
20
- ::EacCli::Runner.alias_runner_class_methods(klass, '', 'eac_cli')
21
- ::EacCli::Runner.alias_runner_class_methods(klass, 'original', '')
22
-
23
- klass.include(self)
24
- end
25
- end
26
-
27
- module InstanceMethods
28
- def doc
29
- ::EacCli::Docopt::DocBuilder.new(self.class.runner_definition).to_s
30
- end
31
-
32
- def docopt_options
33
- super.merge(options_first: self.class.runner_definition.options_first?)
34
- end
35
- end
36
-
37
- def extra_available_subcommands
38
- self.class.constants
39
- .map { |name| self.class.const_get(name) }
40
- .select { |c| c.instance_of? Class }
41
- .select { |c| c.included_modules.include?(::EacCli::Runner) }
42
- .map { |c| c.name.demodulize.underscore.dasherize }
43
- end
44
- end
45
- end
46
- end
@@ -1,30 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/runner'
4
- require 'eac_ruby_utils/core_ext'
5
- require 'eac_ruby_utils/abstract_methods'
6
-
7
- module EacCli
8
- module RunnerWith
9
- module OutputFile
10
- common_concern do
11
- include ::EacCli::Runner
12
- include ::EacRubyUtils::AbstractMethods
13
-
14
- abstract_methods :output_content
15
-
16
- runner_definition do
17
- arg_opt '-o', '--output-file', 'Output to file.'
18
- end
19
- end
20
-
21
- def run_output
22
- if parsed.output_file.present?
23
- ::File.write(parsed.output_file, output_content)
24
- else
25
- $stdout.write(output_content)
26
- end
27
- end
28
- end
29
- end
30
- end
@@ -1,35 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/docopt/runner_extension'
4
-
5
- RSpec.describe ::EacCli::Docopt::RunnerExtension do
6
- let(:stub_runner) do
7
- r = Class.new(::EacRubyUtils::Console::DocoptRunner) do
8
- def run; end
9
- end
10
- r.include ::EacCli::Runner
11
- r.runner_definition do
12
- desc 'A stub runner.'
13
- arg_opt '-o', '--opt1', 'A argument option'
14
- pos_arg 'pos1'
15
- end
16
- r
17
- end
18
-
19
- let(:instance) { stub_runner.new(argv: %w[-o aaa bbb]) }
20
-
21
- before { instance.run }
22
-
23
- it { expect(instance.options.fetch('--opt1')).to eq('aaa') }
24
- it { expect(instance.options.fetch('<pos1>')).to eq('bbb') }
25
- it { expect(instance.doc).to eq(<<~EXPECTED) }
26
- A stub runner.
27
-
28
- Usage:
29
- __PROGRAM__ [options] <pos1>
30
-
31
- Options:
32
- -o --opt1=<value> A argument option
33
-
34
- EXPECTED
35
- end
@@ -1,53 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/runner_with/output_file'
4
- require 'eac_ruby_utils/fs/temp'
5
-
6
- RSpec.describe ::EacCli::RunnerWith::OutputFile do
7
- let(:runner) do
8
- the_module = described_class
9
- Class.new do
10
- include the_module
11
-
12
- runner_definition do
13
- desc 'A stub root runner.'
14
- pos_arg :input_text
15
- end
16
-
17
- def run
18
- run_output
19
- end
20
-
21
- def output_content
22
- parsed.input_text
23
- end
24
- end
25
- end
26
-
27
- let(:stub_text) { 'STUB_TEXT' }
28
- let(:instance) { runner.create(argv: runner_argv) }
29
-
30
- context 'without --output-file option' do
31
- let(:runner_argv) { [stub_text] }
32
-
33
- it do
34
- expect { instance.run }.to output(stub_text).to_stdout_from_any_process
35
- end
36
- end
37
-
38
- context 'with --output-file option' do
39
- let(:output_file) { ::EacRubyUtils::Fs::Temp.file }
40
- let(:runner_argv) { ['--output-file', output_file.to_path, stub_text] }
41
-
42
- before do
43
- instance.run
44
- end
45
-
46
- after do
47
- output_file.remove
48
- end
49
-
50
- it { expect(output_file).to exist }
51
- it { expect(output_file.read).to eq(stub_text) }
52
- end
53
- end
@@ -1,5 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_ruby_utils/console/configs'
4
- require 'eac_ruby_utils/console/docopt_runner'
5
- require 'eac_ruby_utils/console/speaker'
@@ -1,38 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_ruby_utils/configs'
4
- require 'eac_ruby_utils/core_ext'
5
-
6
- module EacRubyUtils
7
- module Console
8
- class Configs
9
- require_sub __FILE__
10
- enable_console_speaker
11
-
12
- class << self
13
- def entry_key_to_envvar_name(entry_key)
14
- ::EacRubyUtils::Console::Configs::EntryReader.entry_key_to_envvar_name(entry_key)
15
- end
16
- end
17
-
18
- attr_reader :configs
19
-
20
- def initialize(configs_key, options = {})
21
- options.assert_argument(::Hash, 'options')
22
- @configs = ::EacRubyUtils::Configs.new(configs_key, options.merge(autosave: true))
23
- end
24
-
25
- def read_password(entry_key, options = {})
26
- ::EacRubyUtils::Console::Configs::PasswordEntryReader.new(self, entry_key, options).read
27
- end
28
-
29
- def read_entry(entry_key, options = {})
30
- ::EacRubyUtils::Console::Configs::EntryReader.new(self, entry_key, options).read
31
- end
32
-
33
- def store_passwords?
34
- ::EacRubyUtils::Console::Configs::StorePasswordsEntryReader.new(self) == 'yes'
35
- end
36
- end
37
- end
38
- end
@@ -1,81 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_ruby_utils/console/configs/read_entry_options'
4
- require 'eac_ruby_utils/core_ext'
5
-
6
- module EacRubyUtils
7
- module Console
8
- class Configs
9
- class EntryReader
10
- enable_console_speaker
11
-
12
- class << self
13
- def entry_key_to_envvar_name(entry_key)
14
- path = if entry_key.is_a?(::Array)
15
- entry_key
16
- else
17
- ::EacRubyUtils::PathsHash.parse_entry_key(entry_key)
18
- end
19
- path.join('_').gsub(/[^a-z0-9_]/i, '').gsub(/\A_+/, '').gsub(/_+\z/, '')
20
- .gsub(/_{2,}/, '_').upcase
21
- end
22
- end
23
-
24
- common_constructor :console_configs, :entry_key, :options do
25
- self.options = ::EacRubyUtils::Console::Configs::ReadEntryOptions.new(options)
26
- end
27
-
28
- def read
29
- %w[envvars storage console].each do |suffix|
30
- value = send("read_from_#{suffix}")
31
- return value if value.present?
32
- end
33
- return nil unless options[:required]
34
-
35
- raise "No value found for entry \"#{entry_key}\""
36
- end
37
-
38
- def read_from_storage
39
- console_configs.configs.read_entry(entry_key)
40
- end
41
-
42
- def read_from_envvars
43
- return if options[:noenv]
44
-
45
- env_entry_key = self.class.entry_key_to_envvar_name(entry_key)
46
- return unless ENV.key?(env_entry_key)
47
-
48
- ENV.fetch(env_entry_key).if_present(::EacRubyUtils::BlankNotBlank.instance)
49
- end
50
-
51
- def read_from_console
52
- return if options[:noinput]
53
-
54
- options[:before_input].if_present(&:call)
55
- entry_value = looped_entry_value_from_input
56
- console_configs.configs.write_entry(entry_key, entry_value) if options[:store]
57
- entry_value
58
- end
59
-
60
- private
61
-
62
- def looped_entry_value_from_input
63
- loop do
64
- entry_value = entry_value_from_input(entry_key, options)
65
- next if entry_value.blank?
66
- next if options[:validator] && !options[:validator].call(entry_value)
67
-
68
- return entry_value
69
- end
70
- end
71
-
72
- def entry_value_from_input(entry_key, options)
73
- entry_value = request_input("Value for entry \"#{entry_key}\"",
74
- options.request_input_options)
75
- warn('Entered value is blank') if entry_value.blank?
76
- entry_value
77
- end
78
- end
79
- end
80
- end
81
- end
@@ -1,18 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_ruby_utils/console/configs/entry_reader'
4
-
5
- module EacRubyUtils
6
- module Console
7
- class Configs
8
- class PasswordEntryReader < ::EacRubyUtils::Console::Configs::EntryReader
9
- ENTRY_KEY = 'core.store_passwords'
10
-
11
- def initialize(console_configs, entry_key, options = {})
12
- super(console_configs, entry_key, options.merge(noecho: true,
13
- store: console_configs.store_passwords?))
14
- end
15
- end
16
- end
17
- end
18
- end
@@ -1,27 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_ruby_utils/console/configs/entry_reader'
4
-
5
- module EacRubyUtils
6
- module Console
7
- class Configs
8
- class StorePasswordsEntryReader < ::EacRubyUtils::Console::Configs::EntryReader
9
- ENTRY_KEY = 'core.store_passwords'
10
-
11
- def initialize(console_configs)
12
- super(console_configs, ENTRY_KEY,
13
- before_input: -> { banner },
14
- validator: ->(entry_value) { %w[yes no].include?(entry_value) }
15
- )
16
- end
17
-
18
- def banner
19
- infom 'Do you wanna to store passwords?'
20
- infom 'Warning: the passwords will be store in clear text in ' \
21
- "\"#{console_configs.configs.storage_path}\""
22
- infom 'Enter "yes" or "no"'
23
- end
24
- end
25
- end
26
- end
27
- end