eac_tools 0.30.0 → 0.31.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (271) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +26 -21
  3. data/lib/eac_tools/version.rb +1 -1
  4. data/sub/avm/avm.gemspec +3 -3
  5. data/sub/avm/lib/avm/entries/base/uri_components_entries_values/component_factory.rb +42 -0
  6. data/sub/avm/lib/avm/entries/base/uri_components_entries_values/generic_component.rb +52 -0
  7. data/sub/avm/lib/avm/entries/base/uri_components_entries_values/path_component.rb +19 -0
  8. data/sub/avm/lib/avm/entries/base/uri_components_entries_values/url_component.rb +28 -0
  9. data/sub/avm/lib/avm/entries/base/uri_components_entries_values.rb +25 -0
  10. data/sub/avm/lib/avm/entries/base.rb +7 -0
  11. data/sub/avm/lib/avm/entries/keys_constants_set.rb +43 -0
  12. data/sub/avm/lib/avm/instances/base/install.rb +24 -0
  13. data/sub/avm/lib/avm/instances/base/web.rb +16 -0
  14. data/sub/avm/lib/avm/instances/base.rb +1 -1
  15. data/sub/avm/lib/avm/instances/entry_keys.rb +2 -21
  16. data/sub/avm/lib/avm/version.rb +1 -1
  17. data/sub/avm/spec/lib/avm/instances/base_spec.rb +1 -1
  18. data/sub/avm-eac_redmine_base0/avm-eac_redmine_base0.gemspec +2 -2
  19. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/{apache_host.rb → instances/apache_host.rb} +3 -1
  20. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base.rb +6 -5
  21. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/data_unit.rb +53 -0
  22. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/{rest_api.rb → instances/rest_api.rb} +3 -1
  23. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/project_rename.rb +1 -1
  24. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/runners/base.rb +1 -1
  25. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/core_update.rb +120 -0
  26. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/runners/core_update.rb +3 -2
  27. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/version.rb +1 -1
  28. data/sub/avm-eac_redmine_base0/spec/lib/avm/eac_redmine_base0/instances/apache_host_spec.rb +22 -0
  29. data/sub/avm-eac_redmine_base0/spec/lib/avm/eac_redmine_base0/instances/apache_host_spec_files/apache_host_spec_no_ssl_content.conf +11 -0
  30. data/sub/avm-eac_redmine_base0/spec/spec_helper.rb +1 -0
  31. data/sub/avm-files/lib/avm/files/text_replacer.rb +1 -1
  32. data/sub/avm-files/lib/avm/files/version.rb +1 -1
  33. data/sub/avm-tools/avm-tools.gemspec +2 -2
  34. data/sub/avm-tools/lib/avm/tools/version.rb +1 -1
  35. data/sub/eac_git/Gemfile +8 -0
  36. data/sub/eac_git/eac_git.gemspec +20 -0
  37. data/sub/eac_git/lib/eac_git/executables.rb +48 -0
  38. data/sub/eac_git/lib/eac_git/local/branch.rb +27 -0
  39. data/sub/eac_git/lib/eac_git/local/commit/archive.rb +19 -0
  40. data/sub/eac_git/lib/eac_git/local/commit/changed_file.rb +46 -0
  41. data/sub/eac_git/lib/eac_git/local/commit/diff_tree_line.rb +32 -0
  42. data/sub/eac_git/lib/eac_git/local/commit.rb +73 -0
  43. data/sub/eac_git/lib/eac_git/local/dirty_files.rb +37 -0
  44. data/sub/eac_git/lib/eac_git/local/log.rb +17 -0
  45. data/sub/eac_git/lib/eac_git/local/remote.rb +27 -0
  46. data/sub/eac_git/lib/eac_git/local/remotes.rb +20 -0
  47. data/sub/eac_git/lib/eac_git/local/subrepo/config.rb +43 -0
  48. data/sub/eac_git/lib/eac_git/local/subrepo.rb +49 -0
  49. data/sub/eac_git/lib/eac_git/local.rb +127 -0
  50. data/sub/eac_git/lib/eac_git/remote/ls_result.rb +20 -0
  51. data/sub/eac_git/lib/eac_git/remote.rb +19 -0
  52. data/sub/eac_git/lib/eac_git/rspec/setup.rb +23 -0
  53. data/sub/eac_git/lib/eac_git/rspec/stubbed_git_local_repo.rb +71 -0
  54. data/sub/eac_git/lib/eac_git/rspec.rb +9 -0
  55. data/sub/eac_git/lib/eac_git/version.rb +5 -0
  56. data/sub/eac_git/lib/eac_git.rb +7 -0
  57. data/sub/eac_git/spec/lib/eac_git/executables_spec.rb +13 -0
  58. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec.rb +13 -0
  59. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/add.source.out +1 -0
  60. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/add.target.yaml +7 -0
  61. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/modify.source.out +1 -0
  62. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/modify.target.yaml +7 -0
  63. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/remove.source.out +1 -0
  64. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/remove.target.yaml +7 -0
  65. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename.source.out +2 -0
  66. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename.target.yaml +13 -0
  67. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename_modify.source.out +2 -0
  68. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename_modify.target.yaml +13 -0
  69. data/sub/eac_git/spec/lib/eac_git/local/commit_spec.rb +58 -0
  70. data/sub/eac_git/spec/rubocop_spec.rb +3 -0
  71. data/sub/eac_git/spec/spec_helper.rb +4 -0
  72. data/sub/eac_git/vendor/git-subrepo/Changes +110 -0
  73. data/sub/eac_git/vendor/git-subrepo/Intro.pod +509 -0
  74. data/sub/eac_git/vendor/git-subrepo/License +21 -0
  75. data/sub/eac_git/vendor/git-subrepo/Makefile +82 -0
  76. data/sub/eac_git/vendor/git-subrepo/Meta +28 -0
  77. data/sub/eac_git/vendor/git-subrepo/ReadMe.pod +698 -0
  78. data/sub/eac_git/vendor/git-subrepo/doc/comparison.swim +35 -0
  79. data/sub/eac_git/vendor/git-subrepo/doc/git-subrepo.swim +608 -0
  80. data/sub/eac_git/vendor/git-subrepo/doc/intro-to-subrepo.swim +387 -0
  81. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/Changes +15 -0
  82. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/License +21 -0
  83. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/Makefile +45 -0
  84. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/Meta +28 -0
  85. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/ReadMe.pod +77 -0
  86. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/bin/bash+ +43 -0
  87. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/doc/bash+.swim +61 -0
  88. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/lib/bash+.bash +92 -0
  89. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/man/man1/bash+.1 +134 -0
  90. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/man/man3/bash+.3 +134 -0
  91. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/base.t +12 -0
  92. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/fcopy.t +22 -0
  93. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/lib/foo/bar.bash +3 -0
  94. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/lib/foo/foo.bash +3 -0
  95. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/source-bash+-std.t +18 -0
  96. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/source-bash+.t +23 -0
  97. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/test.bash +70 -0
  98. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/use.t +19 -0
  99. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/Changes +15 -0
  100. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/License +21 -0
  101. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/Makefile +20 -0
  102. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/Meta +30 -0
  103. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ReadMe.pod +115 -0
  104. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/doc/test-more.swim +89 -0
  105. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/Changes +15 -0
  106. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/License +21 -0
  107. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/Makefile +45 -0
  108. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/Meta +28 -0
  109. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/ReadMe.pod +77 -0
  110. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/bin/bash+ +43 -0
  111. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/doc/bash+.swim +61 -0
  112. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/lib/bash+.bash +92 -0
  113. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/man/man1/bash+.1 +134 -0
  114. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/man/man3/bash+.3 +134 -0
  115. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/base.t +12 -0
  116. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/fcopy.t +22 -0
  117. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/lib/foo/bar.bash +3 -0
  118. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/lib/foo/foo.bash +3 -0
  119. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/source-bash+-std.t +18 -0
  120. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/source-bash+.t +23 -0
  121. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/test.bash +70 -0
  122. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/use.t +19 -0
  123. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/Changes +15 -0
  124. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/License +21 -0
  125. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/Makefile +37 -0
  126. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/Meta +28 -0
  127. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/ReadMe.pod +66 -0
  128. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/doc/test-tap.swim +48 -0
  129. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/lib/test/tap.bash +153 -0
  130. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/man/man3/test-tap.3 +119 -0
  131. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/bail_out.t +13 -0
  132. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/done.t +10 -0
  133. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/fail.t +20 -0
  134. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/fail_fast.t +15 -0
  135. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/helper.bash +9 -0
  136. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/pass.t +9 -0
  137. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/plan.t +10 -0
  138. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/skip_all.t +20 -0
  139. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/tap.t +13 -0
  140. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/bail.t +14 -0
  141. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/fail.t +7 -0
  142. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/fail_fast.t +12 -0
  143. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/skip-all-init.t +8 -0
  144. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/skip-all-plan.t +9 -0
  145. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/lib/test/more.bash +95 -0
  146. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/man/man3/test-more.3 +173 -0
  147. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/fail.t +20 -0
  148. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/more.t +20 -0
  149. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/pass.t +9 -0
  150. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/setup +8 -0
  151. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/skip_all.t +11 -0
  152. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/test/fail1.t +12 -0
  153. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/test/skip_all.t +10 -0
  154. data/sub/eac_git/vendor/git-subrepo/lib/git-subrepo +1903 -0
  155. data/sub/eac_git/vendor/git-subrepo/lib/git-subrepo.d/bash+.bash +1 -0
  156. data/sub/eac_git/vendor/git-subrepo/lib/git-subrepo.d/help-functions.bash +339 -0
  157. data/sub/eac_git/vendor/git-subrepo/man/man1/git-subrepo.1 +743 -0
  158. data/sub/eac_git/vendor/git-subrepo/note/0.4.0 +12 -0
  159. data/sub/eac_git/vendor/git-subrepo/note/AllGitCmds +148 -0
  160. data/sub/eac_git/vendor/git-subrepo/note/Cases +32 -0
  161. data/sub/eac_git/vendor/git-subrepo/note/Commands +33 -0
  162. data/sub/eac_git/vendor/git-subrepo/note/Dags +199 -0
  163. data/sub/eac_git/vendor/git-subrepo/note/Gists +7 -0
  164. data/sub/eac_git/vendor/git-subrepo/note/Links +25 -0
  165. data/sub/eac_git/vendor/git-subrepo/note/Plugins +10 -0
  166. data/sub/eac_git/vendor/git-subrepo/note/Spec +39 -0
  167. data/sub/eac_git/vendor/git-subrepo/note/Story1 +57 -0
  168. data/sub/eac_git/vendor/git-subrepo/note/ToDo +55 -0
  169. data/sub/eac_git/vendor/git-subrepo/note/design.swim +137 -0
  170. data/sub/eac_git/vendor/git-subrepo/note/design2.swim +85 -0
  171. data/sub/eac_git/vendor/git-subrepo/note/init-test +38 -0
  172. data/sub/eac_git/vendor/git-subrepo/note/pull-dance.txt +18 -0
  173. data/sub/eac_git/vendor/git-subrepo/note/recreate-rebase-conflict.sh +56 -0
  174. data/sub/eac_git/vendor/git-subrepo/note/subtree-rebase-fail-example/test.bash +29 -0
  175. data/sub/eac_git/vendor/git-subrepo/note/test-subrepo-push.sh +69 -0
  176. data/sub/eac_git/vendor/git-subrepo/note/test.sh +58 -0
  177. data/sub/eac_git/vendor/git-subrepo/pkg/bin/generate-completion.pl +210 -0
  178. data/sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl +89 -0
  179. data/sub/eac_git/vendor/git-subrepo/share/completion.bash +42 -0
  180. data/sub/eac_git/vendor/git-subrepo/share/enable-completion.sh +50 -0
  181. data/sub/eac_git/vendor/git-subrepo/share/git-completion.bash +2738 -0
  182. data/sub/eac_git/vendor/git-subrepo/share/zsh-completion/_git-subrepo +81 -0
  183. data/sub/eac_git/vendor/git-subrepo/test/branch-all.t +41 -0
  184. data/sub/eac_git/vendor/git-subrepo/test/branch-rev-list-one-path.t +43 -0
  185. data/sub/eac_git/vendor/git-subrepo/test/branch-rev-list.t +47 -0
  186. data/sub/eac_git/vendor/git-subrepo/test/branch.t +52 -0
  187. data/sub/eac_git/vendor/git-subrepo/test/clean.t +43 -0
  188. data/sub/eac_git/vendor/git-subrepo/test/clone-annotated-tag.t +45 -0
  189. data/sub/eac_git/vendor/git-subrepo/test/clone.t +107 -0
  190. data/sub/eac_git/vendor/git-subrepo/test/compile.t +19 -0
  191. data/sub/eac_git/vendor/git-subrepo/test/config.t +58 -0
  192. data/sub/eac_git/vendor/git-subrepo/test/encode.t +91 -0
  193. data/sub/eac_git/vendor/git-subrepo/test/error.t +171 -0
  194. data/sub/eac_git/vendor/git-subrepo/test/fetch.t +43 -0
  195. data/sub/eac_git/vendor/git-subrepo/test/gitignore.t +61 -0
  196. data/sub/eac_git/vendor/git-subrepo/test/init.t +64 -0
  197. data/sub/eac_git/vendor/git-subrepo/test/issue29.t +98 -0
  198. data/sub/eac_git/vendor/git-subrepo/test/issue95.t +98 -0
  199. data/sub/eac_git/vendor/git-subrepo/test/issue96.t +96 -0
  200. data/sub/eac_git/vendor/git-subrepo/test/pull-all.t +38 -0
  201. data/sub/eac_git/vendor/git-subrepo/test/pull-merge.t +113 -0
  202. data/sub/eac_git/vendor/git-subrepo/test/pull-message.t +88 -0
  203. data/sub/eac_git/vendor/git-subrepo/test/pull-new-branch.t +58 -0
  204. data/sub/eac_git/vendor/git-subrepo/test/pull-ours.t +90 -0
  205. data/sub/eac_git/vendor/git-subrepo/test/pull-theirs.t +82 -0
  206. data/sub/eac_git/vendor/git-subrepo/test/pull-twice.t +44 -0
  207. data/sub/eac_git/vendor/git-subrepo/test/pull-worktree.t +40 -0
  208. data/sub/eac_git/vendor/git-subrepo/test/pull.t +99 -0
  209. data/sub/eac_git/vendor/git-subrepo/test/push-after-init.t +51 -0
  210. data/sub/eac_git/vendor/git-subrepo/test/push-force.t +56 -0
  211. data/sub/eac_git/vendor/git-subrepo/test/push-new-branch.t +61 -0
  212. data/sub/eac_git/vendor/git-subrepo/test/push-no-changes.t +29 -0
  213. data/sub/eac_git/vendor/git-subrepo/test/push-squash.t +56 -0
  214. data/sub/eac_git/vendor/git-subrepo/test/push.t +176 -0
  215. data/sub/eac_git/vendor/git-subrepo/test/reclone.t +45 -0
  216. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/HEAD +1 -0
  217. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/config +4 -0
  218. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/1f/0c4b264caed0126814a0ede851a1e0b4e16ae6 +0 -0
  219. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/87/46903fdb1b9c2101377880125917c2e05b4d69 +0 -0
  220. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/94/c86ffc745232d89f78c6f895e11e71272518db +0 -0
  221. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/c6/76c57b6576743fa56278527aa60ebd2e202a7c +0 -0
  222. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 +0 -0
  223. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/f6/2a8ff3feadf39b0a98f1a86ec6d1eb33858ee9 +0 -0
  224. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/refs/heads/master +1 -0
  225. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/refs/tags/A +1 -0
  226. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/HEAD +1 -0
  227. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/config +4 -0
  228. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/objects/a0/f4cdaaf533a936296cdebbed8206c3b9ededa8 +0 -0
  229. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/objects/e2/1291a1ad392a9d4c51dd9586804f1467b28afd +0 -0
  230. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 +0 -0
  231. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/refs/heads/master +1 -0
  232. data/sub/eac_git/vendor/git-subrepo/test/repo/init/HEAD +1 -0
  233. data/sub/eac_git/vendor/git-subrepo/test/repo/init/config +5 -0
  234. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/11/523f5dcf03b4c89b592dc8a3d0308f68da2386 +0 -0
  235. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/14/2addf8ec5f37334e837440122c62f2c68a29ad +0 -0
  236. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/32/5180321750a21cd7a4e7ecda319e557a4f6a09 +2 -0
  237. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/3d/918c6901c02f43af5d31779dd5e1f9166aeb36 +0 -0
  238. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/3e/4cb596066dce63ba4d047abddb677389b65e19 +0 -0
  239. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/4b/6e53022e7a04f07887697e4f3d7c377fd9822b +0 -0
  240. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/58/931fc1bd559b59c41ea738fc7ad04f9ad01bd3 +0 -0
  241. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/5e/c0c28e1b806f25efdca18fcf7a74b49c3755bd +0 -0
  242. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/75/fa6584e748f57eff06eebdc55e9ac21d4fcbf2 +1 -0
  243. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/80/2d5edbd5e1cb7fca82b5bd38e7c8a0a496fb20 +0 -0
  244. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/94/7b3d714c38791e95ad6f928b48c98bb8708acd +0 -0
  245. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/95/e1f2df3f4d5f3d7a60588c25a7ca8a913d3c2a +1 -0
  246. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/b1/5f4a7666baf40d949548ead946a3370e273479 +0 -0
  247. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/c3/ee8978c4c5d84c3b7d00ba8e5906933d027882 +0 -0
  248. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/c8/b0bffbc405ef3fad7354ff833fbec36d67ddfa +3 -0
  249. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/dd/8bdb934ec848137f011fe423b185505c343626 +2 -0
  250. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/e2/9be58c767cfeb27235c995d293a7d71aac0135 +2 -0
  251. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/ee/1224401fc6aac595145fa727dcf6706ac8aec1 +1 -0
  252. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/f1/cc1a657b2e805c400f5dcaaa76bd29c6178b1b +0 -0
  253. data/sub/eac_git/vendor/git-subrepo/test/repo/init/refs/heads/master +1 -0
  254. data/sub/eac_git/vendor/git-subrepo/test/setup +205 -0
  255. data/sub/eac_git/vendor/git-subrepo/test/status.t +68 -0
  256. data/sub/eac_git/vendor/git-subrepo/test/submodule.t +45 -0
  257. data/sub/eac_ruby_utils/eac_ruby_utils.gemspec +1 -1
  258. data/sub/eac_ruby_utils/lib/eac_ruby_utils/method_class.rb +4 -2
  259. data/sub/eac_ruby_utils/lib/eac_ruby_utils/patches/{module → class}/method_class.rb +0 -0
  260. data/sub/eac_ruby_utils/lib/eac_ruby_utils/patches/class/static_method_class.rb +9 -0
  261. data/sub/eac_ruby_utils/lib/eac_ruby_utils/static_method_class.rb +12 -0
  262. data/sub/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
  263. data/sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/{module → class}/method_class_spec.rb +1 -1
  264. data/sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/class/static_method_class_spec.rb +20 -0
  265. data/sub/eac_ruby_utils/spec/lib/eac_ruby_utils/static_method_class_spec.rb +44 -0
  266. metadata +252 -19
  267. data/sub/avm/lib/avm/instances/base/auto_values/install.rb +0 -47
  268. data/sub/avm/lib/avm/instances/base/auto_values/web.rb +0 -46
  269. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/core_update.rb +0 -118
  270. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/data_unit.rb +0 -51
  271. data/sub/avm-tools/lib/avm/tools/runner/eac_webapp_base0.rb +0 -14
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eac_tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.30.0
4
+ version: 0.31.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Put here the authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-14 00:00:00.000000000 Z
11
+ date: 2022-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: avm
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.43'
19
+ version: '0.44'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0.43'
26
+ version: '0.44'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: avm-eac_asciidoctor_base0
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -100,14 +100,14 @@ dependencies:
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: '0.14'
103
+ version: '0.15'
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: '0.14'
110
+ version: '0.15'
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: avm-eac_redmine_plugin_base0
113
113
  requirement: !ruby/object:Gem::Requirement
