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
@@ -4,49 +4,20 @@ module EacCli
4
4
  class Parser
5
5
  class Alternative
6
6
  module Options
7
- DOUBLE_DASH = '--'
8
-
9
7
  private
10
8
 
11
- attr_accessor :argument_option, :double_dash
12
-
13
- def argument_option_collect_argv(option)
14
- self.argument_option = option
15
- self.phase = PHASE_OPTION_ARGUMENT
16
- end
17
-
18
- def argv_current_option?
19
- phase == PHASE_ANY && argv_enum.peek.start_with?('-')
20
- end
21
-
22
- def argv_current_double_dash?
23
- argv_enum.peek == DOUBLE_DASH && !double_dash
24
- end
25
-
26
9
  def boolean_option_collect_argv(option)
27
10
  collector.collect(option, true)
28
11
  end
29
12
 
30
- def option_argument_collect_argv_value
31
- collector.collect(argument_option, argv_enum.peek)
32
- self.argument_option = nil
33
- self.phase = PHASE_ANY
34
- end
35
-
36
- def option_collect_argv_value
37
- return double_dash_collect_argv_value if argv_current_double_dash?
38
-
39
- alternative.options.any? do |option|
40
- next false unless [option.short, option.long].include?(argv_enum.peek)
41
-
42
- if option.argument?
43
- argument_option_collect_argv(option)
44
- else
45
- boolean_option_collect_argv(option)
46
- end
13
+ def option_collect_option(option)
14
+ if option.argument?
15
+ argument_option_collect_argv(option)
16
+ else
17
+ boolean_option_collect_argv(option)
18
+ end
47
19
 
48
- true
49
- end || raise_argv_current_invalid_option
20
+ option
50
21
  end
51
22
 
52
23
  def raise_argv_current_invalid_option
