avm-tools 0.105.0 → 0.109.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (246) hide show
  1. checksums.yaml +4 -4
  2. data/lib/avm/instances/entry.rb +3 -3
  3. data/lib/avm/patches/eac_ruby_gems_utils/gem.rb +2 -2
  4. data/lib/avm/ruby/rubocop/_configured.rb +2 -2
  5. data/lib/avm/tools/app_src.rb +68 -0
  6. data/lib/avm/tools/runner/app_src/info.rb +26 -2
  7. data/lib/avm/tools/runner/app_src/ruby/bundler/gemfile_lock/git.rb +62 -0
  8. data/lib/avm/tools/runner/app_src/ruby/bundler/gemfile_lock.rb +11 -41
  9. data/lib/avm/tools/runner/app_src/ruby/bundler/incompatible.rb +2 -4
  10. data/lib/avm/tools/runner/app_src/update.rb +2 -2
  11. data/lib/avm/tools/runner/app_src.rb +6 -2
  12. data/lib/avm/tools/runner/config/load_path.rb +10 -5
  13. data/lib/avm/tools/runner/git/deploy.rb +2 -2
  14. data/lib/avm/tools/runner/self/registry.rb +25 -0
  15. data/lib/avm/tools/runner.rb +0 -4
  16. data/lib/avm/tools/version.rb +1 -1
  17. data/template/avm/ruby/gems/generator/static/spec/rubocop_spec.rb +1 -1
  18. data/template/avm/ruby/gems/generator/static/spec/spec_helper.rb +2 -100
  19. data/vendor/avm/avm.gemspec +4 -1
  20. data/{lib → vendor/avm/lib}/avm/data/instance/files_unit.rb +0 -0
  21. data/{lib → vendor/avm/lib}/avm/data/instance/package.rb +0 -0
  22. data/{lib → vendor/avm/lib}/avm/data/instance/unit.rb +0 -0
  23. data/{lib → vendor/avm/lib}/avm/data/instance.rb +0 -0
  24. data/{lib → vendor/avm/lib}/avm/data/package/dump.rb +0 -0
  25. data/{lib → vendor/avm/lib}/avm/data/package/load.rb +0 -0
  26. data/{lib → vendor/avm/lib}/avm/data/package.rb +0 -0
  27. data/{lib → vendor/avm/lib}/avm/data/unit.rb +0 -0
  28. data/vendor/avm/lib/avm/jobs/base.rb +62 -0
  29. data/vendor/avm/lib/avm/jobs/variables_source.rb +22 -0
  30. data/vendor/{avm-apps/lib/avm/apps.rb → avm/lib/avm/jobs.rb} +1 -1
  31. data/{lib → vendor/avm/lib}/avm/path_string.rb +0 -0
  32. data/vendor/avm/lib/avm/registry/base.rb +65 -0
  33. data/vendor/avm/lib/avm/registry.rb +29 -0
  34. data/vendor/avm/lib/avm/rspec/setup.rb +22 -0
  35. data/vendor/avm/lib/avm/rspec/shared_examples/in_avm_registry.rb +11 -0
  36. data/vendor/avm/lib/avm/rspec/shared_examples/not_in_avm_registry.rb +14 -0
  37. data/vendor/avm/lib/avm/rspec.rb +9 -0
  38. data/vendor/avm/lib/avm/scms/base.rb +28 -0
  39. data/vendor/avm/lib/avm/scms/commit.rb +43 -0
  40. data/vendor/avm/lib/avm/source_stereotypes/base.rb +21 -0
  41. data/vendor/avm/lib/avm/sources/base.rb +67 -0
  42. data/vendor/avm/lib/avm/sources/configuration/_locale.rb +16 -0
  43. data/vendor/avm/lib/avm/sources/configuration/_rubocop.rb +24 -0
  44. data/vendor/avm/lib/avm/sources/configuration/_tests.rb +27 -0
  45. data/vendor/avm/lib/avm/sources/configuration.rb +55 -0
  46. data/vendor/avm/lib/avm/sources.rb +9 -0
  47. data/{lib → vendor/avm/lib}/avm/sync.rb +0 -0
  48. data/vendor/avm/lib/avm/version.rb +1 -1
  49. data/vendor/avm/spec/lib/avm/scms/base_spec.rb +7 -0
  50. data/vendor/avm/spec/lib/avm/source_stereotypes/base_spec.rb +7 -0
  51. data/vendor/avm-eac_redmine_base0/avm-eac_redmine_base0.gemspec +2 -0
  52. data/vendor/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/core_update.rb +3 -2
  53. data/vendor/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/version.rb +1 -1
  54. data/vendor/{avm-apps → avm-eac_ruby_base1}/Gemfile +0 -0
  55. data/vendor/avm-eac_ruby_base1/avm-eac_ruby_base1.gemspec +19 -0
  56. data/vendor/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/patches/i18n.rb +7 -0
  57. data/{lib/avm/patches/class.rb → vendor/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/patches.rb} +0 -0
  58. data/vendor/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/source_stereotypes/base.rb +25 -0
  59. data/vendor/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/source_stereotypes/update/sub_update.rb +56 -0
  60. data/vendor/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/source_stereotypes/update.rb +53 -0
  61. data/vendor/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/source_stereotypes.rb +11 -0
  62. data/vendor/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/version.rb +7 -0
  63. data/vendor/avm-eac_ruby_base1/lib/avm/eac_ruby_base1.rb +9 -0
  64. data/vendor/avm-eac_ruby_base1/locale/en.yaml +8 -0
  65. data/vendor/avm-eac_ruby_base1/locale/pt-BR.yaml +8 -0
  66. data/vendor/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_stereotypes/base_spec.rb +7 -0
  67. data/vendor/{avm-apps → avm-eac_ruby_base1}/spec/rubocop_spec.rb +0 -0
  68. data/vendor/{avm-apps → avm-eac_ruby_base1}/spec/spec_helper.rb +0 -0
  69. data/vendor/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/apache_host.rb +2 -2
  70. data/vendor/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/apache_path.rb +2 -2
  71. data/vendor/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/deploy.rb +2 -2
  72. data/vendor/avm-files/Gemfile +5 -0
  73. data/vendor/avm-files/avm-files.gemspec +21 -0
  74. data/vendor/{avm → avm-files}/lib/avm/files/appendable/file_content.rb +0 -0
  75. data/vendor/{avm → avm-files}/lib/avm/files/appendable/plain_directory.rb +0 -0
  76. data/vendor/{avm → avm-files}/lib/avm/files/appendable/resource_base.rb +0 -0
  77. data/vendor/{avm → avm-files}/lib/avm/files/appendable/tar_output_command.rb +0 -0
  78. data/vendor/{avm → avm-files}/lib/avm/files/appendable/templatized_directory.rb +0 -0
  79. data/vendor/{avm → avm-files}/lib/avm/files/appendable.rb +0 -0
  80. data/vendor/{avm → avm-files}/lib/avm/files/appender.rb +0 -0
  81. data/vendor/{avm → avm-files}/lib/avm/files/deploy.rb +0 -0
  82. data/vendor/{avm → avm-files}/lib/avm/files/formatter/formats/base.rb +2 -2
  83. data/vendor/{avm → avm-files}/lib/avm/files/formatter/formats/generic_plain.rb +0 -0
  84. data/vendor/{avm → avm-files}/lib/avm/files/formatter/formats/html.rb +0 -0
  85. data/vendor/{avm → avm-files}/lib/avm/files/formatter/formats/javascript.rb +1 -0
  86. data/vendor/{avm → avm-files}/lib/avm/files/formatter/formats/json.rb +0 -0
  87. data/vendor/{avm → avm-files}/lib/avm/files/formatter/formats/php.rb +1 -0
  88. data/vendor/{avm → avm-files}/lib/avm/files/formatter/formats/python.rb +1 -0
  89. data/vendor/{avm → avm-files}/lib/avm/files/formatter/formats/ruby.rb +0 -0
  90. data/vendor/{avm → avm-files}/lib/avm/files/formatter/formats/xml.rb +1 -0
  91. data/vendor/{avm → avm-files}/lib/avm/files/formatter/formats.rb +0 -0
  92. data/vendor/{avm → avm-files}/lib/avm/files/formatter/utf8_assert.rb +3 -1
  93. data/vendor/{avm → avm-files}/lib/avm/files/formatter.rb +0 -0
  94. data/vendor/{avm → avm-files}/lib/avm/files/rotate.rb +0 -0
  95. data/vendor/avm-files/lib/avm/files/version.rb +7 -0
  96. data/vendor/avm-files/lib/avm/files.rb +9 -0
  97. data/vendor/avm-files/spec/rubocop_spec.rb +3 -0
  98. data/vendor/avm-files/spec/spec_helper.rb +4 -0
  99. data/vendor/avm-git/Gemfile +5 -0
  100. data/vendor/avm-git/avm-git.gemspec +21 -0
  101. data/vendor/{avm → avm-git}/lib/avm/git/auto_commit/commit_info.rb +0 -0
  102. data/vendor/{avm → avm-git}/lib/avm/git/auto_commit/rules/base.rb +0 -0
  103. data/vendor/{avm → avm-git}/lib/avm/git/auto_commit/rules/last.rb +0 -0
  104. data/vendor/{avm → avm-git}/lib/avm/git/auto_commit/rules/manual.rb +0 -0
  105. data/vendor/{avm → avm-git}/lib/avm/git/auto_commit/rules/new.rb +0 -0
  106. data/vendor/{avm → avm-git}/lib/avm/git/auto_commit/rules/nth.rb +0 -0
  107. data/vendor/{avm → avm-git}/lib/avm/git/auto_commit/rules/unique.rb +0 -0
  108. data/vendor/{avm → avm-git}/lib/avm/git/auto_commit/rules.rb +0 -0
  109. data/vendor/{avm → avm-git}/lib/avm/git/auto_commit_path/ruby.rb +0 -0
  110. data/vendor/{avm → avm-git}/lib/avm/git/auto_commit_path.rb +0 -0
  111. data/vendor/{avm → avm-git}/lib/avm/git/commit/class_methods.rb +0 -0
  112. data/vendor/{avm → avm-git}/lib/avm/git/commit/deploy.rb +0 -0
  113. data/vendor/{avm → avm-git}/lib/avm/git/commit/deploy_methods.rb +0 -0
  114. data/vendor/{avm → avm-git}/lib/avm/git/commit/diff_tree_line.rb +0 -0
  115. data/vendor/{avm → avm-git}/lib/avm/git/commit/file.rb +0 -0
  116. data/vendor/{avm → avm-git}/lib/avm/git/commit.rb +0 -0
  117. data/vendor/{avm → avm-git}/lib/avm/git/file_auto_fixup.rb +0 -0
  118. data/vendor/{avm → avm-git}/lib/avm/git/issue/complete/commits.rb +0 -0
  119. data/vendor/{avm → avm-git}/lib/avm/git/issue/complete/git_subrepos.rb +0 -0
  120. data/vendor/{avm → avm-git}/lib/avm/git/issue/complete/local_branch.rb +0 -0
  121. data/vendor/{avm → avm-git}/lib/avm/git/issue/complete/local_tag.rb +0 -0
  122. data/vendor/{avm → avm-git}/lib/avm/git/issue/complete/push.rb +0 -0
  123. data/vendor/{avm → avm-git}/lib/avm/git/issue/complete/remote.rb +0 -0
  124. data/vendor/{avm → avm-git}/lib/avm/git/issue/complete/test.rb +2 -2
  125. data/vendor/{avm → avm-git}/lib/avm/git/issue/complete/tracker.rb +0 -0
  126. data/vendor/{avm → avm-git}/lib/avm/git/issue/complete/validation.rb +0 -0
  127. data/vendor/{avm → avm-git}/lib/avm/git/issue/complete/validations.rb +0 -0
  128. data/vendor/{avm → avm-git}/lib/avm/git/issue/complete/working_tree.rb +0 -0
  129. data/vendor/{avm → avm-git}/lib/avm/git/issue/complete.rb +0 -0
  130. data/vendor/{avm → avm-git}/lib/avm/git/issue/deliver.rb +0 -0
  131. data/vendor/{avm → avm-git}/lib/avm/git/issue.rb +0 -0
  132. data/vendor/{avm → avm-git}/lib/avm/git/organize/reference_update.rb +0 -0
  133. data/vendor/{avm → avm-git}/lib/avm/git/organize/repository.rb +0 -0
  134. data/vendor/{avm → avm-git}/lib/avm/git/organize.rb +0 -0
  135. data/vendor/{avm → avm-git}/lib/avm/git/revision_test.rb +2 -3
  136. data/vendor/avm-git/lib/avm/git/scms/git/change_tracker.rb +35 -0
  137. data/vendor/avm-git/lib/avm/git/scms/git/commit.rb +55 -0
  138. data/vendor/avm-git/lib/avm/git/scms/git.rb +65 -0
  139. data/vendor/avm-git/lib/avm/git/scms/git_subrepo.rb +41 -0
  140. data/vendor/avm-git/lib/avm/git/scms/provider.rb +19 -0
  141. data/vendor/{avm-apps/lib/avm/apps/jobs.rb → avm-git/lib/avm/git/scms.rb} +2 -2
  142. data/vendor/{avm → avm-git}/lib/avm/git/subrepo_check/parent.rb +0 -0
  143. data/vendor/{avm → avm-git}/lib/avm/git/subrepo_check/remote.rb +0 -0
  144. data/vendor/{avm → avm-git}/lib/avm/git/subrepo_check/show_result.rb +0 -0
  145. data/vendor/{avm → avm-git}/lib/avm/git/subrepo_check.rb +0 -0
  146. data/vendor/{avm → avm-git}/lib/avm/git/subrepo_checks.rb +0 -0
  147. data/vendor/{avm-apps/lib/avm/apps → avm-git/lib/avm/git}/version.rb +2 -2
  148. data/vendor/{avm → avm-git}/lib/avm/git.rb +3 -2
  149. data/vendor/{avm → avm-git}/spec/lib/avm/git/auto_commit_path_spec.rb +4 -3
  150. data/vendor/{avm → avm-git}/spec/lib/avm/git/commit/deploy_spec.rb +0 -0
  151. data/vendor/{avm → avm-git}/spec/lib/avm/git/commit/diff_tree_line_spec.rb +0 -0
  152. data/vendor/{avm → avm-git}/spec/lib/avm/git/commit/diff_tree_line_spec_files/add.source.out +0 -0
  153. data/vendor/{avm → avm-git}/spec/lib/avm/git/commit/diff_tree_line_spec_files/add.target.yaml +0 -0
  154. data/vendor/{avm → avm-git}/spec/lib/avm/git/commit/diff_tree_line_spec_files/modify.source.out +0 -0
  155. data/vendor/{avm → avm-git}/spec/lib/avm/git/commit/diff_tree_line_spec_files/modify.target.yaml +0 -0
  156. data/vendor/{avm → avm-git}/spec/lib/avm/git/commit/diff_tree_line_spec_files/remove.source.out +0 -0
  157. data/vendor/{avm → avm-git}/spec/lib/avm/git/commit/diff_tree_line_spec_files/remove.target.yaml +0 -0
  158. data/vendor/{avm → avm-git}/spec/lib/avm/git/commit/diff_tree_line_spec_files/rename.source.out +0 -0
  159. data/vendor/{avm → avm-git}/spec/lib/avm/git/commit/diff_tree_line_spec_files/rename.target.yaml +0 -0
  160. data/vendor/{avm → avm-git}/spec/lib/avm/git/commit/diff_tree_line_spec_files/rename_modify.source.out +0 -0
  161. data/vendor/{avm → avm-git}/spec/lib/avm/git/commit/diff_tree_line_spec_files/rename_modify.target.yaml +0 -0
  162. data/vendor/{avm → avm-git}/spec/lib/avm/git/commit_spec.rb +0 -0
  163. data/vendor/avm-git/spec/lib/avm/git/scms/git_spec.rb +8 -0
  164. data/vendor/avm-git/spec/lib/avm/git/scms/git_subrepo_spec.rb +8 -0
  165. data/vendor/avm-git/spec/rubocop_spec.rb +3 -0
  166. data/vendor/avm-git/spec/spec_helper.rb +4 -0
  167. data/vendor/eac_cli/lib/eac_cli/config.rb +6 -3
  168. data/vendor/eac_cli/lib/eac_cli/definition/argument_option.rb +1 -1
  169. data/vendor/eac_cli/lib/eac_cli/definition/base_option.rb +9 -1
  170. data/vendor/eac_cli/lib/eac_cli/definition/boolean_option.rb +6 -0
  171. data/vendor/eac_cli/lib/eac_cli/runner_with/help/builder.rb +3 -3
  172. data/vendor/eac_cli/lib/eac_cli/version.rb +1 -1
  173. data/vendor/eac_cli/spec/lib/eac_cli/runner_spec.rb +6 -5
  174. data/vendor/eac_fs/Gemfile +5 -0
  175. data/vendor/eac_fs/eac_fs.gemspec +20 -0
  176. data/vendor/{eac_ruby_utils/lib/eac_ruby_utils/filesystem_cache.rb → eac_fs/lib/eac_fs/cache.rb} +7 -2
  177. data/{lib/avm → vendor/eac_fs/lib/eac_fs}/cached_download.rb +4 -4
  178. data/vendor/eac_fs/lib/eac_fs/file_info.rb +29 -0
  179. data/vendor/eac_fs/lib/eac_fs/patches/module/fs_cache.rb +10 -0
  180. data/vendor/eac_fs/lib/eac_fs/patches/module.rb +4 -0
  181. data/vendor/eac_fs/lib/eac_fs/patches/object/fs_cache.rb +15 -0
  182. data/vendor/eac_fs/lib/eac_fs/patches/object.rb +4 -0
  183. data/vendor/eac_fs/lib/eac_fs/patches/pathname/info.rb +12 -0
  184. data/vendor/eac_fs/lib/eac_fs/patches/pathname.rb +4 -0
  185. data/vendor/{avm/lib/avm/files.rb → eac_fs/lib/eac_fs/patches.rb} +0 -5
  186. data/vendor/eac_fs/lib/eac_fs/version.rb +5 -0
  187. data/vendor/eac_fs/lib/eac_fs.rb +7 -0
  188. data/vendor/{eac_ruby_utils/spec/lib/eac_ruby_utils/filesystem_cache_spec.rb → eac_fs/spec/lib/eac_fs/cache_spec.rb} +2 -2
  189. data/vendor/eac_fs/spec/rubocop_spec.rb +3 -0
  190. data/vendor/eac_fs/spec/spec_helper.rb +4 -0
  191. data/vendor/eac_git/lib/eac_git/local/commit/archive.rb +1 -1
  192. data/vendor/eac_git/lib/eac_git/local/commit.rb +24 -5
  193. data/vendor/eac_git/lib/eac_git/local/log.rb +17 -0
  194. data/vendor/eac_git/lib/eac_git/local.rb +39 -0
  195. data/vendor/eac_git/lib/eac_git/rspec/stubbed_git_local_repo.rb +11 -0
  196. data/vendor/eac_git/lib/eac_git/version.rb +1 -1
  197. data/vendor/eac_ruby_base0/eac_ruby_base0.gemspec +2 -1
  198. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application.rb +4 -4
  199. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/core_ext.rb +1 -0
  200. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner.rb +16 -7
  201. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/version.rb +1 -1
  202. data/vendor/eac_ruby_gems_utils/lib/eac_ruby_gems_utils/tests/base.rb +0 -5
  203. data/vendor/eac_ruby_gems_utils/lib/eac_ruby_gems_utils/version.rb +1 -1
  204. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/abstract_methods.rb +7 -0
  205. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/compact.rb +22 -0
  206. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/class/abstract.rb +9 -0
  207. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/class/self_included_modules.rb +7 -0
  208. data/{lib/avm/patches/class/i18n.rb → vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/i18n_translate.rb} +8 -7
  209. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/object/call_if_proc.rb +11 -0
  210. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/object/compact.rb +20 -0
  211. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/object/i18n_translate.rb +13 -0
  212. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/string/delimited.rb +16 -0
  213. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/receiver.rb +10 -10
  214. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/string_delimited.rb +70 -0
  215. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
  216. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/compact_spec.rb +20 -0
  217. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/class/abstract_spec.rb +25 -0
  218. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/class/self_included_modules_spec.rb +30 -0
  219. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/object/call_if_proc_spec.rb +11 -0
  220. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/object/compact_spec.rb +20 -0
  221. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/string/delimited_spec.rb +34 -0
  222. data/vendor/eac_templates/lib/eac_templates/patches/module/erb_template.rb +9 -0
  223. data/vendor/eac_templates/lib/eac_templates/patches/module.rb +4 -0
  224. data/vendor/eac_templates/lib/eac_templates/patches/object/erb_template.rb +9 -0
  225. data/vendor/eac_templates/lib/eac_templates/patches/object.rb +4 -0
  226. data/vendor/eac_templates/lib/eac_templates/patches.rb +4 -0
  227. data/vendor/eac_templates/lib/eac_templates/version.rb +1 -1
  228. metadata +192 -279
  229. data/lib/avm/app_src.rb +0 -61
  230. data/lib/avm/fs_cache.rb +0 -11
  231. data/lib/avm/patches/i18n.rb +0 -22
  232. data/lib/avm/patches/object/fs_cache.rb +0 -16
  233. data/lib/avm/patches/object/i18n.rb +0 -9
  234. data/lib/avm/projects/stereotypes/git/update/subrepo.rb +0 -85
  235. data/lib/avm/projects/stereotypes/git/update.rb +0 -41
  236. data/lib/avm/projects/stereotypes/ruby_gem/update.rb +0 -66
  237. data/vendor/avm/lib/avm/files/info.rb +0 -24
  238. data/vendor/avm-apps/avm-apps.gemspec +0 -18
  239. data/vendor/avm-apps/lib/avm/apps/config.rb +0 -19
  240. data/vendor/avm-apps/lib/avm/apps/jobs/base.rb +0 -64
  241. data/vendor/avm-apps/lib/avm/apps/jobs/variables_source.rb +0 -24
  242. data/vendor/avm-apps/lib/avm/apps/sources/configuration/_locale.rb +0 -18
  243. data/vendor/avm-apps/lib/avm/apps/sources/configuration/_rubocop.rb +0 -26
  244. data/vendor/avm-apps/lib/avm/apps/sources/configuration/_tests.rb +0 -29
  245. data/vendor/avm-apps/lib/avm/apps/sources/configuration.rb +0 -57
  246. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/fs_cache.rb +0 -12