@@ -173,7 +173,7 @@ dependencies:
173
173
  version: '0.136'
174
174
  - - ">="
175
175
  - !ruby/object:Gem::Version
176
- version: 0.136.1
176
+ version: 0.136.2
177
177
  type: :runtime
178
178
  prerelease: false
179
179
  version_requirements: !ruby/object:Gem::Requirement
@@ -183,21 +183,21 @@ dependencies:
183
183
  version: '0.136'
184
184
  - - ">="
185
185
  - !ruby/object:Gem::Version
186
- version: 0.136.1
186
+ version: 0.136.2
187
187
  - !ruby/object:Gem::Dependency
188
188
  name: eac_ruby_utils
189
189
  requirement: !ruby/object:Gem::Requirement
190
190
  requirements:
191
191
  - - "~>"
192
192
  - !ruby/object:Gem::Version
193
- version: '0.103'
193
+ version: '0.104'
194
194
  type: :runtime
195
195
  prerelease: false
196
196
  version_requirements: !ruby/object:Gem::Requirement
197
197
  requirements:
198
198
  - - "~>"
199
199
  - !ruby/object:Gem::Version
200
- version: '0.103'
200
+ version: '0.104'
201
201
  - !ruby/object:Gem::Dependency
202
202
  name: eac_ruby_gem_support
