eac_tools 0.102.1 → 0.103.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +46 -43
- 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 +10 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/database.rb +27 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/files.rb +18 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/gitolite.rb +52 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/install.rb +43 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/nodejs.rb +19 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/web.rb +17 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base.rb +53 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/deploy.rb +16 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/docker_image.rb +110 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/rest_api/entity_base.rb +31 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/rest_api/project.rb +21 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/rest_api/root.rb +17 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/rest_api/wiki_page.rb +50 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/rest_api.rb +10 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/docker.rb +15 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/project/wiki_page/read.rb +25 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/project/wiki_page/write.rb +68 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/project/wiki_page.rb +26 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/project.rb +22 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/project_rename.rb +53 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/base.rb +32 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/core_update.rb +125 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/runners/core_update.rb +61 -0
- data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/runners/docker.rb +16 -0
- data/sub/{avm-git/lib/avm/git → avm-eac_redmine_base0/lib/avm/eac_redmine_base0}/version.rb +2 -2
- 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-git → avm-eac_redmine_base0}/spec/spec_helper.rb +3 -2
- 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 +37 -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/eac_cli/Gemfile +8 -0
- data/sub/eac_cli/eac_cli.gemspec +23 -0
- data/sub/eac_cli/lib/eac_cli/config/entry/options.rb +55 -0
- data/sub/eac_cli/lib/eac_cli/config/entry/undefined.rb +26 -0
- data/sub/eac_cli/lib/eac_cli/config/entry.rb +55 -0
- data/sub/eac_cli/lib/eac_cli/config.rb +15 -0
- data/sub/eac_cli/lib/eac_cli/core_ext.rb +4 -0
- data/sub/eac_cli/lib/eac_cli/default_runner.rb +12 -0
- data/sub/eac_cli/lib/eac_cli/definition/alternative.rb +101 -0
- data/sub/eac_cli/lib/eac_cli/definition/argument_option.rb +19 -0
- data/sub/eac_cli/lib/eac_cli/definition/boolean_option.rb +25 -0
- data/sub/eac_cli/lib/eac_cli/definition/error.rb +8 -0
- data/sub/eac_cli/lib/eac_cli/definition/option/initialize_args_parser.rb +48 -0
- data/sub/eac_cli/lib/eac_cli/definition/option.rb +70 -0
- data/sub/eac_cli/lib/eac_cli/definition/option_or_positional.rb +41 -0
- data/sub/eac_cli/lib/eac_cli/definition/positional.rb +50 -0
- data/sub/eac_cli/lib/eac_cli/definition.rb +104 -0
- data/sub/eac_cli/lib/eac_cli/enum.rb +42 -0
- data/sub/eac_cli/lib/eac_cli/old_configs/entry_reader.rb +76 -0
- data/sub/eac_cli/lib/eac_cli/old_configs/password_entry_reader.rb +14 -0
- data/sub/eac_cli/lib/eac_cli/old_configs/read_entry_options.rb +42 -0
- data/sub/eac_cli/lib/eac_cli/old_configs/store_passwords_entry_reader.rb +23 -0
- data/sub/eac_cli/lib/eac_cli/old_configs.rb +31 -0
- data/sub/eac_cli/lib/eac_cli/parser/alternative/any_options.rb +17 -0
- data/sub/eac_cli/lib/eac_cli/parser/alternative/argv.rb +19 -0
- data/sub/eac_cli/lib/eac_cli/parser/alternative/double_dash.rb +24 -0
- data/sub/eac_cli/lib/eac_cli/parser/alternative/long_options.rb +37 -0
- data/sub/eac_cli/lib/eac_cli/parser/alternative/option_argument.rb +29 -0
- data/sub/eac_cli/lib/eac_cli/parser/alternative/options.rb +29 -0
- data/sub/eac_cli/lib/eac_cli/parser/alternative/positionals.rb +30 -0
- data/sub/eac_cli/lib/eac_cli/parser/alternative/short_options.rb +54 -0
- data/sub/eac_cli/lib/eac_cli/parser/alternative.rb +99 -0
- data/sub/eac_cli/lib/eac_cli/parser/collector.rb +52 -0
- data/sub/eac_cli/lib/eac_cli/parser/error.rb +13 -0
- data/sub/eac_cli/lib/eac_cli/parser.rb +32 -0
- data/sub/eac_cli/lib/eac_cli/patches/object/runner_with.rb +22 -0
- data/sub/eac_cli/lib/eac_cli/patches/object.rb +5 -0
- data/sub/{avm-git/lib/avm/git/issue.rb → eac_cli/lib/eac_cli/patches.rb} +0 -7
- data/sub/eac_cli/lib/eac_cli/rspec/setup.rb +41 -0
- data/sub/eac_cli/lib/eac_cli/rspec.rb +7 -0
- data/sub/eac_cli/lib/eac_cli/runner/after_class_methods.rb +34 -0
- data/sub/eac_cli/lib/eac_cli/runner/class_runner.rb +32 -0
- data/sub/eac_cli/lib/eac_cli/runner/context.rb +57 -0
- data/sub/eac_cli/lib/eac_cli/runner/context_responders/base.rb +22 -0
- data/sub/eac_cli/lib/eac_cli/runner/context_responders/parent.rb +24 -0
- data/sub/eac_cli/lib/eac_cli/runner/context_responders/runner.rb +17 -0
- data/sub/eac_cli/lib/eac_cli/runner/context_responders/runner_missing_method.rb +29 -0
- data/sub/eac_cli/lib/eac_cli/runner/context_responders/set.rb +41 -0
- data/sub/{avm-git/lib/avm/git/launcher_stereotypes.rb → eac_cli/lib/eac_cli/runner/context_responders.rb} +3 -3
- data/sub/eac_cli/lib/eac_cli/runner/exit.rb +14 -0
- data/sub/eac_cli/lib/eac_cli/runner/for_context.rb +35 -0
- data/sub/eac_cli/lib/eac_cli/runner/instance_methods.rb +45 -0
- data/sub/eac_cli/lib/eac_cli/runner.rb +47 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/confirmation/input_result.rb +60 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/confirmation.rb +65 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/help/builder/alternative.rb +61 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/help/builder.rb +79 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/help/layout.rb +38 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/help.rb +51 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/input.rb +32 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/output.rb +54 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/output_item/asciidoc_formatter.rb +70 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/output_item/base_formatter.rb +12 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/output_item/csv_formatter.rb +21 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/output_item/yaml_formatter.rb +16 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/output_item.rb +47 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/output_list/base_formatter.rb +44 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/output_list/csv_formatter.rb +24 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/output_list/tty_formatter.rb +34 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/output_list/yaml_formatter.rb +21 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/output_list.rb +39 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/subcommands/definition_concern.rb +10 -0
- data/sub/eac_cli/lib/eac_cli/runner_with/subcommands.rb +124 -0
- data/sub/eac_cli/lib/eac_cli/runner_with.rb +7 -0
- data/sub/eac_cli/lib/eac_cli/runner_with_set.rb +54 -0
- data/sub/eac_cli/lib/eac_cli/speaker/constants.rb +11 -0
- data/sub/eac_cli/lib/eac_cli/speaker/input_blocked.rb +14 -0
- data/sub/eac_cli/lib/eac_cli/speaker/input_requested.rb +8 -0
- data/sub/eac_cli/lib/eac_cli/speaker/list.rb +84 -0
- data/sub/eac_cli/lib/eac_cli/speaker/options.rb +42 -0
- data/sub/eac_cli/lib/eac_cli/speaker/request_from_list.rb +40 -0
- data/sub/eac_cli/lib/eac_cli/speaker.rb +114 -0
- data/sub/eac_cli/lib/eac_cli/version.rb +5 -0
- data/sub/eac_cli/lib/eac_cli.rb +14 -0
- data/sub/eac_cli/spec/lib/eac_cli/definition/alternative_spec.rb +18 -0
- data/sub/eac_cli/spec/lib/eac_cli/old_configs_spec.rb +14 -0
- data/sub/eac_cli/spec/lib/eac_cli/parser/alternative/subcommands_spec.rb +58 -0
- data/sub/eac_cli/spec/lib/eac_cli/parser/alternative_spec.rb +89 -0
- data/sub/eac_cli/spec/lib/eac_cli/runner/for_context_spec.rb +79 -0
- data/sub/eac_cli/spec/lib/eac_cli/runner_spec.rb +129 -0
- data/sub/eac_cli/spec/lib/eac_cli/runner_with/confirmation/input_result_spec.rb +36 -0
- data/sub/eac_cli/spec/lib/eac_cli/runner_with/confirmation_spec.rb +42 -0
- data/sub/eac_cli/spec/lib/eac_cli/runner_with/help/layout_spec.rb +21 -0
- data/sub/eac_cli/spec/lib/eac_cli/runner_with/help_spec.rb +51 -0
- data/sub/eac_cli/spec/lib/eac_cli/runner_with/output_list_spec.rb +57 -0
- data/sub/eac_cli/spec/lib/eac_cli/runner_with/output_spec.rb +81 -0
- data/sub/eac_cli/spec/lib/eac_cli/runner_with/subcommands_spec.rb +99 -0
- data/sub/eac_cli/spec/lib/eac_cli/speaker_spec.rb +36 -0
- data/sub/eac_cli/spec/rubocop_spec.rb +3 -0
- data/sub/eac_cli/spec/spec_helper.rb +4 -0
- metadata +157 -130
- 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/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/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/organize.rb +0 -9
- 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/runners.rb +0 -9
- 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/lib/avm/git.rb +0 -16
- 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,32 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
class Commit
|
6
|
-
class DiffTreeLine
|
7
|
-
DIFF_TREE_PATTERN = /\A:(\d{6}) (\d{6}) (\S+) (\S+) (\S+)\t(\S.*)\z/.freeze
|
8
|
-
FIELDS = %w[src_mode dst_mode src_sha1 dst_sha1 status path].freeze
|
9
|
-
GIT_COMMAND_ARGS = %w[-c core.quotepath=off diff-tree --no-commit-id -r --full-index].freeze
|
10
|
-
|
11
|
-
attr_reader(*FIELDS)
|
12
|
-
|
13
|
-
# line: a line of command "git [GIT_COMMAND_ARGS]"'s output.
|
14
|
-
# Reference: https://git-scm.com/docs/git-diff-tree
|
15
|
-
def initialize(line)
|
16
|
-
m = DIFF_TREE_PATTERN.match(line.strip)
|
17
|
-
raise "\"#{line}\" did not match pattern" unless m
|
18
|
-
|
19
|
-
FIELDS.count.times { |i| send("#{FIELDS[i]}=", m[i + 1]) }
|
20
|
-
end
|
21
|
-
|
22
|
-
def fields
|
23
|
-
FIELDS.index_with { |field| send(field) }
|
24
|
-
end
|
25
|
-
|
26
|
-
private
|
27
|
-
|
28
|
-
attr_writer(*FIELDS)
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
@@ -1,42 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
class Commit
|
6
|
-
class File
|
7
|
-
include ::EacRubyUtils::SimpleCache
|
8
|
-
|
9
|
-
attr_reader :git, :diff_tree
|
10
|
-
|
11
|
-
# git: [EacGit::Local]
|
12
|
-
# diff_tree_tree: a line of command "git diff-tree --no-commit-id -r --full-index"'s output
|
13
|
-
def initialize(git, diff_tree_line)
|
14
|
-
@git = git
|
15
|
-
@diff_tree = ::Avm::Git::Commit::DiffTreeLine.new(diff_tree_line)
|
16
|
-
end
|
17
|
-
|
18
|
-
delegate(*::Avm::Git::Commit::DiffTreeLine::FIELDS, to: :diff_tree)
|
19
|
-
|
20
|
-
def to_s
|
21
|
-
"#{path}|#{status}"
|
22
|
-
end
|
23
|
-
|
24
|
-
def src_size_uncached
|
25
|
-
size(src_sha1)
|
26
|
-
end
|
27
|
-
|
28
|
-
def dst_size_uncached
|
29
|
-
size(dst_sha1)
|
30
|
-
end
|
31
|
-
|
32
|
-
private
|
33
|
-
|
34
|
-
def size(sha1)
|
35
|
-
return 0 if /\A0+\z/.match(sha1)
|
36
|
-
|
37
|
-
git.command('cat-file', '-s', sha1).execute!.strip.to_i
|
38
|
-
end
|
39
|
-
end
|
40
|
-
end
|
41
|
-
end
|
42
|
-
end
|
@@ -1,57 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
class Commit
|
6
|
-
require_sub __FILE__, include_modules: true
|
7
|
-
enable_simple_cache
|
8
|
-
|
9
|
-
FIELDS = {
|
10
|
-
author_name: '%an', author_email: '%ae', author_date: '%ai',
|
11
|
-
subject: '%s',
|
12
|
-
author_all: '%an <%ae>, %ai',
|
13
|
-
commiter_name: '%cn', commiter_email: '%ce', commiter_date: '%ci',
|
14
|
-
commiter_all: '%cn <%ce>, %ci'
|
15
|
-
}.freeze
|
16
|
-
|
17
|
-
attr_reader :git, :sha1
|
18
|
-
|
19
|
-
# @param git [EacGit::Local]
|
20
|
-
def initialize(git, sha1)
|
21
|
-
@git = git
|
22
|
-
@sha1 = sha1
|
23
|
-
end
|
24
|
-
|
25
|
-
def format(format)
|
26
|
-
git.command('--no-pager', 'log', '-1', "--pretty=format:#{format}", sha1).execute!.strip
|
27
|
-
end
|
28
|
-
|
29
|
-
FIELDS.each do |field, format|
|
30
|
-
define_method field do
|
31
|
-
format(format)
|
32
|
-
end
|
33
|
-
end
|
34
|
-
|
35
|
-
def files_uncached
|
36
|
-
diff_tree_execute.each_line.map { |line| ::Avm::Git::Commit::File.new(git, line) }
|
37
|
-
end
|
38
|
-
|
39
|
-
def files_size_uncached
|
40
|
-
files.inject(0) { |a, e| a + e.dst_size }
|
41
|
-
end
|
42
|
-
|
43
|
-
def root_child?
|
44
|
-
format('%P').blank? # rubocop:disable Style/RedundantFormat
|
45
|
-
end
|
46
|
-
|
47
|
-
private
|
48
|
-
|
49
|
-
def diff_tree_execute
|
50
|
-
args = []
|
51
|
-
args << '--root' if root_child?
|
52
|
-
args << sha1
|
53
|
-
git.command(*::Avm::Git::Commit::DiffTreeLine::GIT_COMMAND_ARGS, *args).execute!
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
@@ -1,40 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Issue
|
6
|
-
class Complete
|
7
|
-
module Commits
|
8
|
-
def commits_result
|
9
|
-
::Avm::Result.success_or_error(commits.any?, 'yes', 'none')
|
10
|
-
end
|
11
|
-
|
12
|
-
def commits_uncached
|
13
|
-
return [] unless branch_hash && follow_master?
|
14
|
-
|
15
|
-
interval = remote_master_hash ? "#{remote_master_hash}..#{branch_hash}" : branch_hash
|
16
|
-
launcher_git.execute!('rev-list', interval).each_line.map(&:strip)
|
17
|
-
end
|
18
|
-
|
19
|
-
def bifurcations_result
|
20
|
-
commits.each do |commit|
|
21
|
-
if multiple_parents?(commit)
|
22
|
-
return ::Avm::Result.error("#{commit} has multiple parents")
|
23
|
-
end
|
24
|
-
end
|
25
|
-
::Avm::Result.success('no')
|
26
|
-
end
|
27
|
-
|
28
|
-
def multiple_parents?(commit)
|
29
|
-
commit_parents(commit).many?
|
30
|
-
end
|
31
|
-
|
32
|
-
def commit_parents(commit)
|
33
|
-
launcher_git.execute!('log', '--pretty=%P', '-n', '1', commit).split.map(&:strip)
|
34
|
-
.select(&:present?)
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|
40
|
-
end
|
@@ -1,20 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Issue
|
6
|
-
class Complete
|
7
|
-
module GitSubrepos
|
8
|
-
def git_subrepos_result
|
9
|
-
return ::Avm::Result.error('Unclean workspace') unless clean_workspace?
|
10
|
-
|
11
|
-
infom 'Checking Git subrepos...'
|
12
|
-
r = ::Avm::Git::SubrepoChecks.new(::EacGit::Local.new(launcher_git)).add_all_subrepos
|
13
|
-
r.check_remote = true
|
14
|
-
r.result
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
@@ -1,59 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Issue
|
6
|
-
class Complete
|
7
|
-
module LocalBranch
|
8
|
-
NO_CURRENT_BRANCH_NAME = 'none'
|
9
|
-
|
10
|
-
# Retrieves the current local branch.
|
11
|
-
#
|
12
|
-
# @return [EacGit::Local::Branch, nil]
|
13
|
-
def branch_uncached
|
14
|
-
eac_git.current_branch
|
15
|
-
end
|
16
|
-
|
17
|
-
def branch_hash_uncached
|
18
|
-
branch.if_present(&:current_commit_id)
|
19
|
-
end
|
20
|
-
|
21
|
-
def branch_name
|
22
|
-
branch.if_present(NO_CURRENT_BRANCH_NAME, &:name)
|
23
|
-
end
|
24
|
-
|
25
|
-
def branch_name_result
|
26
|
-
::Avm::Result.success_or_error(issue_id.present?, branch_name)
|
27
|
-
end
|
28
|
-
|
29
|
-
def branch_hash_result
|
30
|
-
::Avm::Result.success_or_error(
|
31
|
-
branch_hash.present?,
|
32
|
-
branch_hash
|
33
|
-
)
|
34
|
-
end
|
35
|
-
|
36
|
-
def follow_master_result
|
37
|
-
return ::Avm::Result.neutral('No branch hash') unless branch_hash
|
38
|
-
|
39
|
-
r = follow_master?
|
40
|
-
::Avm::Result.success_or_error(r, 'yes', 'no')
|
41
|
-
end
|
42
|
-
|
43
|
-
def follow_master?
|
44
|
-
remote_master_hash ? launcher_git.descendant?(branch_hash, remote_master_hash) : true
|
45
|
-
end
|
46
|
-
|
47
|
-
def remove_local_branch
|
48
|
-
return unless branch
|
49
|
-
|
50
|
-
info 'Removendo branch local...'
|
51
|
-
bn = branch_name
|
52
|
-
git_execute(['checkout', branch_hash])
|
53
|
-
git_execute(['branch', '-D', bn])
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|
@@ -1,37 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Issue
|
6
|
-
class Complete
|
7
|
-
module LocalTag
|
8
|
-
def assert_tag
|
9
|
-
if tag_hash
|
10
|
-
return if tag_hash == branch_hash
|
11
|
-
|
12
|
-
delete_tag
|
13
|
-
end
|
14
|
-
create_tag
|
15
|
-
end
|
16
|
-
|
17
|
-
def delete_tag
|
18
|
-
info 'Removendo tag...'
|
19
|
-
git_execute(['tag', '-d', branch_name])
|
20
|
-
end
|
21
|
-
|
22
|
-
def tag
|
23
|
-
"refs/tags/#{branch_name}"
|
24
|
-
end
|
25
|
-
|
26
|
-
def tag_hash
|
27
|
-
launcher_git.rev_parse(tag)
|
28
|
-
end
|
29
|
-
|
30
|
-
def create_tag
|
31
|
-
git_execute(['tag', branch_name, branch_hash])
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
@@ -1,60 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Issue
|
6
|
-
class Complete
|
7
|
-
module Push
|
8
|
-
def dry_push_args
|
9
|
-
%w[push --dry-run] + [remote_name] + pushs
|
10
|
-
end
|
11
|
-
|
12
|
-
def dry_push_result
|
13
|
-
return ::Avm::Result.error('Nothing to push') if pushs.empty?
|
14
|
-
|
15
|
-
dry_push_execution_result
|
16
|
-
end
|
17
|
-
|
18
|
-
def push
|
19
|
-
if pushs.empty?
|
20
|
-
info 'PUSH: Nada a enviar'
|
21
|
-
else
|
22
|
-
info "PUSH: enviando \"#{pushs}\"..."
|
23
|
-
git_execute(%w[push origin] + pushs)
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
def pushs_uncached
|
28
|
-
[master_push, remove_branch_push, tag_push].compact
|
29
|
-
end
|
30
|
-
|
31
|
-
def master_push
|
32
|
-
remote_master_hash == branch_hash ? nil : "#{branch_hash}:refs/heads/master"
|
33
|
-
end
|
34
|
-
|
35
|
-
def remove_branch_push
|
36
|
-
remote_branch_hash ? ":refs/heads/#{branch.name}" : nil
|
37
|
-
end
|
38
|
-
|
39
|
-
def tag_push
|
40
|
-
return nil unless !remote_tag_hash || remote_tag_hash != branch_hash
|
41
|
-
|
42
|
-
"#{branch_hash}:#{tag}"
|
43
|
-
end
|
44
|
-
|
45
|
-
private
|
46
|
-
|
47
|
-
def dry_push_execution_result
|
48
|
-
r = launcher_git.execute(dry_push_args)
|
49
|
-
message = if r.fetch(:exit_code).zero?
|
50
|
-
'ok'
|
51
|
-
else
|
52
|
-
r.fetch(:stderr) + "\n#{::Shellwords.join(dry_push_args)}"
|
53
|
-
end
|
54
|
-
::Avm::Result.success_or_error(r.fetch(:exit_code).zero?, message)
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|
60
|
-
end
|
@@ -1,33 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Issue
|
6
|
-
class Complete
|
7
|
-
module Remote
|
8
|
-
def remote_master_hash
|
9
|
-
remote_hashs['refs/heads/master']
|
10
|
-
end
|
11
|
-
|
12
|
-
def remote_branch_hash
|
13
|
-
remote_hashs["refs/heads/#{branch.name}"]
|
14
|
-
end
|
15
|
-
|
16
|
-
def remote_tag_hash
|
17
|
-
remote_hashs[tag]
|
18
|
-
end
|
19
|
-
|
20
|
-
private
|
21
|
-
|
22
|
-
def remote_name
|
23
|
-
'origin'
|
24
|
-
end
|
25
|
-
|
26
|
-
def remote_hashs_uncached
|
27
|
-
launcher_git.remote_hashs(remote_name)
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
@@ -1,34 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Issue
|
6
|
-
class Complete
|
7
|
-
module Test
|
8
|
-
def test_result
|
9
|
-
infom 'Running tests...'
|
10
|
-
test_performer.units.each do |single|
|
11
|
-
return ::Avm::Result.error(test_failed_result_message(single)) if single.failed?
|
12
|
-
end
|
13
|
-
::Avm::Result.success('all passed')
|
14
|
-
end
|
15
|
-
|
16
|
-
private
|
17
|
-
|
18
|
-
def test_failed_result_message(single)
|
19
|
-
{ 'Source' => single, 'STDOUT' => single.logs[:stdout],
|
20
|
-
'STDERR' => single.logs[:stderr] }.map { |k, v| "#{k}: #{v}" }.join(', ')
|
21
|
-
end
|
22
|
-
|
23
|
-
def test_performer
|
24
|
-
::Avm::Sources::Tests::Builder
|
25
|
-
.new(::Avm::Registry.sources.detect(launcher_git))
|
26
|
-
.include_main(true)
|
27
|
-
.include_subs(true)
|
28
|
-
.performer
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
@@ -1,21 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Issue
|
6
|
-
class Complete
|
7
|
-
module Tracker
|
8
|
-
private
|
9
|
-
|
10
|
-
def textile_tracker_message_uncached
|
11
|
-
"Revisado para commit:#{branch_short_hash}, ok."
|
12
|
-
end
|
13
|
-
|
14
|
-
def branch_short_hash
|
15
|
-
git_execute(['log', '--pretty=format:%h', '-1', '-q', branch_hash])
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
@@ -1,36 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Issue
|
6
|
-
class Complete
|
7
|
-
class Validation
|
8
|
-
enable_simple_cache
|
9
|
-
common_constructor :parent, :key, :label
|
10
|
-
|
11
|
-
SKIPPED_RESULT_MESSAGE = 'skipped'
|
12
|
-
|
13
|
-
def skip?
|
14
|
-
parent.skip_validations.include?(key)
|
15
|
-
end
|
16
|
-
|
17
|
-
private
|
18
|
-
|
19
|
-
def result_uncached
|
20
|
-
skip? ? skipped_result : validation_result
|
21
|
-
end
|
22
|
-
|
23
|
-
def skipped_result
|
24
|
-
::Avm::Result.neutral(SKIPPED_RESULT_MESSAGE)
|
25
|
-
end
|
26
|
-
|
27
|
-
def validation_result
|
28
|
-
parent.send("#{key}_result")
|
29
|
-
rescue ::RuntimeError => e
|
30
|
-
::Avm::Result.error("error raised: #{e.message}")
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
@@ -1,54 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Issue
|
6
|
-
class Complete
|
7
|
-
module Validations
|
8
|
-
VALIDATIONS = {
|
9
|
-
clean_workspace: 'Clean workspace?',
|
10
|
-
branch_name: 'Branch name',
|
11
|
-
branch_hash: 'Branch hash',
|
12
|
-
follow_master: 'Follow master?',
|
13
|
-
commits: 'Commits?',
|
14
|
-
bifurcations: 'Bifurcations?',
|
15
|
-
dry_push: 'Dry push?',
|
16
|
-
git_subrepos: 'Git subrepos ok?',
|
17
|
-
test: 'Test ok?'
|
18
|
-
}.with_indifferent_access.freeze
|
19
|
-
|
20
|
-
def valid?
|
21
|
-
validations.map(&:result).none?(&:error?)
|
22
|
-
end
|
23
|
-
|
24
|
-
def validations_banner
|
25
|
-
validations.each do |v|
|
26
|
-
infov "[#{v.key}] #{v.label}", v.result.label
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
def validate_skip_validations
|
31
|
-
skip_validations.each do |validation|
|
32
|
-
next if VALIDATIONS.keys.include?(validation)
|
33
|
-
|
34
|
-
raise "\"#{validation}\" is not a registered validation"
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
38
|
-
# @return [Enumerable<String>]
|
39
|
-
def validation_keys
|
40
|
-
validations.map { |e| e.key.to_s.strip }.sort
|
41
|
-
end
|
42
|
-
|
43
|
-
private
|
44
|
-
|
45
|
-
def validations_uncached
|
46
|
-
VALIDATIONS.map do |key, label|
|
47
|
-
::Avm::Git::Issue::Complete::Validation.new(self, key, label)
|
48
|
-
end
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
@@ -1,19 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Issue
|
6
|
-
class Complete
|
7
|
-
module WorkingTree
|
8
|
-
def clean_workspace_result
|
9
|
-
::Avm::Result.success_or_error(clean_workspace?, 'yes', 'no')
|
10
|
-
end
|
11
|
-
|
12
|
-
def clean_workspace?
|
13
|
-
launcher_git.dirty_files.none?
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
@@ -1,66 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Issue
|
6
|
-
class Complete
|
7
|
-
require_sub __FILE__, include_modules: true
|
8
|
-
enable_simple_cache
|
9
|
-
enable_speaker
|
10
|
-
|
11
|
-
attr_reader :scm, :skip_validations
|
12
|
-
|
13
|
-
def initialize(scm, options)
|
14
|
-
@scm = scm
|
15
|
-
consumer = ::EacRubyUtils::OptionsConsumer.new(options)
|
16
|
-
@skip_validations = consumer.consume(:skip_validations)
|
17
|
-
validate_skip_validations
|
18
|
-
consumer.validate
|
19
|
-
end
|
20
|
-
|
21
|
-
# @return [String]
|
22
|
-
def dir
|
23
|
-
scm.path.to_path
|
24
|
-
end
|
25
|
-
|
26
|
-
def start_banner
|
27
|
-
validations_banner
|
28
|
-
end
|
29
|
-
|
30
|
-
def run # rubocop:disable Naming/PredicateMethod
|
31
|
-
return false unless valid?
|
32
|
-
|
33
|
-
assert_tag
|
34
|
-
push
|
35
|
-
remove_local_branch
|
36
|
-
true
|
37
|
-
end
|
38
|
-
|
39
|
-
def issue_id
|
40
|
-
branch ? issue_id_parser.parse(branch_name) : nil
|
41
|
-
end
|
42
|
-
|
43
|
-
# @return [EacRubyUtils::RegexpParser]
|
44
|
-
def issue_id_parser
|
45
|
-
/\A#{Regexp.quote('issue_')}(\d+)\z/.to_parser { |m| m[1].to_i }
|
46
|
-
end
|
47
|
-
|
48
|
-
private
|
49
|
-
|
50
|
-
# @return [EacGit::Local]
|
51
|
-
def eac_git_uncached
|
52
|
-
::EacGit::Local.new(dir)
|
53
|
-
end
|
54
|
-
|
55
|
-
def git_execute(args, exit_outputs = {})
|
56
|
-
r = launcher_git.execute!(args, exit_outputs: exit_outputs)
|
57
|
-
r.is_a?(String) ? r.strip : r
|
58
|
-
end
|
59
|
-
|
60
|
-
def launcher_git_uncached
|
61
|
-
::Avm::Git::Launcher::Base.new(dir)
|
62
|
-
end
|
63
|
-
end
|
64
|
-
end
|
65
|
-
end
|
66
|
-
end
|
@@ -1,28 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Launcher
|
6
|
-
class Base < ::Avm::Launcher::Paths::Real
|
7
|
-
module ClassMethods
|
8
|
-
# @return [Avm::Git::Launcher::Base]
|
9
|
-
def by_root(search_base_path)
|
10
|
-
new(find_root(search_base_path).to_path)
|
11
|
-
end
|
12
|
-
|
13
|
-
# Searches the root path for the Git repository which includes +search_base_path+.
|
14
|
-
# @return [Pathname]
|
15
|
-
def find_root(search_base_path)
|
16
|
-
path = search_base_path.to_pathname.expand_path
|
17
|
-
loop do
|
18
|
-
return path if path.join('.git').exist?
|
19
|
-
raise "\".git\" not found for \"#{search_base_path}\"" if path.parent.root?
|
20
|
-
|
21
|
-
path = path.parent
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
@@ -1,21 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Avm
|
4
|
-
module Git
|
5
|
-
module Launcher
|
6
|
-
class Base < ::Avm::Launcher::Paths::Real
|
7
|
-
module DirtyFiles
|
8
|
-
delegate :dirty?, to: :eac_git
|
9
|
-
|
10
|
-
# @return [Array<Struct>]
|
11
|
-
def dirty_files
|
12
|
-
eac_git.dirty_files.map do |df|
|
13
|
-
df.to_h.merge(path: df.path.to_path, absolute_path: df.absolute_path.to_path)
|
14
|
-
.to_struct
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|