eac_tools 0.31.0 → 0.31.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (254) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +21 -16
  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-tools/avm-tools.gemspec +2 -2
  19. data/sub/avm-tools/lib/avm/tools/version.rb +1 -1
  20. data/sub/eac_git/Gemfile +8 -0
  21. data/sub/eac_git/eac_git.gemspec +20 -0
  22. data/sub/eac_git/lib/eac_git/executables.rb +48 -0
  23. data/sub/eac_git/lib/eac_git/local/branch.rb +27 -0
  24. data/sub/eac_git/lib/eac_git/local/commit/archive.rb +19 -0
  25. data/sub/eac_git/lib/eac_git/local/commit/changed_file.rb +46 -0
  26. data/sub/eac_git/lib/eac_git/local/commit/diff_tree_line.rb +32 -0
  27. data/sub/eac_git/lib/eac_git/local/commit.rb +73 -0
  28. data/sub/eac_git/lib/eac_git/local/dirty_files.rb +37 -0
  29. data/sub/eac_git/lib/eac_git/local/log.rb +17 -0
  30. data/sub/eac_git/lib/eac_git/local/remote.rb +27 -0
  31. data/sub/eac_git/lib/eac_git/local/remotes.rb +20 -0
  32. data/sub/eac_git/lib/eac_git/local/subrepo/config.rb +43 -0
  33. data/sub/eac_git/lib/eac_git/local/subrepo.rb +49 -0
  34. data/sub/eac_git/lib/eac_git/local.rb +127 -0
  35. data/sub/eac_git/lib/eac_git/remote/ls_result.rb +20 -0
  36. data/sub/eac_git/lib/eac_git/remote.rb +19 -0
  37. data/sub/eac_git/lib/eac_git/rspec/setup.rb +23 -0
  38. data/sub/eac_git/lib/eac_git/rspec/stubbed_git_local_repo.rb +71 -0
  39. data/sub/eac_git/lib/eac_git/rspec.rb +9 -0
  40. data/sub/eac_git/lib/eac_git/version.rb +5 -0
  41. data/sub/eac_git/lib/eac_git.rb +7 -0
  42. data/sub/eac_git/spec/lib/eac_git/executables_spec.rb +13 -0
  43. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec.rb +13 -0
  44. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/add.source.out +1 -0
  45. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/add.target.yaml +7 -0
  46. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/modify.source.out +1 -0
  47. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/modify.target.yaml +7 -0
  48. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/remove.source.out +1 -0
  49. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/remove.target.yaml +7 -0
  50. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename.source.out +2 -0
  51. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename.target.yaml +13 -0
  52. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename_modify.source.out +2 -0
  53. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename_modify.target.yaml +13 -0
  54. data/sub/eac_git/spec/lib/eac_git/local/commit_spec.rb +58 -0
  55. data/sub/eac_git/spec/rubocop_spec.rb +3 -0
  56. data/sub/eac_git/spec/spec_helper.rb +4 -0
  57. data/sub/eac_git/vendor/git-subrepo/Changes +110 -0
  58. data/sub/eac_git/vendor/git-subrepo/Intro.pod +509 -0
  59. data/sub/eac_git/vendor/git-subrepo/License +21 -0
  60. data/sub/eac_git/vendor/git-subrepo/Makefile +82 -0
  61. data/sub/eac_git/vendor/git-subrepo/Meta +28 -0
  62. data/sub/eac_git/vendor/git-subrepo/ReadMe.pod +698 -0
  63. data/sub/eac_git/vendor/git-subrepo/doc/comparison.swim +35 -0
  64. data/sub/eac_git/vendor/git-subrepo/doc/git-subrepo.swim +608 -0
  65. data/sub/eac_git/vendor/git-subrepo/doc/intro-to-subrepo.swim +387 -0
  66. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/Changes +15 -0
  67. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/License +21 -0
  68. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/Makefile +45 -0
  69. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/Meta +28 -0
  70. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/ReadMe.pod +77 -0
  71. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/bin/bash+ +43 -0
  72. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/doc/bash+.swim +61 -0
  73. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/lib/bash+.bash +92 -0
  74. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/man/man1/bash+.1 +134 -0
  75. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/man/man3/bash+.3 +134 -0
  76. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/base.t +12 -0
  77. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/fcopy.t +22 -0
  78. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/lib/foo/bar.bash +3 -0
  79. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/lib/foo/foo.bash +3 -0
  80. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/source-bash+-std.t +18 -0
  81. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/source-bash+.t +23 -0
  82. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/test.bash +70 -0
  83. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/use.t +19 -0
  84. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/Changes +15 -0
  85. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/License +21 -0
  86. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/Makefile +20 -0
  87. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/Meta +30 -0
  88. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ReadMe.pod +115 -0
  89. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/doc/test-more.swim +89 -0
  90. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/Changes +15 -0
  91. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/License +21 -0
  92. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/Makefile +45 -0
  93. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/Meta +28 -0
  94. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/ReadMe.pod +77 -0
  95. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/bin/bash+ +43 -0
  96. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/doc/bash+.swim +61 -0
  97. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/lib/bash+.bash +92 -0
  98. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/man/man1/bash+.1 +134 -0
  99. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/man/man3/bash+.3 +134 -0
  100. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/base.t +12 -0
  101. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/fcopy.t +22 -0
  102. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/lib/foo/bar.bash +3 -0
  103. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/lib/foo/foo.bash +3 -0
  104. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/source-bash+-std.t +18 -0
  105. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/source-bash+.t +23 -0
  106. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/test.bash +70 -0
  107. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/use.t +19 -0
  108. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/Changes +15 -0
  109. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/License +21 -0
  110. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/Makefile +37 -0
  111. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/Meta +28 -0
  112. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/ReadMe.pod +66 -0
  113. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/doc/test-tap.swim +48 -0
  114. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/lib/test/tap.bash +153 -0
  115. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/man/man3/test-tap.3 +119 -0
  116. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/bail_out.t +13 -0
  117. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/done.t +10 -0
  118. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/fail.t +20 -0
  119. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/fail_fast.t +15 -0
  120. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/helper.bash +9 -0
  121. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/pass.t +9 -0
  122. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/plan.t +10 -0
  123. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/skip_all.t +20 -0
  124. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/tap.t +13 -0
  125. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/bail.t +14 -0
  126. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/fail.t +7 -0
  127. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/fail_fast.t +12 -0
  128. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/skip-all-init.t +8 -0
  129. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/skip-all-plan.t +9 -0
  130. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/lib/test/more.bash +95 -0
  131. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/man/man3/test-more.3 +173 -0
  132. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/fail.t +20 -0
  133. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/more.t +20 -0
  134. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/pass.t +9 -0
  135. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/setup +8 -0
  136. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/skip_all.t +11 -0
  137. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/test/fail1.t +12 -0
  138. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/test/skip_all.t +10 -0
  139. data/sub/eac_git/vendor/git-subrepo/lib/git-subrepo +1903 -0
  140. data/sub/eac_git/vendor/git-subrepo/lib/git-subrepo.d/bash+.bash +1 -0
  141. data/sub/eac_git/vendor/git-subrepo/lib/git-subrepo.d/help-functions.bash +339 -0
  142. data/sub/eac_git/vendor/git-subrepo/man/man1/git-subrepo.1 +743 -0
  143. data/sub/eac_git/vendor/git-subrepo/note/0.4.0 +12 -0
  144. data/sub/eac_git/vendor/git-subrepo/note/AllGitCmds +148 -0
  145. data/sub/eac_git/vendor/git-subrepo/note/Cases +32 -0
  146. data/sub/eac_git/vendor/git-subrepo/note/Commands +33 -0
  147. data/sub/eac_git/vendor/git-subrepo/note/Dags +199 -0
  148. data/sub/eac_git/vendor/git-subrepo/note/Gists +7 -0
  149. data/sub/eac_git/vendor/git-subrepo/note/Links +25 -0
  150. data/sub/eac_git/vendor/git-subrepo/note/Plugins +10 -0
  151. data/sub/eac_git/vendor/git-subrepo/note/Spec +39 -0
  152. data/sub/eac_git/vendor/git-subrepo/note/Story1 +57 -0
  153. data/sub/eac_git/vendor/git-subrepo/note/ToDo +55 -0
  154. data/sub/eac_git/vendor/git-subrepo/note/design.swim +137 -0
  155. data/sub/eac_git/vendor/git-subrepo/note/design2.swim +85 -0
  156. data/sub/eac_git/vendor/git-subrepo/note/init-test +38 -0
  157. data/sub/eac_git/vendor/git-subrepo/note/pull-dance.txt +18 -0
  158. data/sub/eac_git/vendor/git-subrepo/note/recreate-rebase-conflict.sh +56 -0
  159. data/sub/eac_git/vendor/git-subrepo/note/subtree-rebase-fail-example/test.bash +29 -0
  160. data/sub/eac_git/vendor/git-subrepo/note/test-subrepo-push.sh +69 -0
  161. data/sub/eac_git/vendor/git-subrepo/note/test.sh +58 -0
  162. data/sub/eac_git/vendor/git-subrepo/pkg/bin/generate-completion.pl +210 -0
  163. data/sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl +89 -0
  164. data/sub/eac_git/vendor/git-subrepo/share/completion.bash +42 -0
  165. data/sub/eac_git/vendor/git-subrepo/share/enable-completion.sh +50 -0
  166. data/sub/eac_git/vendor/git-subrepo/share/git-completion.bash +2738 -0
  167. data/sub/eac_git/vendor/git-subrepo/share/zsh-completion/_git-subrepo +81 -0
  168. data/sub/eac_git/vendor/git-subrepo/test/branch-all.t +41 -0
  169. data/sub/eac_git/vendor/git-subrepo/test/branch-rev-list-one-path.t +43 -0
  170. data/sub/eac_git/vendor/git-subrepo/test/branch-rev-list.t +47 -0
  171. data/sub/eac_git/vendor/git-subrepo/test/branch.t +52 -0
  172. data/sub/eac_git/vendor/git-subrepo/test/clean.t +43 -0
  173. data/sub/eac_git/vendor/git-subrepo/test/clone-annotated-tag.t +45 -0
  174. data/sub/eac_git/vendor/git-subrepo/test/clone.t +107 -0
  175. data/sub/eac_git/vendor/git-subrepo/test/compile.t +19 -0
  176. data/sub/eac_git/vendor/git-subrepo/test/config.t +58 -0
  177. data/sub/eac_git/vendor/git-subrepo/test/encode.t +91 -0
  178. data/sub/eac_git/vendor/git-subrepo/test/error.t +171 -0
  179. data/sub/eac_git/vendor/git-subrepo/test/fetch.t +43 -0
  180. data/sub/eac_git/vendor/git-subrepo/test/gitignore.t +61 -0
  181. data/sub/eac_git/vendor/git-subrepo/test/init.t +64 -0
  182. data/sub/eac_git/vendor/git-subrepo/test/issue29.t +98 -0
  183. data/sub/eac_git/vendor/git-subrepo/test/issue95.t +98 -0
  184. data/sub/eac_git/vendor/git-subrepo/test/issue96.t +96 -0
  185. data/sub/eac_git/vendor/git-subrepo/test/pull-all.t +38 -0
  186. data/sub/eac_git/vendor/git-subrepo/test/pull-merge.t +113 -0
  187. data/sub/eac_git/vendor/git-subrepo/test/pull-message.t +88 -0
  188. data/sub/eac_git/vendor/git-subrepo/test/pull-new-branch.t +58 -0
  189. data/sub/eac_git/vendor/git-subrepo/test/pull-ours.t +90 -0
  190. data/sub/eac_git/vendor/git-subrepo/test/pull-theirs.t +82 -0
  191. data/sub/eac_git/vendor/git-subrepo/test/pull-twice.t +44 -0
  192. data/sub/eac_git/vendor/git-subrepo/test/pull-worktree.t +40 -0
  193. data/sub/eac_git/vendor/git-subrepo/test/pull.t +99 -0
  194. data/sub/eac_git/vendor/git-subrepo/test/push-after-init.t +51 -0
  195. data/sub/eac_git/vendor/git-subrepo/test/push-force.t +56 -0
  196. data/sub/eac_git/vendor/git-subrepo/test/push-new-branch.t +61 -0
  197. data/sub/eac_git/vendor/git-subrepo/test/push-no-changes.t +29 -0
  198. data/sub/eac_git/vendor/git-subrepo/test/push-squash.t +56 -0
  199. data/sub/eac_git/vendor/git-subrepo/test/push.t +176 -0
  200. data/sub/eac_git/vendor/git-subrepo/test/reclone.t +45 -0
  201. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/HEAD +1 -0
  202. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/config +4 -0
  203. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/1f/0c4b264caed0126814a0ede851a1e0b4e16ae6 +0 -0
  204. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/87/46903fdb1b9c2101377880125917c2e05b4d69 +0 -0
  205. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/94/c86ffc745232d89f78c6f895e11e71272518db +0 -0
  206. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/c6/76c57b6576743fa56278527aa60ebd2e202a7c +0 -0
  207. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 +0 -0
  208. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/f6/2a8ff3feadf39b0a98f1a86ec6d1eb33858ee9 +0 -0
  209. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/refs/heads/master +1 -0
  210. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/refs/tags/A +1 -0
  211. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/HEAD +1 -0
  212. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/config +4 -0
  213. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/objects/a0/f4cdaaf533a936296cdebbed8206c3b9ededa8 +0 -0
  214. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/objects/e2/1291a1ad392a9d4c51dd9586804f1467b28afd +0 -0
  215. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 +0 -0
  216. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/refs/heads/master +1 -0
  217. data/sub/eac_git/vendor/git-subrepo/test/repo/init/HEAD +1 -0
  218. data/sub/eac_git/vendor/git-subrepo/test/repo/init/config +5 -0
  219. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/11/523f5dcf03b4c89b592dc8a3d0308f68da2386 +0 -0
  220. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/14/2addf8ec5f37334e837440122c62f2c68a29ad +0 -0
  221. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/32/5180321750a21cd7a4e7ecda319e557a4f6a09 +2 -0
  222. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/3d/918c6901c02f43af5d31779dd5e1f9166aeb36 +0 -0
  223. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/3e/4cb596066dce63ba4d047abddb677389b65e19 +0 -0
  224. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/4b/6e53022e7a04f07887697e4f3d7c377fd9822b +0 -0
  225. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/58/931fc1bd559b59c41ea738fc7ad04f9ad01bd3 +0 -0
  226. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/5e/c0c28e1b806f25efdca18fcf7a74b49c3755bd +0 -0
  227. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/75/fa6584e748f57eff06eebdc55e9ac21d4fcbf2 +1 -0
  228. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/80/2d5edbd5e1cb7fca82b5bd38e7c8a0a496fb20 +0 -0
  229. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/94/7b3d714c38791e95ad6f928b48c98bb8708acd +0 -0
  230. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/95/e1f2df3f4d5f3d7a60588c25a7ca8a913d3c2a +1 -0
  231. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/b1/5f4a7666baf40d949548ead946a3370e273479 +0 -0
  232. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/c3/ee8978c4c5d84c3b7d00ba8e5906933d027882 +0 -0
  233. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/c8/b0bffbc405ef3fad7354ff833fbec36d67ddfa +3 -0
  234. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/dd/8bdb934ec848137f011fe423b185505c343626 +2 -0
  235. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/e2/9be58c767cfeb27235c995d293a7d71aac0135 +2 -0
  236. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/ee/1224401fc6aac595145fa727dcf6706ac8aec1 +1 -0
  237. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/f1/cc1a657b2e805c400f5dcaaa76bd29c6178b1b +0 -0
  238. data/sub/eac_git/vendor/git-subrepo/test/repo/init/refs/heads/master +1 -0
  239. data/sub/eac_git/vendor/git-subrepo/test/setup +205 -0
  240. data/sub/eac_git/vendor/git-subrepo/test/status.t +68 -0
  241. data/sub/eac_git/vendor/git-subrepo/test/submodule.t +45 -0
  242. data/sub/eac_ruby_utils/eac_ruby_utils.gemspec +1 -1
  243. data/sub/eac_ruby_utils/lib/eac_ruby_utils/method_class.rb +4 -2
  244. data/sub/eac_ruby_utils/lib/eac_ruby_utils/patches/{module → class}/method_class.rb +0 -0
  245. data/sub/eac_ruby_utils/lib/eac_ruby_utils/patches/class/static_method_class.rb +9 -0
  246. data/sub/eac_ruby_utils/lib/eac_ruby_utils/static_method_class.rb +12 -0
  247. data/sub/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
  248. data/sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/{module → class}/method_class_spec.rb +1 -1
  249. data/sub/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/class/static_method_class_spec.rb +20 -0
  250. data/sub/eac_ruby_utils/spec/lib/eac_ruby_utils/static_method_class_spec.rb +44 -0
  251. metadata +244 -13
  252. data/sub/avm/lib/avm/instances/base/auto_values/install.rb +0 -47
  253. data/sub/avm/lib/avm/instances/base/auto_values/web.rb +0 -46
  254. data/sub/avm-tools/lib/avm/tools/runner/eac_webapp_base0.rb +0 -14