203
203
  requirement: !ruby/object:Gem::Requirement
@@ -369,27 +369,29 @@ files:
369
369
  - sub/avm-eac_redmine_base0/Gemfile
370
370
  - sub/avm-eac_redmine_base0/avm-eac_redmine_base0.gemspec
371
371
  - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0.rb
372
- - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/apache_host.rb
373
- - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/core_update.rb
374
- - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/data_unit.rb
375
372
  - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances.rb
373
+ - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/apache_host.rb
376
374
  - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base.rb
375
+ - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/data_unit.rb
377
376
  - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/deploy.rb
378
377
  - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/docker_image.rb
378
+ - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/rest_api.rb
379
379
  - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners.rb
380
380
  - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/docker.rb
381
381
  - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/project_rename.rb
382
- - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/rest_api.rb
383
382
  - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/runners.rb
384
383
  - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/runners/base.rb
385
384
  - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources.rb
386
385
  - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/base.rb
386
+ - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/core_update.rb
387
387
  - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/runners.rb
388
388
  - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/runners/core_update.rb
389
389
  - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/runners/docker.rb
390
390
  - sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/version.rb
391
391
  - sub/avm-eac_redmine_base0/locale/en.yml
392
392
  - sub/avm-eac_redmine_base0/locale/pt-BR.yml