@@ -7,19 +7,25 @@ module EacGit
7
7
  class Commit
8
8
  require_sub __FILE__, include_modules: true
9
9
  enable_simple_cache
10
+ include ::Comparable
10
11
 
11
12
  FIELDS = {
12
13
  author_name: '%an', author_email: '%ae', author_date: '%ai',
13
14
  subject: '%s',
14
15
  author_all: '%an <%ae>, %ai',
15
16
  commiter_name: '%cn', commiter_email: '%ce', commiter_date: '%ci',
16
- commiter_all: '%cn <%ce>, %ci'
17
+ commiter_all: '%cn <%ce>, %ci',
18
+ raw_body: '%B'
17
19
  }.freeze
18
20
 
19
- common_constructor :repo, :hash
21
+ common_constructor :repo, :id
22
+
23
+ def <=>(other)
24
+ [repo, id] <=> [other.repo, other.id]
25
+ end
20
26
 
21
27
  def format(format)
22
- repo.command('--no-pager', 'log', '-1', "--pretty=format:#{format}", hash).execute!.strip
28
+ repo.command('--no-pager', 'log', '-1', "--pretty=format:#{format}", id).execute!.strip
23
29
  end
24
30
 
25
31
  FIELDS.each do |field, format|
@@ -36,8 +42,21 @@ module EacGit
36
42
  changed_files.inject(0) { |a, e| a + e.dst_size }