@@ -0,0 +1,205 @@
1
+ #!/usr/bin/env bash
2
+
3
+ set -e
4
+
5
+ # Set the GIT_SUBREPO_ROOT for testing.
6
+ source $PWD/.rc
7
+
8
+ # Set this locally for Windows:
9
+ git config core.autocrlf input
10
+
11
+ export BASHLIB="`
12
+ find $PWD -type d |
13
+ grep -E '/(bin|lib)$' |
14
+ xargs -n1 printf "%s:"
15
+ `"
16
+ export PATH="$BASHLIB:$PATH"
17
+ source bash+ :std
18
+
19
+ source 'lib/git-subrepo'
20
+
21
+ # TODO: Move to test/tmp
22
+ export TMP="tmp"
23
+ rm -fr $TMP
24
+
25
+ #export GIT_EXEC_PATH="$PWD/lib:$(git --exec-path)"
26
+ export UPSTREAM="$TMP/upstream"
27
+ export OWNER="$TMP/owner"
28
+ export COLLAB="$TMP/collab"
29
+
30
+ mkdir -p "$UPSTREAM" "$OWNER" "$COLLAB"
31
+
32
+ cp -r test/repo/{foo,bar,init} "$UPSTREAM/"
33
+
34
+ ###
35
+ # Test helper functions:
36
+ ###
37
+ clone-foo-and-bar() {
38
+ (
39
+ # foo will act as the main repo
40
+ git clone $UPSTREAM/foo $OWNER/foo
41
+ (
42
+ cd $OWNER/foo
43
+ git config core.autocrlf input
44
+ git config user.name "FooUser"
45
+ git config user.email "foo@foo"
46
+ )
47
+ # bar will act as the subrepo
48
+ git clone $UPSTREAM/bar $OWNER/bar
49
+ (
50
+ cd $OWNER/bar
51
+ git config core.autocrlf input
52
+ git config user.name "BarUser"
53
+ git config user.email "bar@bar"
54
+ )
55
+ ) &> /dev/null || die
56
+ }
57
+
58
+ subrepo-clone-bar-into-foo() {
59
+ (
60
+ cd $OWNER/foo
61
+ git subrepo clone ../../../$UPSTREAM/bar
62
+ ) &> /dev/null || die
63
+ }
64
+
65
+ add-new-files() {
66
+ local file
67
+ for file in $*; do
68
+ echo "new file $file" > "$file"
69
+ git add "$file"
70
+ done
71
+ git commit --quiet -m "add new file: $file" &> /dev/null
72
+ }
73
+
74
+ remove-files() {
75
+ local file
76
+ for file in $*; do
77
+ git rm "$file"
78
+ done
79
+ git commit --quiet -m "Removed file: $file" &> /dev/null
80
+ }
81
+
82
+ modify-files() {
83
+ local file
84
+ for file in $*; do
85
+ echo 'a new line' >> "$file"
86
+ git add "$file"
87
+ done
88
+ git commit -m "modified file: $file"
89
+ }
90
+
91
+ modify-files-ex() {
92
+ local file
93
+ for file in $*; do
94
+ echo "$file" >> "$file"
95
+ git add "$file"
96
+ done
97
+ git commit -m "modified file: $file"
98
+ }
99
+
100
+ test-exists() {
101
+ for f in "$@"; do
102
+ if [[ $f =~ ^! ]]; then
103
+ f="${f#!}"
104
+ if [[ $f =~ /$ ]]; then
105
+ ok "`[ ! -d "$f" ]`" \
106
+ "Directory '$f' does not exist"
107
+ else
108
+ ok "`[ ! -f "$f" ]`" \
109
+ "File '$f' does not exist"
110
+ fi
111
+ else
112
+ if [[ $f =~ /$ ]]; then
113
+ ok "`[ -d "$f" ]`" \
114
+ "Directory '$f' exists"
115
+ else
116
+ ok "`[ -f "$f" ]`" \
117
+ "File '$f' exists"
118
+ fi
119
+ fi
120
+ done
121
+ }
122
+
123
+ test-exists-in-index() {
124
+ for f in $*; do
125
+ if [[ "$f" =~ ^! ]]; then
126
+ f="${f#!}"
127
+ if [[ "$f" =~ /$ ]]; then
128
+ ok "`[ ! $(git ls-tree --full-tree --name-only -r HEAD "$f") ]`" \
129
+ "Directory '$f' does not exist in index"
130
+ else
131
+ ok "`[ ! $(git ls-tree --full-tree --name-only -r HEAD "$f") ]`" \
132
+ "File '$f' does not exist in index"
133
+ fi
134
+ else
135
+ if [[ "$f" =~ /$ ]]; then
136
+ ok "`[ $(git ls-tree --full-tree --name-only -r HEAD "$f") ]`" \
137
+ "Directory '$f' exists in index"
138
+ else
139
+ ok "`[ $(git ls-tree --full-tree --name-only -r HEAD "$f") ]`" \
140
+ "File '$f' exists in index"
141
+ fi
142
+ fi
143
+ done
144
+ }
145
+
146
+ test-gitrepo-comment-block() {
147
+ is "$(grep -E '^;' $gitrepo)" "\
148
+ ; DO NOT EDIT (unless you know what you are doing)
149
+ ;
150
+ ; This subdirectory is a git \"subrepo\", and this file is maintained by the
151
+ ; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme
152
+ ;" \
153
+ 'Comment header block is correct'
154
+ }
155
+
156
+ test-gitrepo-field() {
157
+ is "`git config -f $gitrepo subrepo.$1`" \
158
+ "$2" \
159
+ ".gitrepo $1 is correct"
160
+ }
161
+
162
+ test-commit-count() {
163
+ is "`cd $1; git rev-list --count $2`" \
164
+ "$3" \
165
+ "commit count is correct"
166
+ }
167
+
168
+ save-original-state() {
169
+ original_head_ref="$(cd $1; cat .git/HEAD)"
170
+ original_branch="${original_head_ref#ref: refs/heads/}"
171
+ original_head_commit="$(cd $1; git rev-parse HEAD)"
172
+ original_gitrepo="$(cd $1; cat $2/.gitrepo)"
173
+ }
174
+
175
+ assert-original-state() {
176
+ current_head_ref="$(cd $1; cat .git/HEAD)"
177
+ current_branch="${current_head_ref#ref: refs/heads/}"
178
+ current_head_commit="$(cd $1; git rev-parse HEAD)"
179
+ current_gitrepo="$(cd $1; cat $2/.gitrepo)"
180
+
181
+ is "$current_head_ref" \
182
+ "$original_head_ref" \
183
+ "Current HEAD is still $original_head_ref"
184
+
185
+ is "$current_branch" \
186
+ "$original_branch" \
187
+ "Current branch is still $original_branch"
188
+
189
+ is "$current_head_commit" \
190
+ "$original_head_commit" \
191
+ "Current HEAD commit is still $original_head_commit"
192
+
193
+ is "$current_gitrepo" \
194
+ "$original_gitrepo" \
195
+ "$2/.gitrepo has not changed"
196
+ }
197
+
198
+ catch() {
199
+ local error=; error="$("$@" 2>&1 || true)"
200
+ echo "$error"
201
+ }
202
+
203
+ teardown() {
204
+ rm -fr $TMP
205
+ }
@@ -0,0 +1,68 @@
1
+ #!/usr/bin/env bash
2
+
3
+ set -e
4
+
5
+ source test/setup
6
+
7
+ use Test::More
8
+
9
+ {
10
+ output="$(git subrepo status)"
11
+
12
+ like "$output" "2 subrepos:" \
13
+ "'status' intro ok"
14
+
15
+ like "$output" "Git subrepo 'ext/bashplus':" \
16
+ "ext/bashplus is in 'status'"
17
+
18
+ like "$output" "Git subrepo 'ext/test-more-bash':" \
19
+ "ext/test-more-bash is in 'status'"
20
+
21
+ unlike "$output" "Git subrepo 'ext/test-more-bash/ext/bashplus':" \
22
+ "ext/test-more-bash/ext/bashplus is not in 'status'"
23
+
24
+ unlike "$output" "Git subrepo 'ext/test-more-bash/ext/test-tap-bash':" \
25
+ "ext/test-more-bash/ext/test-tap-bash is not in 'status'"
26
+ }
27
+
28
+ {
29
+ output="$(git subrepo status --ALL)"
30
+
31
+ like "$output" "4 subrepos:" \
32
+ "'status --ALL' intro ok"
33
+
34
+ like "$output" "Git subrepo 'ext/bashplus':" \
35
+ "ext/bashplus is in 'status --ALL'"
36
+
37
+ like "$output" "Git subrepo 'ext/test-more-bash':" \
38
+ "ext/test-more-bash is in 'status --ALL'"
39
+
40
+ like "$output" "Git subrepo 'ext/test-more-bash/ext/bashplus':" \
41
+ "ext/test-more-bash/ext/bashplus is in 'status --ALL'"
42
+
43
+ like "$output" "Git subrepo 'ext/test-more-bash/ext/test-tap-bash':" \
44
+ "ext/test-more-bash/ext/test-tap-bash is in 'status --ALL'"
45
+ }
46
+
47
+ {
48
+ output="$(git subrepo status --all)"
49
+
50
+ like "$output" "2 subrepos:" \
51
+ "'status --all' intro ok"
52
+
53
+ like "$output" "Git subrepo 'ext/bashplus':" \
54
+ "ext/bashplus is in 'status --all'"
55
+
56
+ like "$output" "Git subrepo 'ext/test-more-bash':" \
57
+ "ext/test-more-bash is in 'status --all'"
58
+
59
+ unlike "$output" "Git subrepo 'ext/test-more-bash/ext/bashplus':" \
60
+ "ext/test-more-bash/ext/bashplus is not in 'status --all'"
61
+
62
+ unlike "$output" "Git subrepo 'ext/test-more-bash/ext/test-tap-bash':" \
63
+ "ext/test-more-bash/ext/test-tap-bash is not in 'status --all'"
64
+ }
65
+
66
+ done_testing 15
67
+
68
+ teardown
@@ -0,0 +1,45 @@
1
+ #!/usr/bin/env bash
2
+
3
+ # Test that a subrepo that contains a submodule retains the submodule reference
4
+ # so that the tree hash stays the same. (However, the subrepo's submodule won't
5
+ # be directly usable since the .gitmodules file isn't in the top level.)
6
+
7
+ set -e
8
+
9
+ source test/setup
10
+
11
+ use Test::More
12
+
13
+ clone-foo-and-bar
14
+
15
+ # Add submodule reference along with a new file to the bar repo:
16
+ (
17
+ cd $OWNER/bar
18
+ git clone ../foo submodule
19
+ add-new-files file
20
+ git add submodule file
21
+ git commit --amend -C HEAD
22
+ ) &> /dev/null || die
23
+
24
+ (
25
+ cd $OWNER/foo
26
+ git subrepo clone ../bar
27
+ ) &> /dev/null || die
28
+
29
+ (
30
+ cd $OWNER/bar
31
+ modify-files file
32
+ ) &> /dev/null || die
33
+
34
+ {
35
+ is "$(
36
+ cd $OWNER/foo
37
+ git subrepo pull bar
38
+ )" \
39
+ "Subrepo 'bar' pulled from '../bar' (master)." \
40
+ 'subrepo pull command output is correct'
41
+ }
42
+
43
+ done_testing
44
+
45
+ teardown
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
16
16
  s.files = Dir['{lib}/**/*', 'MIT-LICENSE', 'README.rdoc']
17
17
 
18
18
  s.add_dependency 'activesupport', '>= 4', '< 7'
19
- s.add_dependency 'addressable', '~> 2.8'
19
+ s.add_dependency 'addressable', '~> 2.8', '>= 2.8.1'
20
20
  s.add_dependency 'bundler'
21
21
  s.add_dependency 'filesize', '~> 0.2'
22
22
  s.add_dependency 'net-ssh', '~> 4.2'
@@ -13,7 +13,7 @@ module EacRubyUtils
13
13
  end
14
14
 
15
15
  class Setup
16
- common_constructor :method_class do
16
+ common_constructor :method_class, :static_method, default: [false] do
17
17
  perform
18
18
  end
19
19
 
@@ -29,7 +29,9 @@ module EacRubyUtils
29
29
  end
30
30
 
31
31
  def sender_module
32
- method_class.module_parent
32
+ r = method_class.module_parent
33
+ r = r.singleton_class if static_method
34
+ r
33
35
  end
34
36
  end
35
37
  end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/static_method_class'
4
+
5
+ class Module
6
+ def enable_static_method_class
7
+ ::EacRubyUtils.patch(self, ::EacRubyUtils::StaticMethodClass)
8
+ end
9
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/method_class'
4
+ require 'eac_ruby_utils/patches/module/common_concern'
5
+
6
+ module EacRubyUtils
7
+ module StaticMethodClass
8
+ common_concern do
9
+ ::EacRubyUtils::MethodClass::Setup.new(self, true)
10
+ end
11
+ end
12
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacRubyUtils
4
- VERSION = '0.103.0'
4
+ VERSION = '0.104.0'
5
5
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'eac_ruby_utils/method_class'
4
- require 'eac_ruby_utils/patches/module/method_class'
4
+ require 'eac_ruby_utils/patches/class/method_class'
5
5
 
6
6
  RSpec.describe ::Class do
7
7
  let(:stub_method_class) do
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/method_class'
4
+ require 'eac_ruby_utils/patches/class/static_method_class'
5
+
6
+ RSpec.describe ::Class do
7
+ let(:stub_method_class) do
8
+ described_class.new do
9
+ def self.name
10
+ 'StubMethodClass'
11
+ end
12
+
13
+ enable_static_method_class
14
+ end
15
+ end
16
+
17
+ describe '#enable_static_method_class' do
18
+ it { expect(stub_method_class.included_modules).to include(::EacRubyUtils::StaticMethodClass) }
19
+ end
20
+ end
@@ -0,0 +1,44 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/static_method_class'
4
+
5
+ ::RSpec.describe ::EacRubyUtils::StaticMethodClass do
6
+ let(:sender_class) do
7
+ ::Class.new do
8
+ class << self
9
+ def sender_value
10
+ 'AAA'
11
+ end
12
+ end
13
+ end
14
+ end
15
+
16
+ let(:method_class) do
17
+ the_described_class = described_class
18
+ ::Class.new do
19
+ def self.name
20
+ 'TheSender::PerformX'
21
+ end
22
+
23
+ include the_described_class
24
+ attr_accessor :sender, :method_param
25
+
26
+ def initialize(sender, method_param)
27
+ self.sender = sender
28
+ self.method_param = method_param
29
+ end
30
+
31
+ def result
32
+ "#{sender.sender_value},#{method_param}"
33
+ end
34
+ end
35
+ end
36
+
37
+ before do
38
+ ::Object.const_set('TheSender', sender_class)
39
+ sender_class.const_set('PerformX', method_class)
40
+ end
41
+
42
+ it { expect(sender_class).to respond_to(:perform_x) }
43
+ it { expect(sender_class.perform_x('BBB')).to eq('AAA,BBB') }
44
+ end