393
+ - sub/avm-eac_redmine_base0/spec/lib/avm/eac_redmine_base0/instances/apache_host_spec.rb
394
+ - sub/avm-eac_redmine_base0/spec/lib/avm/eac_redmine_base0/instances/apache_host_spec_files/apache_host_spec_no_ssl_content.conf
393
395
  - sub/avm-eac_redmine_base0/spec/rubocop_spec.rb
394
396
  - sub/avm-eac_redmine_base0/spec/spec_helper.rb
395
397
  - sub/avm-eac_redmine_base0/template/avm/eac_redmine_base0/instances/deploy/config/install.sh.template
@@ -672,7 +674,6 @@ files:
672
674
  - sub/avm-tools/lib/avm/tools/runner/application_stereotypes/list.rb
673
675
  - sub/avm-tools/lib/avm/tools/runner/config.rb
674
676
  - sub/avm-tools/lib/avm/tools/runner/config/load_path.rb
675
- - sub/avm-tools/lib/avm/tools/runner/eac_webapp_base0.rb
676
677
  - sub/avm-tools/lib/avm/tools/runner/files.rb
677
678
  - sub/avm-tools/lib/avm/tools/runner/files/format.rb
678
679
  - sub/avm-tools/lib/avm/tools/runner/files/rotate.rb
@@ -796,7 +797,13 @@ files:
796
797
  - sub/avm/lib/avm/entries/base/uri_component_entry_value/default_value.rb
797
798
  - sub/avm/lib/avm/entries/base/uri_component_entry_value/inherited_value.rb
798
799
  - sub/avm/lib/avm/entries/base/uri_component_entry_value/url_entry_value.rb
800
+ - sub/avm/lib/avm/entries/base/uri_components_entries_values.rb
801
+ - sub/avm/lib/avm/entries/base/uri_components_entries_values/component_factory.rb
802
+ - sub/avm/lib/avm/entries/base/uri_components_entries_values/generic_component.rb
803
+ - sub/avm/lib/avm/entries/base/uri_components_entries_values/path_component.rb
804
+ - sub/avm/lib/avm/entries/base/uri_components_entries_values/url_component.rb
799
805
  - sub/avm/lib/avm/entries/entry.rb
806
+ - sub/avm/lib/avm/entries/keys_constants_set.rb
800
807
  - sub/avm/lib/avm/entries/uri_builder.rb
801
808
  - sub/avm/lib/avm/executables.rb
802
809
  - sub/avm/lib/avm/instances.rb
@@ -804,13 +811,13 @@ files:
804
811
  - sub/avm/lib/avm/instances/base/auto_values.rb
805
812
  - sub/avm/lib/avm/instances/base/auto_values/data.rb
806
813
  - sub/avm/lib/avm/instances/base/auto_values/database.rb
807
- - sub/avm/lib/avm/instances/base/auto_values/install.rb
808
814
  - sub/avm/lib/avm/instances/base/auto_values/mailer.rb
809
815
  - sub/avm/lib/avm/instances/base/auto_values/ruby.rb
810
816
  - sub/avm/lib/avm/instances/base/auto_values/source.rb