37
43
  end
38
44
 
45
+ # @return [EacGit::Local::Commit, nil]
46
+ def parent
47
+ ps = parents
48
+ raise "#{self} has more than one parent" if ps.count > 2
49
+
50
+ ps.empty? ? nil : ps.first
51
+ end
52
+
53
+ # @return [Array<EacGit::Local::Commit>]
54
+ def parents
55
+ format('%P').each_line.map { |line| repo.commitize(line) }
56
+ end
57
+
39
58
  def root_child?
40
- format('%P').blank?
59
+ parents.empty?
41
60
  end
42
61
 
43
62
  private
@@ -45,7 +64,7 @@ module EacGit
45
64
  def diff_tree_execute
46
65
  args = []
47
66
  args << '--root' if root_child?
48
- args << hash
67
+ args << id
49
68
  repo.command(*::EacGit::Local::Commit::DiffTreeLine::GIT_COMMAND_ARGS, *args).execute!
50
69
  end
51
70
  end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_git/remote'
4
+ require 'eac_ruby_utils/core_ext'
5
+
6
+ module EacGit
7
+ class Local
8
+ module Log
9
+ def log(until_commit = nil, from_commit = nil)
10
+ until_commit, from_commit = [until_commit, from_commit].map { |c| commitize(c) }
11
+ from_commit ||= head
12
+ command('log', '--format=%H', "#{until_commit.id}..#{from_commit.id}")
13
+ .execute!.each_line.map { |line| commitize(line.strip) }
14
+ end
15
+ end
16
+ end
17
+ end
@@ -7,15 +7,43 @@ module EacGit
7
7
  # A Git repository in local filesystem.
