eac_tools 0.102.1 → 0.103.0
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +42 -34
- data/lib/eac_tools/version.rb +1 -1
- data/sub/avm-eac_redmine_base0/avm-eac_redmine_base0.gemspec +26 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/apache_host.rb +12 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/database.rb +30 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/files.rb +22 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/gitolite.rb +55 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/install.rb +46 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/nodejs.rb +22 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/web.rb +20 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base.rb +59 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/deploy.rb +19 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/docker_image.rb +116 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/rest_api/entity_base.rb +35 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/rest_api/project.rb +26 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/rest_api/root.rb +21 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/rest_api/wiki_page.rb +54 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/rest_api.rb +14 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/docker.rb +17 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/project/wiki_page/read.rb +27 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/project/wiki_page/write.rb +70 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/project/wiki_page.rb +30 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/project.rb +26 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/project_rename.rb +56 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners.rb +14 -0
- data/sub/{avm-git/lib/avm/git/runners.rb → avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances.rb} +4 -2
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/base.rb +36 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/core_update.rb +131 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/runners/core_update.rb +65 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/runners/docker.rb +19 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/runners.rb +13 -0
- data/sub/{avm-git/lib/avm/git/organize.rb → avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources.rb} +4 -2
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/version.rb +7 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0.rb +16 -0
- data/sub/avm-eac_redmine_base0/locale/en.yml +6 -0
- data/sub/avm-eac_redmine_base0/locale/pt-BR.yml +6 -0
- data/sub/avm-eac_redmine_base0/spec/lib/avm/eac_redmine_base0/instances/apache_host_spec.rb +22 -0
- 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
- data/sub/avm-eac_redmine_base0/spec/lib/avm/eac_redmine_base0/instances/base/gitolite_spec.rb +26 -0
- data/sub/avm-eac_redmine_base0/spec/lib/avm/eac_redmine_base0/instances/base/gitolite_spec_files/config.yml +10 -0
- data/sub/avm-eac_redmine_base0/spec/spec_helper.rb +6 -0
- data/sub/avm-eac_redmine_base0/template/avm/eac_redmine_base0/instances/deploy/config/install.sh.template +45 -0
- data/sub/avm-eac_redmine_base0/template/avm/eac_redmine_base0/instances/deploy/config/secrets.yml +8 -0
- data/sub/avm-eac_redmine_base0/template/avm/eac_redmine_base0/instances/docker_image/Dockerfile.template +36 -0
- data/sub/avm-eac_redmine_base0/template/avm/eac_redmine_base0/instances/docker_image/apache_host_dockerfile +8 -0
- data/sub/avm-eac_redmine_base0/template/avm/eac_redmine_base0/instances/docker_image/apache_http_virtualhost.conf.template +10 -0
- data/sub/avm-eac_redmine_base0/template/avm/eac_redmine_base0/instances/docker_image/apache_https_virtualhost.conf.template +16 -0
- data/sub/avm-eac_redmine_base0/template/avm/eac_redmine_base0/instances/docker_image/apache_path_dockerfile +5 -0
- data/sub/avm-eac_redmine_base0/template/avm/eac_redmine_base0/instances/docker_image/start.sh.template +52 -0
- data/sub/avm-eac_ubuntu_base0/Gemfile +8 -0
- data/sub/avm-eac_ubuntu_base0/avm-eac_ubuntu_base0.gemspec +21 -0
- data/sub/avm-eac_ubuntu_base0/lib/avm/eac_ubuntu_base0/apache/resource.rb +57 -0
- data/sub/avm-eac_ubuntu_base0/lib/avm/eac_ubuntu_base0/apache.rb +24 -0
- data/sub/avm-eac_ubuntu_base0/lib/avm/eac_ubuntu_base0/docker_image.rb +31 -0
- data/sub/avm-eac_ubuntu_base0/lib/avm/eac_ubuntu_base0/instances/base.rb +24 -0
- data/sub/avm-eac_ubuntu_base0/lib/avm/eac_ubuntu_base0/rspec/ssh_docker_server.rb +82 -0
- data/sub/avm-eac_ubuntu_base0/lib/avm/eac_ubuntu_base0/runners/base/docker.rb +15 -0
- data/sub/avm-eac_ubuntu_base0/lib/avm/eac_ubuntu_base0/runners/base.rb +26 -0
- data/sub/{avm-git/lib/avm/git → avm-eac_ubuntu_base0/lib/avm/eac_ubuntu_base0}/version.rb +2 -2
- data/sub/{avm-git/lib/avm/git.rb → avm-eac_ubuntu_base0/lib/avm/eac_ubuntu_base0.rb} +5 -8
- data/sub/avm-eac_ubuntu_base0/spec/lib/avm/eac_ubuntu_base0/docker_image_spec.rb +12 -0
- data/sub/avm-eac_ubuntu_base0/spec/lib/avm/eac_ubuntu_base0/rspec/ssh_docker_server_spec.rb +11 -0
- data/sub/avm-eac_ubuntu_base0/spec/lib/avm/eac_ubuntu_base0/runners/base/docker_spec.rb +11 -0
- data/sub/avm-eac_ubuntu_base0/spec/lib/avm/eac_ubuntu_base0/runners/base_spec.rb +5 -0
- data/sub/avm-eac_ubuntu_base0/spec/rubocop_spec.rb +3 -0
- data/sub/{avm-git → avm-eac_ubuntu_base0}/spec/spec_helper.rb +1 -1
- data/sub/avm-eac_ubuntu_base0/template/avm/eac_ubuntu_base0/docker_image/Dockerfile.template +27 -0
- data/sub/avm-eac_ubuntu_base0/template/avm/eac_ubuntu_base0/rspec/ssh_docker_server/Dockerfile.template +24 -0
- data/sub/avm-eac_ubuntu_base0/template/avm/eac_ubuntu_base0/rspec/ssh_docker_server/id_rsa +27 -0
- data/sub/avm-eac_ubuntu_base0/template/avm/eac_ubuntu_base0/rspec/ssh_docker_server/id_rsa.pub +1 -0
- data/sub/eac_docker/Gemfile +8 -0
- data/sub/eac_docker/eac_docker.gemspec +20 -0
- data/sub/eac_docker/lib/eac_docker/container.rb +83 -0
- data/sub/eac_docker/lib/eac_docker/debug.rb +13 -0
- data/sub/eac_docker/lib/eac_docker/executables.rb +15 -0
- data/sub/eac_docker/lib/eac_docker/images/base.rb +11 -0
- data/sub/eac_docker/lib/eac_docker/images/coded.rb +39 -0
- data/sub/eac_docker/lib/eac_docker/images/named.rb +26 -0
- data/sub/eac_docker/lib/eac_docker/images/templatized.rb +43 -0
- data/sub/eac_docker/lib/eac_docker/registry.rb +15 -0
- data/sub/eac_docker/lib/eac_docker/rspec/setup.rb +15 -0
- data/sub/eac_docker/lib/eac_docker/rspec/stub_image.rb +39 -0
- data/sub/eac_docker/lib/eac_docker/version.rb +5 -0
- data/sub/eac_docker/lib/eac_docker.rb +9 -0
- data/sub/eac_docker/spec/lib/eac_docker/executables_spec.rb +7 -0
- data/sub/eac_docker/spec/lib/eac_docker/images/coded_spec.rb +10 -0
- data/sub/eac_docker/spec/lib/eac_docker/images/coded_spec_files/image1/Dockerfile +1 -0
- data/sub/eac_docker/spec/lib/eac_docker/images/templatized_spec.rb +15 -0
- data/sub/eac_docker/spec/lib/eac_docker/images/templatized_spec_files/stub_docker_image/Dockerfile +1 -0
- data/sub/eac_docker/spec/rubocop_spec.rb +3 -0
- data/sub/eac_docker/spec/spec_helper.rb +5 -0
- metadata +101 -134
- data/sub/avm-git/avm-git.gemspec +0 -25
- data/sub/avm-git/lib/avm/git/application_scms/base/assert_main_at.rb +0 -44
- data/sub/avm-git/lib/avm/git/application_scms/base.rb +0 -18
- data/sub/avm-git/lib/avm/git/application_scms.rb +0 -9
- data/sub/avm-git/lib/avm/git/commit/class_methods.rb +0 -29
- data/sub/avm-git/lib/avm/git/commit/diff_tree_line.rb +0 -32
- data/sub/avm-git/lib/avm/git/commit/file.rb +0 -42
- data/sub/avm-git/lib/avm/git/commit.rb +0 -57
- data/sub/avm-git/lib/avm/git/issue/complete/commits.rb +0 -40
- data/sub/avm-git/lib/avm/git/issue/complete/git_subrepos.rb +0 -20
- data/sub/avm-git/lib/avm/git/issue/complete/local_branch.rb +0 -59
- data/sub/avm-git/lib/avm/git/issue/complete/local_tag.rb +0 -37
- data/sub/avm-git/lib/avm/git/issue/complete/push.rb +0 -60
- data/sub/avm-git/lib/avm/git/issue/complete/remote.rb +0 -33
- data/sub/avm-git/lib/avm/git/issue/complete/test.rb +0 -34
- data/sub/avm-git/lib/avm/git/issue/complete/tracker.rb +0 -21
- data/sub/avm-git/lib/avm/git/issue/complete/validation.rb +0 -36
- data/sub/avm-git/lib/avm/git/issue/complete/validations.rb +0 -54
- data/sub/avm-git/lib/avm/git/issue/complete/working_tree.rb +0 -19
- data/sub/avm-git/lib/avm/git/issue/complete.rb +0 -66
- data/sub/avm-git/lib/avm/git/issue.rb +0 -10
- data/sub/avm-git/lib/avm/git/launcher/base/class_methods.rb +0 -28
- data/sub/avm-git/lib/avm/git/launcher/base/dirty_files.rb +0 -21
- data/sub/avm-git/lib/avm/git/launcher/base/remotes.rb +0 -37
- data/sub/avm-git/lib/avm/git/launcher/base/subrepo.rb +0 -42
- data/sub/avm-git/lib/avm/git/launcher/base/underlying.rb +0 -54
- data/sub/avm-git/lib/avm/git/launcher/base.rb +0 -81
- data/sub/avm-git/lib/avm/git/launcher/error.rb +0 -13
- data/sub/avm-git/lib/avm/git/launcher/mirror_update.rb +0 -36
- data/sub/avm-git/lib/avm/git/launcher/publish_base.rb +0 -127
- data/sub/avm-git/lib/avm/git/launcher/remote.rb +0 -53
- data/sub/avm-git/lib/avm/git/launcher/sub_warp_base.rb +0 -36
- data/sub/avm-git/lib/avm/git/launcher/warp_base.rb +0 -63
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git/local_project_mixin.rb +0 -16
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git/publish.rb +0 -13
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git/warp.rb +0 -25
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git.rb +0 -22
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git_subrepo/publish.rb +0 -29
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git_subrepo/warp.rb +0 -82
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git_subrepo.rb +0 -32
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git_subtree/publish.rb +0 -12
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git_subtree/warp.rb +0 -29
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git_subtree.rb +0 -47
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/provider.rb +0 -17
- data/sub/avm-git/lib/avm/git/launcher_stereotypes.rb +0 -9
- data/sub/avm-git/lib/avm/git/organize/reference_update.rb +0 -32
- data/sub/avm-git/lib/avm/git/organize/repository.rb +0 -74
- data/sub/avm-git/lib/avm/git/revision_test.rb +0 -102
- data/sub/avm-git/lib/avm/git/runners/base/commit.rb +0 -96
- data/sub/avm-git/lib/avm/git/runners/base/deploy.rb +0 -108
- data/sub/avm-git/lib/avm/git/runners/base/dirty_files.rb +0 -42
- data/sub/avm-git/lib/avm/git/runners/base/organize.rb +0 -72
- data/sub/avm-git/lib/avm/git/runners/base/revisions_test.rb +0 -63
- data/sub/avm-git/lib/avm/git/runners/base/subrepo/check.rb +0 -45
- data/sub/avm-git/lib/avm/git/runners/base/subrepo/clone.rb +0 -80
- data/sub/avm-git/lib/avm/git/runners/base/subrepo/fix.rb +0 -69
- data/sub/avm-git/lib/avm/git/runners/base/subrepo.rb +0 -17
- data/sub/avm-git/lib/avm/git/runners/base.rb +0 -40
- data/sub/avm-git/lib/avm/git/scms/git/branch.rb +0 -28
- data/sub/avm-git/lib/avm/git/scms/git/branches.rb +0 -17
- data/sub/avm-git/lib/avm/git/scms/git/change_tracker.rb +0 -34
- data/sub/avm-git/lib/avm/git/scms/git/changed_file.rb +0 -25
- data/sub/avm-git/lib/avm/git/scms/git/changed_files.rb +0 -21
- data/sub/avm-git/lib/avm/git/scms/git/commit/deploy.rb +0 -37
- data/sub/avm-git/lib/avm/git/scms/git/commit/deploy_methods.rb +0 -24
- data/sub/avm-git/lib/avm/git/scms/git/commit.rb +0 -64
- data/sub/avm-git/lib/avm/git/scms/git/commit_dirty.rb +0 -32
- data/sub/avm-git/lib/avm/git/scms/git/commits.rb +0 -44
- data/sub/avm-git/lib/avm/git/scms/git/interval.rb +0 -28
- data/sub/avm-git/lib/avm/git/scms/git/milestones.rb +0 -18
- data/sub/avm-git/lib/avm/git/scms/git/remote.rb +0 -18
- data/sub/avm-git/lib/avm/git/scms/git/remotes.rb +0 -29
- data/sub/avm-git/lib/avm/git/scms/git/run_commit.rb +0 -54
- data/sub/avm-git/lib/avm/git/scms/git.rb +0 -46
- data/sub/avm-git/lib/avm/git/scms/git_sub_base/changed_file.rb +0 -19
- data/sub/avm-git/lib/avm/git/scms/git_sub_base/commit.rb +0 -23
- data/sub/avm-git/lib/avm/git/scms/git_sub_base/interval.rb +0 -23
- data/sub/avm-git/lib/avm/git/scms/git_sub_base.rb +0 -30
- data/sub/avm-git/lib/avm/git/scms/git_subrepo.rb +0 -33
- data/sub/avm-git/lib/avm/git/scms/git_subtree.rb +0 -29
- data/sub/avm-git/lib/avm/git/scms/provider.rb +0 -16
- data/sub/avm-git/lib/avm/git/scms.rb +0 -9
- data/sub/avm-git/lib/avm/git/subrepo_check/parent.rb +0 -48
- data/sub/avm-git/lib/avm/git/subrepo_check/remote.rb +0 -86
- data/sub/avm-git/lib/avm/git/subrepo_check/show_result.rb +0 -30
- data/sub/avm-git/lib/avm/git/subrepo_check.rb +0 -36
- data/sub/avm-git/lib/avm/git/subrepo_checks.rb +0 -57
- data/sub/avm-git/lib/avm/git/vendor/github.rb +0 -20
- data/sub/avm-git/lib/avm/git/vendor.rb +0 -9
- data/sub/avm-git/locale/en.yml +0 -6
- data/sub/avm-git/locale/pt-BR.yml +0 -6
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec.rb +0 -13
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/add.source.out +0 -1
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/add.target.yaml +0 -7
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/modify.source.out +0 -1
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/modify.target.yaml +0 -7
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/remove.source.out +0 -1
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/remove.target.yaml +0 -7
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/rename.source.out +0 -2
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/rename.target.yaml +0 -13
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/rename_modify.source.out +0 -2
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/rename_modify.target.yaml +0 -13
- data/sub/avm-git/spec/lib/avm/git/commit_spec.rb +0 -56
- data/sub/avm-git/spec/lib/avm/git/launcher/base_spec.rb +0 -45
- data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/publish_spec.rb +0 -83
- data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/publish_spec_files/config.yml +0 -5
- data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/publish_spec_settings.yml +0 -6
- data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/warp_spec.rb +0 -53
- data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/warp_spec_files/config.yml +0 -3
- data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/warp_spec_settings.yml +0 -6
- data/sub/avm-git/spec/lib/avm/git/runners/base/deploy_spec.rb +0 -126
- data/sub/avm-git/spec/lib/avm/git/runners/base/deploy_spec_files/append1/stub3.txt.template +0 -1
- data/sub/avm-git/spec/lib/avm/git/runners/base/deploy_spec_files/append2/stub4.txt +0 -1
- data/sub/avm-git/spec/lib/avm/git/scms/git/commit/deploy_spec.rb +0 -92
- data/sub/avm-git/spec/lib/avm/git/scms/git_spec.rb +0 -8
- data/sub/avm-git/spec/lib/avm/git/scms/git_subrepo_spec.rb +0 -8
- data/sub/avm-git/spec/lib/avm/git/vendor/github_spec.rb +0 -23
- /data/sub/{avm-git → avm-eac_redmine_base0}/Gemfile +0 -0
- /data/sub/{avm-git → avm-eac_redmine_base0}/spec/rubocop_spec.rb +0 -0
@@ -1,54 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Scms
|
6
|
-
class Git < ::Avm::Scms::Base
|
7
|
-
class RunCommit
|
8
|
-
enable_method_class
|
9
|
-
|
10
|
-
common_constructor :scm, :commit_info
|
11
|
-
|
12
|
-
# @return [Avm::Git::Scms::Git::Commit]
|
13
|
-
def result
|
14
|
-
reset
|
15
|
-
add_paths
|
16
|
-
commit
|
17
|
-
|
18
|
-
scm.head_commit
|
19
|
-
end
|
20
|
-
|
21
|
-
protected
|
22
|
-
|
23
|
-
def add_path(path)
|
24
|
-
scm.git_repo.command(
|
25
|
-
*(path.exist? ? ['add'] : ['rm', '-f']),
|
26
|
-
path.relative_path_from(scm.path)
|
27
|
-
).execute!
|
28
|
-
end
|
29
|
-
|
30
|
-
def add_paths
|
31
|
-
commit_info.paths.each { |path| add_path(path) }
|
32
|
-
end
|
33
|
-
|
34
|
-
def commit
|
35
|
-
scm.git_repo.command('commit', *commit_args).execute!
|
36
|
-
end
|
37
|
-
|
38
|
-
# @return [Array<String>]
|
39
|
-
def commit_args
|
40
|
-
r = commit_info.fixup.if_present([]) { |v| ['--fixup', v.id] }
|
41
|
-
r += commit_info.message.if_present([]) { |v| ['--message', v] }
|
42
|
-
return r if r.any?
|
43
|
-
|
44
|
-
raise 'Argument list is empty'
|
45
|
-
end
|
46
|
-
|
47
|
-
def reset
|
48
|
-
scm.git_repo.command('reset', 'HEAD').execute!
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
@@ -1,46 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Scms
|
6
|
-
class Git < ::Avm::Scms::Base
|
7
|
-
require_sub __FILE__, include_modules: true
|
8
|
-
include ::Comparable
|
9
|
-
|
10
|
-
COMMIT_DIRTY_DEFAULT_MESSAGE = 'Dirty files.'
|
11
|
-
|
12
|
-
def <=>(other)
|
13
|
-
git_repo <=> other.git_repo
|
14
|
-
end
|
15
|
-
|
16
|
-
# @param options [Hash<Symbol, Object>]
|
17
|
-
# @return [Avm::Git::Issues::Complete]
|
18
|
-
def completer(options = {})
|
19
|
-
::Avm::Git::Issue::Complete.new(self, options)
|
20
|
-
end
|
21
|
-
|
22
|
-
def git_repo
|
23
|
-
@git_repo ||= ::EacGit::Local.new(path)
|
24
|
-
end
|
25
|
-
|
26
|
-
# @param from [Avm::Git::Scms::Git::Commit]
|
27
|
-
# @param to [Avm::Git::Scms::Git::Commit]
|
28
|
-
# @return [Avm::Git::Scms::Git::Interval]
|
29
|
-
def interval(from, to)
|
30
|
-
::Avm::Git::Scms::Git::Interval.new(self, from, to)
|
31
|
-
end
|
32
|
-
|
33
|
-
# @return [Enumerable<Avm::Git::Scms::GitSubrepo>]
|
34
|
-
def subs
|
35
|
-
git_repo.subrepos.map do |subrepo|
|
36
|
-
::Avm::Git::Scms::GitSubrepo.new(subrepo.subpath.expand_path(path))
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
def valid?
|
41
|
-
path.join('.git').exist?
|
42
|
-
end
|
43
|
-
end
|
44
|
-
end
|
45
|
-
end
|
46
|
-
end
|
@@ -1,19 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Scms
|
6
|
-
class GitSubBase < ::Avm::Scms::Base
|
7
|
-
class ChangedFile < ::Avm::Scms::ChangedFile
|
8
|
-
common_constructor :scm, :parent_changed_file
|
9
|
-
delegate :action, to: :parent_changed_file
|
10
|
-
|
11
|
-
# @return [Pathname]
|
12
|
-
def path
|
13
|
-
parent_changed_file.path.relative_path_from(scm.relative_path_from_parent_scm)
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
@@ -1,23 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Scms
|
6
|
-
class GitSubBase < ::Avm::Scms::Base
|
7
|
-
class Commit < ::Avm::Scms::Commit
|
8
|
-
common_constructor :scm, :parent_commit
|
9
|
-
|
10
|
-
delegate :deploy_to_env_path, :fixup?, :id, :merge_with, :reword, :scm_file?, :subject,
|
11
|
-
:to_s, to: :parent_commit
|
12
|
-
|
13
|
-
# @return [Array<Pathname>]
|
14
|
-
def changed_files
|
15
|
-
parent_commit.changed_files.map do |cf|
|
16
|
-
cf.relative_path_from(scm.relative_path_from_parent_scm)
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
@@ -1,23 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Scms
|
6
|
-
class GitSubBase < ::Avm::Scms::Base
|
7
|
-
class Interval < ::Avm::Scms::Interval
|
8
|
-
# @return [Array<Avm::Git::Scms::GitSubBase::Commit>]
|
9
|
-
def commits
|
10
|
-
parent_interval.commits.map do |parent_commit|
|
11
|
-
Avm::Git::Scms::GitSubBase::Commit.new(scm, parent_commit)
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
# @return [Avm::Git::Scms::Git::Interval]
|
16
|
-
def parent_interval
|
17
|
-
scm.parent_scm.interval(from, to)
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
@@ -1,30 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Scms
|
6
|
-
class GitSubBase < ::Avm::Scms::Base
|
7
|
-
enable_abstract_methods
|
8
|
-
|
9
|
-
delegate :commit_if_change, :current_milestone_base_commit,
|
10
|
-
:head_commit, :reset_and_commit, :run_commit, to: :parent_scm
|
11
|
-
|
12
|
-
# @return [Enumerable<Avm::Git::Scms::GitSubBase::ChangedFile>]
|
13
|
-
def changed_files
|
14
|
-
parent_scm.changed_files.map do |parent_changed_file|
|
15
|
-
::Avm::Git::Scms::GitSubBase::ChangedFile.new(self, parent_changed_file)
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
# @param from [Avm::Git::Scms::Git::Commit]
|
20
|
-
# @param to [Avm::Git::Scms::Git::Commit]
|
21
|
-
# @return [Avm::Git::Scms::GitSubBase::Interval]
|
22
|
-
def interval(from, to)
|
23
|
-
::Avm::Git::Scms::GitSubBase::Interval.new(self, from, to)
|
24
|
-
end
|
25
|
-
|
26
|
-
require_sub __FILE__
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
@@ -1,33 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Scms
|
6
|
-
class GitSubrepo < ::Avm::Git::Scms::GitSubBase
|
7
|
-
def update
|
8
|
-
git_subrepo.command('clean').execute!
|
9
|
-
git_subrepo.command('pull').execute!
|
10
|
-
end
|
11
|
-
|
12
|
-
# @return [EacGit::Local]
|
13
|
-
def git_repo
|
14
|
-
@git_repo ||= ::EacGit::Local.find(path)
|
15
|
-
end
|
16
|
-
|
17
|
-
# @return [EacGit::Local::Subrepo]
|
18
|
-
def git_subrepo
|
19
|
-
@git_subrepo ||= git_repo.subrepo(subpath)
|
20
|
-
end
|
21
|
-
|
22
|
-
# @return [Pathname]
|
23
|
-
def subpath
|
24
|
-
path.expand_path.relative_path_from(git_repo.root_path.expand_path)
|
25
|
-
end
|
26
|
-
|
27
|
-
def valid?
|
28
|
-
path.join('.gitrepo').file?
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
@@ -1,29 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Scms
|
6
|
-
class GitSubtree < ::Avm::Git::Scms::GitSubBase
|
7
|
-
# @return [Boolean]
|
8
|
-
def no_other_git_scm?
|
9
|
-
(::Avm::Git::Scms::Provider.new.all - [self.class])
|
10
|
-
.lazy.map { |scm_class| scm_class.new(path) }.none?(&:valid?)
|
11
|
-
end
|
12
|
-
|
13
|
-
# @return [Boolean]
|
14
|
-
def parent_git_scm?
|
15
|
-
::Avm::Git::Scms::Provider.new.all.any? { |scm_class| parent_scm.is_a?(scm_class) }
|
16
|
-
end
|
17
|
-
|
18
|
-
def update
|
19
|
-
# Do nothing
|
20
|
-
end
|
21
|
-
|
22
|
-
# @return [Boolean]
|
23
|
-
def valid?
|
24
|
-
parent_git_scm? && no_other_git_scm?
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
@@ -1,48 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
class SubrepoCheck
|
6
|
-
module Parent
|
7
|
-
def fix_parent
|
8
|
-
return if parent_result.success?
|
9
|
-
|
10
|
-
info(' Fixing...')
|
11
|
-
self.parent_hash = expected_parent_hash
|
12
|
-
info_banner
|
13
|
-
end
|
14
|
-
|
15
|
-
private
|
16
|
-
|
17
|
-
def expected_parent_hash_uncached
|
18
|
-
subrepo.local.rev_parse("#{last_file_change_rev}^")
|
19
|
-
end
|
20
|
-
|
21
|
-
def last_file_change_rev
|
22
|
-
subrepo.local.command('log', '-n', '1', '--pretty=format:%H', '--',
|
23
|
-
subrepo.config_relative_path.to_path).execute!.strip
|
24
|
-
end
|
25
|
-
|
26
|
-
def parent_hash
|
27
|
-
subrepo.parent_commit_id
|
28
|
-
end
|
29
|
-
|
30
|
-
def parent_hash=(new_hash)
|
31
|
-
subrepo.config.parent_commit_id = new_hash
|
32
|
-
subrepo.write_config
|
33
|
-
end
|
34
|
-
|
35
|
-
def parent_hash_ok?
|
36
|
-
return false if expected_parent_hash.blank? || parent_hash.blank?
|
37
|
-
|
38
|
-
expected_parent_hash == parent_hash
|
39
|
-
end
|
40
|
-
|
41
|
-
def parent_result_uncached
|
42
|
-
::Avm::Result.success_or_error(parent_hash_ok?,
|
43
|
-
parent_hash.presence || blank_text)
|
44
|
-
end
|
45
|
-
end
|
46
|
-
end
|
47
|
-
end
|
48
|
-
end
|
@@ -1,86 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
class SubrepoCheck
|
6
|
-
module Remote
|
7
|
-
private
|
8
|
-
|
9
|
-
def fetch_uncached
|
10
|
-
subrepo.command('clean').execute!
|
11
|
-
subrepo.command('fetch').execute!
|
12
|
-
end
|
13
|
-
|
14
|
-
def check_remote_disabled?
|
15
|
-
!check_remote?
|
16
|
-
end
|
17
|
-
|
18
|
-
def check_remote_disabled_result
|
19
|
-
::Avm::Result.neutral('Check remote disabled')
|
20
|
-
end
|
21
|
-
|
22
|
-
def local_descend_remote?
|
23
|
-
local_id.present? && remote_id.present? && subrepo.local.descendant?(local_id, remote_id)
|
24
|
-
end
|
25
|
-
|
26
|
-
def local_descend_remote_result
|
27
|
-
::Avm::Result.pending(remote_result_value)
|
28
|
-
end
|
29
|
-
|
30
|
-
def local_id_uncached
|
31
|
-
fetch
|
32
|
-
subrepo.command('branch', '--force').execute!
|
33
|
-
subrepo.local.rev_parse("subrepo/#{subrepo.subpath}")
|
34
|
-
end
|
35
|
-
|
36
|
-
def remote_descend_local?
|
37
|
-
local_id.present? && remote_id.present? && subrepo.local.descendant?(remote_id, local_id)
|
38
|
-
end
|
39
|
-
|
40
|
-
def remote_descend_local_result
|
41
|
-
::Avm::Result.outdated(remote_result_value)
|
42
|
-
end
|
43
|
-
|
44
|
-
def remote_branches
|
45
|
-
['', 'refs/heads/', 'refs/tags/'].map { |prefix| "#{prefix}#{subrepo.remote_branch}" }
|
46
|
-
end
|
47
|
-
|
48
|
-
def remote_id_uncached
|
49
|
-
ls_result = subrepo.remote.ls
|
50
|
-
remote_branches.each do |b|
|
51
|
-
return ls_result[b] if ls_result[b].present?
|
52
|
-
end
|
53
|
-
nil
|
54
|
-
end
|
55
|
-
|
56
|
-
def remote_result_uncached
|
57
|
-
%w[check_remote_disabled same_ids local_descend_remote remote_descend_local]
|
58
|
-
.each do |condition|
|
59
|
-
return send("#{condition}_result") if send("#{condition}?")
|
60
|
-
end
|
61
|
-
|
62
|
-
::Avm::Result.error(remote_result_value)
|
63
|
-
end
|
64
|
-
|
65
|
-
def remote_result_value
|
66
|
-
local_s = local_id.presence || blank_text
|
67
|
-
remote_s = remote_id.presence || blank_text
|
68
|
-
|
69
|
-
if local_s == remote_s
|
70
|
-
"[L/R=#{local_s}]"
|
71
|
-
else
|
72
|
-
"[L=#{local_s}, R=#{remote_s}]"
|
73
|
-
end
|
74
|
-
end
|
75
|
-
|
76
|
-
def same_ids?
|
77
|
-
local_id.present? && remote_id.present? && local_id == remote_id
|
78
|
-
end
|
79
|
-
|
80
|
-
def same_ids_result
|
81
|
-
::Avm::Result.success(remote_result_value)
|
82
|
-
end
|
83
|
-
end
|
84
|
-
end
|
85
|
-
end
|
86
|
-
end
|
@@ -1,30 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
class SubrepoCheck
|
6
|
-
module ShowResult
|
7
|
-
def show_result
|
8
|
-
out(subrepo.subpath.to_path.cyan)
|
9
|
-
out_attr('parent', parent_result.label)
|
10
|
-
run_fix_parent
|
11
|
-
out_attr('remote', remote_result.label)
|
12
|
-
out("\n")
|
13
|
-
end
|
14
|
-
|
15
|
-
def run_fix_parent
|
16
|
-
return unless fix_parent?
|
17
|
-
return unless parent_result.error?
|
18
|
-
|
19
|
-
out('|Fixing...'.white)
|
20
|
-
self.parent_hash = expected_parent_hash
|
21
|
-
out_attr('new parent', parent_result.label)
|
22
|
-
end
|
23
|
-
|
24
|
-
def out_attr(key, value)
|
25
|
-
out("|#{"#{key}=".white}#{value}")
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
@@ -1,36 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
class SubrepoCheck
|
6
|
-
require_sub __FILE__, include_modules: true
|
7
|
-
enable_speaker
|
8
|
-
enable_simple_cache
|
9
|
-
|
10
|
-
BLANK_TEXT = 'BLANK'
|
11
|
-
|
12
|
-
common_constructor :subrepo, :options
|
13
|
-
|
14
|
-
def blank_text
|
15
|
-
BLANK_TEXT
|
16
|
-
end
|
17
|
-
|
18
|
-
def check_remote?
|
19
|
-
options.fetch(:check_remote) ? true : false
|
20
|
-
end
|
21
|
-
|
22
|
-
def fix_parent?
|
23
|
-
options.fetch(:fix_parent) ? true : false
|
24
|
-
end
|
25
|
-
|
26
|
-
private
|
27
|
-
|
28
|
-
def result_uncached
|
29
|
-
return ::Avm::Result.error('Parent failed') if parent_result.error?
|
30
|
-
return ::Avm::Result.error('Remote failed') if remote_result.error?
|
31
|
-
|
32
|
-
::Avm::Result.success('Parent and remote ok')
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
@@ -1,57 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
class SubrepoChecks
|
6
|
-
enable_speaker
|
7
|
-
enable_simple_cache
|
8
|
-
attr_accessor :check_remote, :fix_parent
|
9
|
-
|
10
|
-
common_constructor :repository
|
11
|
-
|
12
|
-
def add_all_subrepos
|
13
|
-
add_subrepos(
|
14
|
-
*repository.command('subrepo', '-q', 'status').execute!.split("\n").map(&:strip)
|
15
|
-
.select(&:present?)
|
16
|
-
)
|
17
|
-
end
|
18
|
-
|
19
|
-
def add_subrepos(*subpath_list)
|
20
|
-
subpath_list.each do |subpath|
|
21
|
-
subpaths.add(subpath)
|
22
|
-
end
|
23
|
-
reset_cache
|
24
|
-
self
|
25
|
-
end
|
26
|
-
|
27
|
-
def check_options
|
28
|
-
{ fix_parent: fix_parent, check_remote: check_remote }
|
29
|
-
end
|
30
|
-
|
31
|
-
def show_result
|
32
|
-
checks.each(&:show_result)
|
33
|
-
infov 'Result', result.label
|
34
|
-
end
|
35
|
-
|
36
|
-
private
|
37
|
-
|
38
|
-
def checks_uncached
|
39
|
-
subpaths.map do |subpath|
|
40
|
-
::Avm::Git::SubrepoCheck.new(repository.subrepo(subpath), check_options)
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
def result_uncached
|
45
|
-
error_count = checks.count { |check| check.result.error? }
|
46
|
-
::Avm::Result.success_or_error(
|
47
|
-
error_count.zero?,
|
48
|
-
"#{error_count} of #{checks.count} subrepos failed"
|
49
|
-
)
|
50
|
-
end
|
51
|
-
|
52
|
-
def subpaths
|
53
|
-
@subpaths ||= ::Set.new
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
@@ -1,20 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Vendor
|
6
|
-
module Github
|
7
|
-
class << self
|
8
|
-
def to_ssh_url(url)
|
9
|
-
return nil if url.blank?
|
10
|
-
|
11
|
-
url_no_dot_git = url.gsub(/\.git\z/, '')
|
12
|
-
|
13
|
-
m = %r{\Ahttps://github.com/([^/]+)/([^/]+)\z}.match(url_no_dot_git.to_s)
|
14
|
-
m ? "git@github.com:#{m[1]}/#{m[2]}.git" : url
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
data/sub/avm-git/locale/en.yml
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'avm/git/commit/diff_tree_line'
|
4
|
-
|
5
|
-
RSpec.describe Avm::Git::Commit::DiffTreeLine, :git do
|
6
|
-
include_examples 'source_target_fixtures', __FILE__ do
|
7
|
-
def source_data(source_file)
|
8
|
-
File.read(source_file).each_line.map do |line|
|
9
|
-
described_class.new(line).fields
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
@@ -1 +0,0 @@
|
|
1
|
-
:000000 100644 0000000000000000000000000000000000000000 f380aec0bd8dd777edac43b11636e46cad04273a A nomes.txt
|
@@ -1 +0,0 @@
|
|
1
|
-
:100644 100644 40bcdecb4214cd8a3fcf96cd25a2beb87e7e7cd8 4a30dfae816b984f05cfb594e0d5958bb8c387ae M nomes.txt
|
@@ -1 +0,0 @@
|
|
1
|
-
:100644 000000 10728718a2915256ab162f1e05178ebff9efa6ce 0000000000000000000000000000000000000000 D nomes3.txt
|
@@ -1,13 +0,0 @@
|
|
1
|
-
---
|
2
|
-
- src_mode: '100644'
|
3
|
-
dst_mode: '000000'
|
4
|
-
src_sha1: 4a30dfae816b984f05cfb594e0d5958bb8c387ae
|
5
|
-
dst_sha1: '0000000000000000000000000000000000000000'
|
6
|
-
status: D
|
7
|
-
path: nomes.txt
|
8
|
-
- src_mode: '000000'
|
9
|
-
dst_mode: '100644'
|
10
|
-
src_sha1: '0000000000000000000000000000000000000000'
|
11
|
-
dst_sha1: 4a30dfae816b984f05cfb594e0d5958bb8c387ae
|
12
|
-
status: A
|
13
|
-
path: nomes2.txt
|