811
- - sub/avm/lib/avm/instances/base/auto_values/web.rb
812
817
  - sub/avm/lib/avm/instances/base/dockerizable.rb
813
818
  - sub/avm/lib/avm/instances/base/entry_keys.rb
819
+ - sub/avm/lib/avm/instances/base/install.rb
820
+ - sub/avm/lib/avm/instances/base/web.rb
814
821
  - sub/avm/lib/avm/instances/docker_image.rb
815
822
  - sub/avm/lib/avm/instances/entry_keys.rb
816
823
  - sub/avm/lib/avm/instances/runner.rb
@@ -1031,6 +1038,228 @@ files:
1031
1038
  - sub/eac_fs/spec/lib/eac_fs/storage_tree_spec.rb
1032
1039
  - sub/eac_fs/spec/rubocop_spec.rb
1033
1040
  - sub/eac_fs/spec/spec_helper.rb
1041
+ - sub/eac_git/Gemfile
1042
+ - sub/eac_git/eac_git.gemspec
1043
+ - sub/eac_git/lib/eac_git.rb
1044
+ - sub/eac_git/lib/eac_git/executables.rb
1045
+ - sub/eac_git/lib/eac_git/local.rb
1046
+ - sub/eac_git/lib/eac_git/local/branch.rb
1047
+ - sub/eac_git/lib/eac_git/local/commit.rb
1048
+ - sub/eac_git/lib/eac_git/local/commit/archive.rb
1049
+ - sub/eac_git/lib/eac_git/local/commit/changed_file.rb
1050
+ - sub/eac_git/lib/eac_git/local/commit/diff_tree_line.rb
1051
+ - sub/eac_git/lib/eac_git/local/dirty_files.rb
1052
+ - sub/eac_git/lib/eac_git/local/log.rb
1053
+ - sub/eac_git/lib/eac_git/local/remote.rb
1054
+ - sub/eac_git/lib/eac_git/local/remotes.rb
1055
+ - sub/eac_git/lib/eac_git/local/subrepo.rb
1056
+ - sub/eac_git/lib/eac_git/local/subrepo/config.rb
1057
+ - sub/eac_git/lib/eac_git/remote.rb
1058
+ - sub/eac_git/lib/eac_git/remote/ls_result.rb
1059
+ - sub/eac_git/lib/eac_git/rspec.rb
1060
+ - sub/eac_git/lib/eac_git/rspec/setup.rb
1061
+ - sub/eac_git/lib/eac_git/rspec/stubbed_git_local_repo.rb
1062
+ - sub/eac_git/lib/eac_git/version.rb
1063
+ - sub/eac_git/spec/lib/eac_git/executables_spec.rb
1064
+ - sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec.rb
1065
+ - sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/add.source.out
1066
+ - sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/add.target.yaml
1067
+ - sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/modify.source.out
1068
+ - sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/modify.target.yaml
1069
+ - sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/remove.source.out
1070
+ - sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/remove.target.yaml
1071
+ - sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename.source.out
1072
+ - sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename.target.yaml
1073
+ - sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename_modify.source.out
1074
+ - sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename_modify.target.yaml
1075
+ - sub/eac_git/spec/lib/eac_git/local/commit_spec.rb
1076
+ - sub/eac_git/spec/rubocop_spec.rb
1077
+ - sub/eac_git/spec/spec_helper.rb
1078
+ - sub/eac_git/vendor/git-subrepo/Changes
1079
+ - sub/eac_git/vendor/git-subrepo/Intro.pod
1080
+ - sub/eac_git/vendor/git-subrepo/License
1081
+ - sub/eac_git/vendor/git-subrepo/Makefile
1082
+ - sub/eac_git/vendor/git-subrepo/Meta
1083
+ - sub/eac_git/vendor/git-subrepo/ReadMe.pod
1084
+ - sub/eac_git/vendor/git-subrepo/doc/comparison.swim
1085
+ - sub/eac_git/vendor/git-subrepo/doc/git-subrepo.swim
1086
+ - sub/eac_git/vendor/git-subrepo/doc/intro-to-subrepo.swim
1087
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/Changes
1088
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/License
1089
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/Makefile
1090
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/Meta
1091
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/ReadMe.pod
1092
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/bin/bash+
1093
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/doc/bash+.swim
1094
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/lib/bash+.bash
1095
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/man/man1/bash+.1
1096
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/man/man3/bash+.3
1097
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/test/base.t
1098
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/test/fcopy.t
1099
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/test/lib/foo/bar.bash
1100
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/test/lib/foo/foo.bash
1101
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/test/source-bash+-std.t
1102
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/test/source-bash+.t
1103
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/test/test.bash
1104
+ - sub/eac_git/vendor/git-subrepo/ext/bashplus/test/use.t
1105
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/Changes
1106
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/License
1107
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/Makefile
1108
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/Meta
1109
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ReadMe.pod
1110
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/doc/test-more.swim
1111
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/Changes
1112
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/License
1113
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/Makefile
1114
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/Meta
1115
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/ReadMe.pod
1116
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/bin/bash+
1117
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/doc/bash+.swim
1118
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/lib/bash+.bash
1119
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/man/man1/bash+.1
1120
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/man/man3/bash+.3
1121
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/base.t
1122
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/fcopy.t
1123
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/lib/foo/bar.bash
1124
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/lib/foo/foo.bash
1125
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/source-bash+-std.t
1126
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/source-bash+.t
1127
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/test.bash
1128
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/use.t
1129
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/Changes
1130
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/License
1131
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/Makefile
1132
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/Meta
1133
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/ReadMe.pod
1134
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/doc/test-tap.swim
1135
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/lib/test/tap.bash
1136
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/man/man3/test-tap.3
1137
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/bail_out.t
1138
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/done.t
1139
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/fail.t
1140
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/fail_fast.t
1141
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/helper.bash
1142
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/pass.t
1143
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/plan.t
1144
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/skip_all.t
1145
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/tap.t
1146
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/bail.t
1147
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/fail.t
1148
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/fail_fast.t
1149
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/skip-all-init.t
1150
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/skip-all-plan.t
1151
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/lib/test/more.bash
1152
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/man/man3/test-more.3
1153
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/fail.t
1154
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/more.t
1155
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/pass.t
1156
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/setup
1157
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/skip_all.t
1158
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/test/fail1.t
1159
+ - sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/test/skip_all.t
1160
+ - sub/eac_git/vendor/git-subrepo/lib/git-subrepo
1161
+ - sub/eac_git/vendor/git-subrepo/lib/git-subrepo.d/bash+.bash
1162
+ - sub/eac_git/vendor/git-subrepo/lib/git-subrepo.d/help-functions.bash
1163
+ - sub/eac_git/vendor/git-subrepo/man/man1/git-subrepo.1
1164
+ - sub/eac_git/vendor/git-subrepo/note/0.4.0
1165
+ - sub/eac_git/vendor/git-subrepo/note/AllGitCmds
1166
+ - sub/eac_git/vendor/git-subrepo/note/Cases
1167
+ - sub/eac_git/vendor/git-subrepo/note/Commands
1168
+ - sub/eac_git/vendor/git-subrepo/note/Dags
1169
+ - sub/eac_git/vendor/git-subrepo/note/Gists
1170
+ - sub/eac_git/vendor/git-subrepo/note/Links
1171
+ - sub/eac_git/vendor/git-subrepo/note/Plugins
1172
+ - sub/eac_git/vendor/git-subrepo/note/Spec
1173
+ - sub/eac_git/vendor/git-subrepo/note/Story1
1174
+ - sub/eac_git/vendor/git-subrepo/note/ToDo
1175
+ - sub/eac_git/vendor/git-subrepo/note/design.swim
1176
+ - sub/eac_git/vendor/git-subrepo/note/design2.swim
1177
+ - sub/eac_git/vendor/git-subrepo/note/init-test
1178
+ - sub/eac_git/vendor/git-subrepo/note/pull-dance.txt
1179
+ - sub/eac_git/vendor/git-subrepo/note/recreate-rebase-conflict.sh
1180
+ - sub/eac_git/vendor/git-subrepo/note/subtree-rebase-fail-example/test.bash
1181
+ - sub/eac_git/vendor/git-subrepo/note/test-subrepo-push.sh
1182
+ - sub/eac_git/vendor/git-subrepo/note/test.sh
1183
+ - sub/eac_git/vendor/git-subrepo/pkg/bin/generate-completion.pl
1184
+ - sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl
1185
+ - sub/eac_git/vendor/git-subrepo/share/completion.bash
1186
+ - sub/eac_git/vendor/git-subrepo/share/enable-completion.sh
1187
+ - sub/eac_git/vendor/git-subrepo/share/git-completion.bash
1188
+ - sub/eac_git/vendor/git-subrepo/share/zsh-completion/_git-subrepo
1189
+ - sub/eac_git/vendor/git-subrepo/test/branch-all.t
1190
+ - sub/eac_git/vendor/git-subrepo/test/branch-rev-list-one-path.t
1191
+ - sub/eac_git/vendor/git-subrepo/test/branch-rev-list.t
1192
+ - sub/eac_git/vendor/git-subrepo/test/branch.t
1193
+ - sub/eac_git/vendor/git-subrepo/test/clean.t
1194
+ - sub/eac_git/vendor/git-subrepo/test/clone-annotated-tag.t
1195
+ - sub/eac_git/vendor/git-subrepo/test/clone.t
1196
+ - sub/eac_git/vendor/git-subrepo/test/compile.t
1197
+ - sub/eac_git/vendor/git-subrepo/test/config.t
1198
+ - sub/eac_git/vendor/git-subrepo/test/encode.t
1199
+ - sub/eac_git/vendor/git-subrepo/test/error.t
1200
+ - sub/eac_git/vendor/git-subrepo/test/fetch.t
1201
+ - sub/eac_git/vendor/git-subrepo/test/gitignore.t
1202
+ - sub/eac_git/vendor/git-subrepo/test/init.t
1203
+ - sub/eac_git/vendor/git-subrepo/test/issue29.t
1204
+ - sub/eac_git/vendor/git-subrepo/test/issue95.t
1205
+ - sub/eac_git/vendor/git-subrepo/test/issue96.t
1206
+ - sub/eac_git/vendor/git-subrepo/test/pull-all.t
1207
+ - sub/eac_git/vendor/git-subrepo/test/pull-merge.t
1208
+ - sub/eac_git/vendor/git-subrepo/test/pull-message.t
1209
+ - sub/eac_git/vendor/git-subrepo/test/pull-new-branch.t
1210
+ - sub/eac_git/vendor/git-subrepo/test/pull-ours.t
1211
+ - sub/eac_git/vendor/git-subrepo/test/pull-theirs.t
1212
+ - sub/eac_git/vendor/git-subrepo/test/pull-twice.t
1213
+ - sub/eac_git/vendor/git-subrepo/test/pull-worktree.t
1214
+ - sub/eac_git/vendor/git-subrepo/test/pull.t
1215
+ - sub/eac_git/vendor/git-subrepo/test/push-after-init.t
1216
+ - sub/eac_git/vendor/git-subrepo/test/push-force.t
1217
+ - sub/eac_git/vendor/git-subrepo/test/push-new-branch.t
1218
+ - sub/eac_git/vendor/git-subrepo/test/push-no-changes.t
1219
+ - sub/eac_git/vendor/git-subrepo/test/push-squash.t
1220
+ - sub/eac_git/vendor/git-subrepo/test/push.t
1221
+ - sub/eac_git/vendor/git-subrepo/test/reclone.t
1222
+ - sub/eac_git/vendor/git-subrepo/test/repo/bar/HEAD
1223
+ - sub/eac_git/vendor/git-subrepo/test/repo/bar/config
1224
+ - sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/1f/0c4b264caed0126814a0ede851a1e0b4e16ae6
1225
+ - sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/87/46903fdb1b9c2101377880125917c2e05b4d69
1226
+ - sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/94/c86ffc745232d89f78c6f895e11e71272518db
1227
+ - sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/c6/76c57b6576743fa56278527aa60ebd2e202a7c
1228
+ - sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391
1229
+ - sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/f6/2a8ff3feadf39b0a98f1a86ec6d1eb33858ee9
1230
+ - sub/eac_git/vendor/git-subrepo/test/repo/bar/refs/heads/master
1231
+ - sub/eac_git/vendor/git-subrepo/test/repo/bar/refs/tags/A
1232
+ - sub/eac_git/vendor/git-subrepo/test/repo/foo/HEAD
1233
+ - sub/eac_git/vendor/git-subrepo/test/repo/foo/config
1234
+ - sub/eac_git/vendor/git-subrepo/test/repo/foo/objects/a0/f4cdaaf533a936296cdebbed8206c3b9ededa8
1235
+ - sub/eac_git/vendor/git-subrepo/test/repo/foo/objects/e2/1291a1ad392a9d4c51dd9586804f1467b28afd
1236
+ - sub/eac_git/vendor/git-subrepo/test/repo/foo/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391
1237
+ - sub/eac_git/vendor/git-subrepo/test/repo/foo/refs/heads/master
1238
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/HEAD
1239
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/config
1240
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/11/523f5dcf03b4c89b592dc8a3d0308f68da2386
1241
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/14/2addf8ec5f37334e837440122c62f2c68a29ad
1242
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/32/5180321750a21cd7a4e7ecda319e557a4f6a09
1243
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/3d/918c6901c02f43af5d31779dd5e1f9166aeb36
1244
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/3e/4cb596066dce63ba4d047abddb677389b65e19
1245
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/4b/6e53022e7a04f07887697e4f3d7c377fd9822b
1246
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/58/931fc1bd559b59c41ea738fc7ad04f9ad01bd3
1247
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/5e/c0c28e1b806f25efdca18fcf7a74b49c3755bd
1248
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/75/fa6584e748f57eff06eebdc55e9ac21d4fcbf2
1249
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/80/2d5edbd5e1cb7fca82b5bd38e7c8a0a496fb20
1250
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/94/7b3d714c38791e95ad6f928b48c98bb8708acd
1251
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/95/e1f2df3f4d5f3d7a60588c25a7ca8a913d3c2a
1252
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/b1/5f4a7666baf40d949548ead946a3370e273479
1253
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/c3/ee8978c4c5d84c3b7d00ba8e5906933d027882
1254
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/c8/b0bffbc405ef3fad7354ff833fbec36d67ddfa
1255
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/dd/8bdb934ec848137f011fe423b185505c343626
1256
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/e2/9be58c767cfeb27235c995d293a7d71aac0135
1257
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/ee/1224401fc6aac595145fa727dcf6706ac8aec1
1258
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/objects/f1/cc1a657b2e805c400f5dcaaa76bd29c6178b1b
1259
+ - sub/eac_git/vendor/git-subrepo/test/repo/init/refs/heads/master
1260
+ - sub/eac_git/vendor/git-subrepo/test/setup
1261
+ - sub/eac_git/vendor/git-subrepo/test/status.t
1262
+ - sub/eac_git/vendor/git-subrepo/test/submodule.t
1034
1263
  - sub/eac_ruby_base0/Gemfile