8
8
  class Local
9
9
  require_sub __FILE__, include_modules: true
10
+ include ::Comparable
11
+
12
+ HEAD_REFERENCE = 'HEAD'
13
+
14
+ class << self
15
+ def find(path)
16
+ path = path.to_pathname.expand_path
17
+ if path.join('.git').exist?
18
+ new(path)
19
+ elsif path.to_path != '/'
20
+ find(path.parent)
21
+ end
22
+ end
23
+ end
10
24
 
11
25
  common_constructor :root_path do
12
26
  self.root_path = root_path.to_pathname
13
27
  end
14
28
 
29
+ def <=>(other)
30
+ root_path <=> other.root_path
31
+ end
32
+
15
33
  def commit(ref, required = false)
16
34
  rev_parse(ref, required).if_present { |v| ::EacGit::Local::Commit.new(self, v) }
17
35
  end
18
36
 
37
+ def commitize(source)
38
+ if source.is_a?(::EacGit::Local::Commit)
39
+ return source if source.repo == self
40
+
41
+ source = source.id
42
+ end
43
+
44
+ source.to_s.strip.if_present(nil) { |v| ::EacGit::Local::Commit.new(self, v) }
45
+ end
46
+
19
47
  def descendant?(descendant, ancestor)
20
48
  base = merge_base(descendant, ancestor)