@@ -0,0 +1,47 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EacCli
4
+ class Parser
5
+ class Alternative
6
+ module ShortOptions
7
+ SHORT_OPTION_PREFIX = '-'
8
+
9
+ private
10
+
11
+ def argv_current_short_option?
12
+ phase == PHASE_ANY && argv_enum.peek.start_with?(SHORT_OPTION_PREFIX) &&
13
+ !argv_current_long_option?
14
+ end
15
+
16
+ def find_short_option(char)
17
+ alternative.options.find do |option|
18
+ short_without_prefix(option.short).if_present(false) { |v| v == char }
19
+ end
20
+ end
21
+
22
+ def short_option_collect_argv_value
23
+ last_option = nil
24
+ short_without_prefix(argv_enum.peek).each_char do |char|
25
+ raise_error "Option \"#{last_option}\" requires a argument not provided" if
26
+ last_option.present?
27
+
28
+ collected_option = short_option_collect_char(char)
29
+ last_option = collected_option if collected_option.argument?
30
+ end
31
+ end
32
+
33
+ # @return [EacCli::Definition::BaseOption] The option collected.
34
+ def short_option_collect_char(char)
35
+ option = find_short_option(char)
36
+ raise_error "Invalid short option \"#{char}\"" unless option
37
+
38
+ option_collect_option(option)
39
+ end
40
+
41
+ def short_without_prefix(short)
42
+ short.to_s.gsub(/\A#{::Regexp.quote(SHORT_OPTION_PREFIX)}/, '')
43
+ end
44
+ end
45
+ end
46
+ end
47
+ end
@@ -24,11 +24,7 @@ module EacCli
24
24
  end
25
25
 
26
26
  def collect(option, value)
27
- if data[option].is_a?(::Array)
28
- data[option] << value
29
- else
30
- data[option] = value
31
- end
27
+ data[option] = option.build_value(value, data[option])
32
28
  end
33
29
 
34
30
  def supplied?(option)
@@ -42,18 +38,8 @@ module EacCli
42
38
  end
43
39
 
44
40
  def default_values
45
- definition.options.each { |option| data[option] = option_default_value(option) }
46
- definition.positional.each do |positional|
47
- data[positional] = positional_default_value(positional)
48
- end
49
- end
50
-
51
- def option_default_value(option)
52
- option.argument? ? nil : false
53
- end
54
-
55
- def positional_default_value(positional)
56
- positional.repeat? ? [] : nil
41
+ definition.options.each { |option| data[option] = option.default_value }
42
+ definition.positional.each { |positional| data[positional] = positional.default_value }
57
43
  end
58
44
  end
59
45
  end
@@ -3,14 +3,15 @@
3
3
  require 'eac_ruby_utils/core_ext'
4
4
  require 'eac_cli/runner'
5
5
  require 'eac_cli/runner_with'
6
+ require 'eac_cli/runner_with_set'
6
7
 
7
8
  class Object
8
9
  def runner_with(*runners, &block)
9
10
  include ::EacCli::Runner
10
11
  enable_simple_cache
11
- enable_console_speaker
12
+ enable_speaker
12
13
  runners.each do |runner|
13
- include runner_with_to_module(runner)
14
+ include ::EacCli::RunnerWithSet.default.item_to_module(runner)
14
15
  end
15
16
  runner_definition(&block) if block
16
17
  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,57 +42,8 @@ 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
50
-
51
- module AfterClassMethods
52
- def create(*runner_context_args)
53
- r = new
54
- r.runner_context = ::EacCli::Runner::Context.new(r, *runner_context_args)
55
- r
56
- end
57
-
58
- def run(*runner_context_args)
59
- r = create(*runner_context_args)
60
- r.run_run
61
- r
62
- end
63
-
64
- def runner_definition(&block)
65
- @runner_definition ||= super_runner_definition
66
- @runner_definition.instance_eval(&block) if block
67
- @runner_definition
68
- end
69
-
70
- def super_runner_definition
71
- superclass.try(:runner_definition).if_present(&:dup) || ::EacCli::Definition.new
72
- end
73
- end
74
-
75
- module InstanceMethods
76
- def run_run
77
- parsed
78
- run_callbacks(:run) { run }
79
- rescue ::EacCli::Runner::Exit # rubocop:disable Lint/SuppressedException
80
- # Do nothing
81
- end
82
-
83
- def runner_context
84
- return @runner_context if @runner_context
85
-
86
- raise 'Context was required, but was not set yet'
87
- end
88
-
89
- def runner_context=(new_runner_context)
90
- @runner_context = new_runner_context
91
- @parsed = nil
92
- end
93
-
94
- def parsed
95
- @parsed ||= ::EacCli::Parser.new(self.class.runner_definition, runner_context.argv).parsed
96
- end
97
- end
98
48
  end
99
49
  end
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/speaker'
4
+ require 'eac_ruby_utils/speaker'
5
+
6
+ module EacCli
7
+ module Runner
8
+ module AfterClassMethods
9
+ def create(*runner_context_args)
10
+ r = new
11
+ r.runner_context = ::EacCli::Runner::Context.new(r, *runner_context_args)
12
+ r
13
+ end
14
+
15
+ def run(*runner_context_args)
16
+ on_asserted_speaker do
17
+ r = create(*runner_context_args)
18
+ r.run_run
19
+ r
20
+ end
21
+ end
22
+
23
+ def runner_definition(&block)
24
+ @runner_definition ||= super_runner_definition
25
+ @runner_definition.instance_eval(&block) if block
26
+ @runner_definition
27
+ end
28
+
29
+ def super_runner_definition
30
+ superclass.try(:runner_definition).if_present(&:dup) || ::EacCli::Definition.new
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
44
+ end
45
+ end
46
+ end
@@ -27,8 +27,9 @@ module EacCli
27
27
 
28
28
  def parent_call(method_name, *args)
29
29
  return parent.context(method_name, *args) if parent.respond_to?(:context)
30
+ return parent.runner_context.call(method_name, *args) if parent.respond_to?(:runner_context)
30
31
 
31
- parent.runner_context.call(method_name, *args)
32
+ raise "Parent #{parent} do not respond to .context or .runner_context (Runner: #{runner})"
32
33
  end
33
34
  end
34
35
  end
@@ -0,0 +1,42 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EacCli
4
+ module Runner
5
+ module InstanceMethods
6
+ PARSER_ERROR_EXIT_CODE = 1
7
+
8
+ def run_run
9
+ parsed
10
+ run_callbacks(:run) { run }
11
+ rescue ::EacCli::Parser::Error => e
12
+ run_parser_error(e)
13
+ rescue ::EacCli::Runner::Exit # rubocop:disable Lint/SuppressedException
14
+ # Do nothing
15
+ end
16
+
17
+ def run_parser_error(error)
18
+ $stderr.write("#{program_name}: #{error}\n")
19
+ ::Kernel.exit(PARSER_ERROR_EXIT_CODE)
20
+ end
21
+
22
+ def runner_context
23
+ return @runner_context if @runner_context
24
+
25
+ raise 'Context was required, but was not set yet'
26
+ end
27
+
28
+ def runner_context=(new_runner_context)
29
+ @runner_context = new_runner_context
30
+ @parsed = nil
31
+ end
32
+
33
+ def parsed
34
+ @parsed ||= ::EacCli::Parser.new(self.class.runner_definition, runner_context.argv).parsed
35
+ end
36
+
37
+ def program_name
38
+ runner_context.if_present(&:program_name) || $PROGRAM_NAME
39
+ end
40
+ end
41
+ end
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