1035
1264
  - sub/eac_ruby_base0/eac_ruby_base0.gemspec
1036
1265
  - sub/eac_ruby_base0/lib/eac_ruby_base0.rb
@@ -1139,8 +1368,10 @@ files:
1139
1368
  - sub/eac_ruby_utils/lib/eac_ruby_utils/patches/class.rb
1140
1369
  - sub/eac_ruby_utils/lib/eac_ruby_utils/patches/class/abstract.rb
1141
1370
  - sub/eac_ruby_utils/lib/eac_ruby_utils/patches/class/common_constructor.rb
1371
+ - sub/eac_ruby_utils/lib/eac_ruby_utils/patches/class/method_class.rb
1142
1372
  - sub/eac_ruby_utils/lib/eac_ruby_utils/patches/class/self_included_modules.rb
1143
1373
  - sub/eac_ruby_utils/lib/eac_ruby_utils/patches/class/settings_provider.rb
1374
+ - sub/eac_ruby_utils/lib/eac_ruby_utils/patches/class/static_method_class.rb
1144
1375
  - sub/eac_ruby_utils/lib/eac_ruby_utils/patches/enumerable.rb
1145
1376
  - sub/eac_ruby_utils/lib/eac_ruby_utils/patches/enumerable/boolean_combinations.rb