21
49
  return false if base.blank?
@@ -24,6 +52,11 @@ module EacGit
24
52
  base == revparse
25
53
  end
26
54
 
55
+ # @return [EacGit::Local::Commit
56
+ def head(required = true)
57
+ commit(HEAD_REFERENCE, required)
58
+ end
59
+
27
60
  def merge_base(*commits)
28
61
  refs = commits.dup
29
62
  while refs.count > 1
@@ -56,6 +89,12 @@ module EacGit
56
89
  ::EacGit::Local::Subrepo.new(self, subpath)
57
90
  end
58
91
 
92
+ # @return [Array<EacGit::Local::Subrepo>]
93
+ def subrepos
94
+ command('subrepo', '-q', 'status').execute!.split("\n").map(&:strip).select(&:present?)
95
+ .map { |subpath| subrepo(subpath) }
96
+ end
97
+
59
98
  def to_s
60
99
  "#{self.class}[#{root_path}]"
61
100
  end
@@ -3,6 +3,7 @@
3
3
  require 'eac_git/local'
4
4
  require 'eac_ruby_utils/envs'
5
5
  require 'fileutils'
6
+ require 'securerandom'
6
7
  require 'tmpdir'
7
8
 
8
9
  module EacGit
@@ -29,6 +30,16 @@ module EacGit
29
30
  def file(*subpath)