1146
1377
  - sub/eac_ruby_utils/lib/eac_ruby_utils/patches/enumerator.rb
@@ -1160,7 +1391,6 @@ files:
1160
1391
  - sub/eac_ruby_utils/lib/eac_ruby_utils/patches/module/i18n_translate.rb
1161
1392
  - sub/eac_ruby_utils/lib/eac_ruby_utils/patches/module/immutable.rb
1162
1393
  - sub/eac_ruby_utils/lib/eac_ruby_utils/patches/module/listable.rb
1163
- - sub/eac_ruby_utils/lib/eac_ruby_utils/patches/module/method_class.rb
1164
1394
  - sub/eac_ruby_utils/lib/eac_ruby_utils/patches/module/module_parent.rb
1165
1395
  - sub/eac_ruby_utils/lib/eac_ruby_utils/patches/module/patch.rb
1166
1396
  - sub/eac_ruby_utils/lib/eac_ruby_utils/patches/module/require_sub.rb
@@ -1215,6 +1445,7 @@ files:
1215
1445
  - sub/eac_ruby_utils/lib/eac_ruby_utils/speaker.rb
1216
1446
  - sub/eac_ruby_utils/lib/eac_ruby_utils/speaker/receiver.rb
1217
1447
  - sub/eac_ruby_utils/lib/eac_ruby_utils/speaker/sender.rb
1448
+ - sub/eac_ruby_utils/lib/eac_ruby_utils/static_method_class.rb
1218
1449
  - sub/eac_ruby_utils/lib/eac_ruby_utils/string_delimited.rb
1219
1450
  - sub/eac_ruby_utils/lib/eac_ruby_utils/struct.rb
1220
1451
  - sub/eac_ruby_utils/lib/eac_ruby_utils/version.rb
@@ -1243,7 +1474,9 @@ files:
1243
1474
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/options_consumer_spec.rb
1244
1475
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/addressable/uri/query_value_spec.rb
1245
1476
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/class/abstract_spec.rb
1477
+ - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/class/method_class_spec.rb
1246
1478
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/class/self_included_modules_spec.rb
1479
+ - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/class/static_method_class_spec.rb
1247
1480
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerable/boolean_combinations_spec.rb
1248
1481
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/current_spec.rb
1249
1482
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
@@ -1251,7 +1484,6 @@ files:
1251
1484
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/hash/sym_keys_hash_spec.rb
1252
1485
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/module/compare_by_spec.rb
1253
1486
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/module/listable_spec.rb
1254
- - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/module/method_class_spec.rb
1255
1487
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/module/simple_cache_spec.rb
1256
1488
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/module/speaker_spec.rb
1257
1489
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/object/call_if_proc_spec.rb
@@ -1270,6 +1502,7 @@ files:
1270
1502
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/ruby/on_replace_objects_spec.rb
1271
1503
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/settings_provider_spec.rb
1272
1504
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/simple_cache_spec.rb
1505
+ - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/static_method_class_spec.rb
1273
1506
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/struct_spec.rb
1274
1507
  - sub/eac_ruby_utils/spec/lib/eac_ruby_utils/yaml_spec.rb
1275
1508
  - sub/eac_ruby_utils/spec/locales/pt-BR.yml