30
31
  StubbedGitRepositoryFile.new(self, subpath)
31
32
  end
33
+
34
+ # @return [EacGit::Local::Commit
35
+ def random_commit
36
+ content = ::SecureRandom.hex
37
+ file = "#{content}.txt"
38
+ file(file).write(content)
39
+ command('add', file).execute!
40
+ command('commit', '-m', "Random commit: #{file}.").execute!
41
+ head
42
+ end
32
43
  end
33
44
 
34
45
  class StubbedGitRepositoryFile
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacGit
4
- VERSION = '0.7.3'
4
+ VERSION = '0.9.0'
5
5
  end
@@ -13,7 +13,8 @@ Gem::Specification.new do |s|
13
13
  s.files = Dir['{lib}/**/*']
14
14
 
15
15
  s.add_dependency 'eac_cli', '~> 0.22', '>= 0.22.2'
16
- s.add_dependency 'eac_ruby_gems_utils', '~> 0.9', '~> 0.9.5'
16
+ s.add_dependency 'eac_fs', '~> 0.3'
17
+ s.add_dependency 'eac_ruby_gems_utils', '~> 0.9', '~> 0.9.6'
17
18
  s.add_dependency 'eac_ruby_utils', '~> 0.70'
18
19
 
19
20
  s.add_development_dependency 'eac_ruby_gem_support', '~> 0.3'
@@ -3,10 +3,10 @@
3
3
  require 'eac_cli/config'
4
4
  require 'eac_config/envvars_node'
5
5
  require 'eac_config/yaml_file_node'
6
+ require 'eac_fs/cache'
6
7
  require 'eac_ruby_base0/application_xdg'
7
8
  require 'eac_ruby_gems_utils/gem'
8
9
  require 'eac_ruby_utils/core_ext'
9
- require 'eac_ruby_utils/filesystem_cache'
10
10
 
11
11
  module EacRubyBase0
12
12
  class Application
@@ -43,9 +43,9 @@ module EacRubyBase0
43
43
  delegate "#{item}_xdg_env", "#{item}_dir", to: :app_xdg
44
44
  end
45
45
 