@@ -1,47 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'avm/entries/uri_builder'
4
- require 'avm/instances/entry_keys'
5
-
6
- module Avm
7
- module Instances
8
- class Base
9
- module AutoValues
10
- module Install
11
- (::Avm::Entries::UriBuilder::ENTRIES_FIELDS + %w[data_path email groupname])
12
- .each do |component|
13
- method_suffix = "install_#{component}"
14
- define_method "auto_#{method_suffix}" do
15
- uri_component_entry_value(
16
- ::Avm::Instances::EntryKeys.const_get(method_suffix.underscore.upcase)
17
- )
18
- end
19
- end
20
-
21
- def auto_install_url
22
- inherited_entry_value(::Avm::Instances::EntryKeys::INSTALL_ID,
23
- ::Avm::Instances::EntryKeys::INSTALL_URL) ||
24
- auto_install_url_by_parts
25
- end
26
-
27
- def auto_install_url_by_parts
28
- require 'avm/entries/auto_values/uri_entry'
29
- ::Avm::Entries::AutoValues::UriEntry.new(self, 'install').value
30
- end
31
-
32
- def install_data_path_inherited_value_proc(value)
33
- value + '/' + id
34
- end
35
-
36
- def install_groupname_default_value
37
- read_entry_optional(::Avm::Instances::EntryKeys::INSTALL_USERNAME)
38
- end
39
-
40
- def install_path_inherited_value_proc(value)
41
- install_data_path_inherited_value_proc(value)
42
- end
43
- end
44
- end
45
- end
46
- end
47
- end
@@ -1,46 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'addressable'
4
- require 'avm/instances/entry_keys'
5
-
6
- module Avm
7
- module Instances
8
- class Base
9
- module AutoValues
10
- module Web
11
- def auto_web_authority
12
- web_url_as_uri(&:authority)
13
- end
14
-
15
- def auto_web_hostname
16
- web_url_as_uri(&:host)
17
- end
18
-
19
- def auto_web_path
20
- web_url_as_uri(&:path)
21
- end
22
-
23
- def auto_web_port
24
- web_url_as_uri(&:port)
25
- end
26
-
27
- def auto_web_scheme
28
- web_url_as_uri(&:scheme)
29
- end
30
-
31
- def auto_web_userinfo
32
- web_url_as_uri(&:userinfo)
33
- end
34
-
35
- private
36
-
37
- def web_url_as_uri
38
- read_entry_optional(::Avm::Instances::EntryKeys::WEB_URL).if_present do |v|
39
- yield(::Addressable::URI.parse(v))
40
- end
41
- end
42
- end
43
- end
44
- end
45
- end
46
- end
@@ -1,118 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'avm/eac_redmine_base0/core_update'
4
- require 'avm/sources/base/configuration'
5
- require 'avm/sync'
6
- require 'eac_fs/cached_download'
7
- require 'eac_ruby_utils/core_ext'
8
-
9
- module Avm
10
- module EacRedmineBase0
11
- class CoreUpdate
12
- enable_speaker
13
- enable_simple_cache
14
- common_constructor :source, :version, :url
15
-
16
- GITIGNORE_ADD = %w[/public/assets/**/* /config/install.sh /config/secrets_key.txt
17
- /log/**/*].freeze
18
- GITIGNORE_DEL = %w[/Gemfile.lock /plugins/* /public/themes/*].freeze
19
- TARGET_KEEP = ::Avm::Sources::Base::Configuration::CONFIGURATION_FILENAMES
20
- .map { |b| "/#{b}" } + %w[/Gemfile.lock].freeze
21
-
22
- def run
23
- ::EacRubyUtils::Fs::Temp.on_directory do |dir|
24
- @tempdir = dir
25
- assert_source_package
26
- extract_package_to_tempdir
27
- sync_content
28
- change_git_ignore
29
- validate_empty_dir
30
- end
31
- git_commit
32
- success 'Done!'
33
- end
34
-
35
- def assert_source_package
36
- infom 'Asserting source package...'
37
- source_package.assert
38
- infov 'Package cache path', source_package.path
39
- infov 'Package size', source_package.path.size
40
- end
41
-
42
- def fs_object_id
43
- [source.path, version].join('_').variableize
44
- end
45
-
46
- private
47
-
48
- attr_reader :tempdir
49
-
50
- def change_git_ignore
51
- file = target_path.join('.gitignore')
52
- file.write(
53
- (file.read.each_line.map(&:strip).reject { |line| GITIGNORE_DEL.include?(line) } +
54
- ['', '#eac_redmine_base0'] + GITIGNORE_ADD).map { |line| "#{line}\n" }.join
55
- )
56
- end
57
-
58
- def extract_package_to_tempdir
59
- infom "Extracting package to tempdir #{tempdir}..."
60
- ::EacRubyUtils::Envs.local.command(
61
- 'tar', '-xf', source_package.path.to_path, '-C', tempdir.to_path,
62
- '--strip-components', '1'
63
- ).execute!
64
- end
65
-
66
- def git_commit
67
- if git_repo.dirty?
68
- infom 'Git commiting...'
69
- git_repo.command('add', '--', target_path).execute!
70
- git_repo.command('commit', '-m', git_commit_message, '--', target_path).execute!
71
- else
72
- infom 'Nothing to commit'
73
- end
74
- end
75
-
76
- def git_commit_message
77
- i18n_translate(__method__, version: version, __locale: source.locale)
78
- end
79
-
80
- def git_repo_uncached
81
- ::EacGit::Local.new(target_path)
82
- end
83
-
84
- def sync_content
85
- ::Avm::Sync.new(source_path, target_path)
86
- .add_exclude('/*').add_includes(*target_files_to_remove).move_mode(true).run
87
- end
88
-
89
- # @return [EacFs::CachedDownload]
90
- def source_package_uncached
91
- ::EacFs::CachedDownload.new(url, fs_cache)
92
- end
93
-
94
- def validate_empty_dir
95
- if source_path.children.empty?
96
- infom 'No content left in source directory'
97
- else
98
- fatal_error 'Found entries in source directory: ' +
99
- source_path.children.map { |c| c.basename.to_path }.join(', ')
100
- end
101
- end
102
-
103
- def source_path_uncached
104
- ::Pathname.new(tempdir.to_path)
105
- end
106
-
107
- def target_files_to_remove
108
- git_repo.command('ls-files').execute!
109
- .each_line.map { |v| "/#{v.strip}" }
110
- .without(*TARGET_KEEP)
111
- end
112
-
113
- def target_path_uncached
114
- source.path
115
- end
116
- end
117
- end
118
- end