46
- def fs_cache
47
- @fs_cache ||= ::EacRubyUtils::FilesystemCache.new(
48
- cache_dir.join(::EacRubyUtils::FilesystemCache.name.parameterize)
46
+ def self_fs_cache
47
+ @self_fs_cache ||= ::EacFs::Cache.new(
48
+ cache_dir.join(::EacFs::Cache.name.parameterize)
49
49
  )
50
50
  end
51
51
 
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'eac_cli/core_ext'
4
+ require 'eac_fs/patches'
4
5
  require 'eac_ruby_base0/patches'
@@ -3,6 +3,7 @@
3
3
  require 'eac_cli/core_ext'
4
4
  require 'eac_cli/speaker'
5
5
  require 'eac_config/node'
6
+ require 'eac_fs/cache'
6
7
  require 'eac_ruby_utils/speaker'
7
8
 
8
9
  module EacRubyBase0
@@ -23,13 +24,11 @@ module EacRubyBase0
23
24
  end
24
25
 
25
26
  def run
26
- ::EacRubyUtils::Speaker.context.on(build_speaker) do
27
- ::EacConfig::Node.context.on(runner_context.call(:application).build_config) do
28
- if parsed.version?
29
- show_version
30
- else
31
- run_with_subcommand
32
- end
27
+ on_context do
28
+ if parsed.version?
29
+ show_version
30
+ else
31
+ run_with_subcommand
33
32
  end
34
33
  end
35
34
  end
@@ -38,6 +37,16 @@ module EacRubyBase0
38
37
  runner_context.call(:application).version.to_s
39
38
  end
40
39
 
40
+ def on_context
41
+ ::EacRubyUtils::Speaker.context.on(build_speaker) do
42
+ ::EacConfig::Node.context.on(runner_context.call(:application).build_config) do
43
+ ::EacFs::Cache.context.on(application.self_fs_cache) do
44
+ yield
45
+ end
46
+ end
47
+ end
48
+ end
49
+
41
50
  def show_version
42
51
  out("#{application_version}\n")
43
52
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacRubyBase0
4
- VERSION = '0.10.1'
4
+ VERSION = '0.12.0'
5
5
  end
@@ -2,7 +2,6 @@
2
2
 
3
3
  require 'eac_ruby_utils/core_ext'
4
4
  require 'eac_ruby_utils/fs/logs'
5
- require 'eac_ruby_utils/fs_cache'
6
5
  require 'eac_ruby_utils/listable'
7
6
  require 'eac_ruby_utils/on_clean_ruby_environment'
8
7
 
@@ -54,10 +53,6 @@ module EacRubyGemsUtils
54
53
  logs[:stderr].write(r[:stderr])
55
54
  r[:exit_code].zero?
56
55
  end
57
-
58
- def root_cache
59
- ::EacRubyUtils.fs_cache.child(gem.root.to_s.parameterize, self.class.name.parameterize)
60
- end
61
56
  end
62
57
  end
63
58
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacRubyGemsUtils
4
- VERSION = '0.9.5'
4
+ VERSION = '0.9.6'
5
5
  end
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'eac_ruby_utils/patches/class/self_included_modules'
3
4
  require 'eac_ruby_utils/patches/module/common_concern'
4
5
 
5
6
  module EacRubyUtils
@@ -27,6 +28,12 @@ module EacRubyUtils
27
28
  module AbstractMethods
28
29
  common_concern
29
30
 
31
+ class << self
32
+ def abstract?(a_class)
33
+ a_class.self_included_modules.include?(::EacRubyUtils::AbstractMethods)
34
+ end
35
+ end
36
+
30
37
  module ClassMethods
31
38
  def abstract_methods(*methods_names)
32
39
  methods_names.each do |method_name|
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EacRubyUtils
4
+ class Compact
5
+ attr_reader :object, :attributes
6
+
7
+ def initialize(object, attributes)
8
+ @object = object
9
+ @attributes = attributes
10
+ end
11
+
12
+ # @return [Array]
13
+ def to_a
14
+ attributes.map { |attr| object.send(attr) }
15
+ end
16
+
17
+ # @return [Hash]
18
+ def to_h
19
+ attributes.map { |attr| [attr.to_sym, object.send(attr)] }.to_h
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/abstract_methods'
4
+
5
+ class Class
6
+ def abstract?
7
+ ::EacRubyUtils::AbstractMethods.abstract?(self)
8
+ end
9
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ class Class
4
+ def self_included_modules
5
+ ancestors.take_while { |a| a != superclass }.select { |ancestor| ancestor.instance_of?(Module) }
6
+ end
7
+ end
@@ -1,21 +1,22 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'avm/patches/i18n'
3
+ require 'active_support/core_ext/string/inflections'
4
+ require 'i18n'
4
5
 
5
- class Class
6
+ class Module
6
7
  TRANSLATE_LOCALE_KEY = :__locale
7
8
 
8
- def translate(entry_suffix, values = {})
9
+ def i18n_translate(entry_suffix, values = {})
9
10
  on_i18n_locale(values.delete(TRANSLATE_LOCALE_KEY)) do
10
- ::I18n.translate(translate_entry_full(entry_suffix), values)
11
+ ::I18n.translate(i18n_translate_entry_full(entry_suffix), values)
11
12
  end
12
13
  end
13
14
 
14
- def translate_entry_full(entry_suffix)
15
- "#{translate_entry_self_prefix}.#{entry_suffix}"
15
+ def i18n_translate_entry_full(entry_suffix)
16
+ "#{i18n_translate_entry_self_prefix}.#{entry_suffix}"
16
17
  end
17
18
 
18
- def translate_entry_self_prefix
19
+ def i18n_translate_entry_self_prefix
19
20
  name.underscore.gsub('/', '.')
20
21
  end
21
22
 
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/compact'
4
+
5
+ class Object
6
+ # If +self+ is a Proc, return the value of +.call+. If not, return +self+.
7
+ # @return [Object]
8
+ def call_if_proc
9
+ is_a?(::Proc) ? call : self
10
+ end
11
+ end
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/compact'
4
+
5
+ class Object
6
+ # @return [EacRubyUtils::Compact]
7
+ def compact(*attributes)
8
+ ::EacRubyUtils::Compact.new(self, attributes)
9
+ end
10
+
11
+ # @return [Array]
12
+ def compact_to_a(*attributes)
13
+ compact(*attributes).to_a
14
+ end
15
+
16
+ # @return [Hash]
17
+ def compact_to_h(*attributes)
18
+ compact(*attributes).to_h
19
+ end
20
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/patches/module/i18n_translate'
4
+
5
+ class Object
6
+ def i18n_translate(entry_suffix, values = {})
7
+ self.class.i18n_translate(entry_suffix, values)
8
+ end
9
+
10
+ def on_i18n_locale(locale)
11
+ self.class.on_i18n_locale(locale)
12
+ end
13
+ end
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/string_delimited'
4
+
5
+ class String
6
+ # @return [EacRubyUtils::StringDelimited]
7
+ def delimited(begin_delimiter, end_delimiter)
8
+ ::EacRubyUtils::StringDelimited.new(self, begin_delimiter, end_delimiter)
9
+ end
10
+
11
+ %w[inner outer without_inner without_outer].each do |method_suffix|
12
+ define_method "delimited_#{method_suffix}" do |begin_delimiter, end_delimiter|
13
+ delimited(begin_delimiter, end_delimiter).send(method_suffix)
14
+ end
15
+ end
16
+ end
@@ -8,7 +8,7 @@ module EacRubyUtils
8
8
  extend ::EacRubyUtils::AbstractMethods
9
9
 
10
10
  def error(_string)
11
- raise_abstract_method(__FILE__)
11
+ raise_abstract_method(__method__)
12
12
  end
13
13
 
14
14
  def fatal_error(string)
@@ -18,39 +18,39 @@ module EacRubyUtils
18
18
 
19
19
  # @see EacRubyUtils::Speaker::Sender.input
20
20
  def input(_question, _options = {})
21
- raise_abstract_method(__FILE__)
21
+ raise_abstract_method(__method__)
22
22
  end
23
23
 
24
24
  def info(_string)
25
- raise_abstract_method(__FILE__)
25
+ raise_abstract_method(__method__)
26
26
  end
27
27
 
28
28
  def infom(_string)
29
- raise_abstract_method(__FILE__)
29
+ raise_abstract_method(__method__)
30
30
  end
31
31
 
32
32
  def infov(*_args)
33
- raise_abstract_method(__FILE__)
33
+ raise_abstract_method(__method__)
34
34
  end
35
35
 
36
36
  def out(_string = '')
37
- raise_abstract_method(__FILE__)
37
+ raise_abstract_method(__method__)
38
38
  end
39
39
 
40
40
  def puts(_string = '')
41
- raise_abstract_method(__FILE__)
41
+ raise_abstract_method(__method__)
42
42
  end
43
43
 
44
44
  def success(_string)
45
- raise_abstract_method(__FILE__)
45
+ raise_abstract_method(__method__)
46
46
  end
47
47
 
48
48
  def title(_string)
49
- raise_abstract_method(__FILE__)
49
+ raise_abstract_method(__method__)
50
50
  end
51
51
 
52
52
  def warn(_string)
53
- raise_abstract_method(__FILE__)
53
+ raise_abstract_method(__method__)
54
54
  end
55
55
  end
56
56
  end
@@ -0,0 +1,70 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EacRubyUtils
4
+ class StringDelimited
5
+ attr_reader :string, :begin_delimiter, :end_delimiter
6
+
7
+ def initialize(string, begin_delimiter, end_delimiter)
8
+ @string = string
9
+ @begin_delimiter = begin_delimiter
10
+ @end_delimiter = end_delimiter
11
+ end
12
+
13
+ def inner
14
+ between_indexes(content_index, end_index).to_s
15
+ end
16
+
17
+ def outer
18
+ between_indexes(begin_index, after_end_index).to_s
19
+ end
20
+
21
+ def without_inner
22
+ without_join(
23
+ between_indexes(sos_index, content_index), between_indexes(end_index, eos_index)
24
+ )
25
+ end
26
+
27
+ def without_outer
28
+ without_join(
29
+ between_indexes(sos_index, begin_index),
30
+ between_indexes(after_end_index, eos_index)
31
+ )
32
+ end
33
+
34
+ private
35
+
36
+ def after_end_index
37
+ end_index.if_present { |v| v + end_delimiter.length }
38
+ end
39
+
40
+ def begin_index
41
+ string.index(begin_delimiter)
42
+ end
43
+
44
+ def between_indexes(a_begin_index, a_end_index)
45
+ a_begin_index && a_end_index ? string[a_begin_index, a_end_index - a_begin_index] : nil
46
+ end
47
+
48
+ def content_index
49
+ begin_index.if_present { |v| v + begin_delimiter.length }
50
+ end
51
+
52
+ def without_join(*strings)
53
+ return string if strings.any?(&:nil?)
54
+
55
+ strings.join('')
56
+ end
57
+
58
+ def end_index
59
+ content_index.if_present { |_v| string.index(end_delimiter, content_index) }
60
+ end
61
+
62
+ def sos_index
63
+ 0
64
+ end
65
+
66
+ def eos_index
67
+ string.length
68
+ end
69
+ end
70
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacRubyUtils
4
- VERSION = '0.74.0'
4
+ VERSION = '0.77.0'
5
5
  end
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/compact'
4
+
5
+ ::RSpec.describe ::EacRubyUtils::Compact do
6
+ let(:object) { ::OpenStruct.new(a_attr: 'a_value', b_attr: 'b_value') }
7
+ let(:instance) { described_class.new(object, %w[a_attr b_attr]) }
8
+
9
+ describe '#to_a' do
10
+ it do
11
+ expect(instance.to_a).to eq(%w[a_value b_value])
12
+ end
13
+ end
14
+
15
+ describe '#to_h' do
16
+ it do
17
+ expect(instance.to_h).to eq(a_attr: 'a_value', b_attr: 'b_value')
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/patches/class/abstract'
4
+
5
+ RSpec.describe ::Class do
6
+ let(:abstract_class) do
7
+ described_class.new do
8
+ enable_abstract_methods
9
+ end
10
+ end
11
+
12
+ let(:concrect_class) do
13
+ described_class.new(abstract_class)
14
+ end
15
+
16
+ describe '#abstract' do
17
+ it do
18
+ expect(abstract_class).to be_abstract
19
+ end
20
+
21
+ it do
22
+ expect(concrect_class).not_to be_abstract
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/patches/class/self_included_modules'
4
+
5
+ RSpec.describe ::Class do
6
+ let(:includeable_module) do
7
+ ::Module.new
8
+ end
9
+
10
+ let(:parent_class) do
11
+ module_to_include = includeable_module
12
+ described_class.new do
13
+ include module_to_include
14
+ end
15
+ end
16
+
17
+ let(:child_class) do
18
+ described_class.new(parent_class)
19
+ end
20
+
21
+ describe '#self_included_modules' do
22
+ it do
23
+ expect(parent_class.self_included_modules).to include(includeable_module)
24
+ end
25
+
26
+ it do
27
+ expect(child_class.self_included_modules).not_to include(includeable_module)
28
+ end
29
+ end
30
+ end