eac_tools 0.92.0 → 0.94.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +68 -53
- data/lib/eac_tools/version.rb +1 -1
- data/sub/avm/avm.gemspec +3 -3
- data/sub/avm/lib/avm/launcher/context.rb +0 -5
- data/sub/avm/lib/avm/rspec/launcher_controller.rb +96 -0
- data/sub/avm/lib/avm/rspec/setup.rb +1 -1
- data/sub/avm/lib/avm/rspec/shared_examples/with_launcher.rb +16 -0
- data/sub/avm/lib/avm/scms/base.rb +1 -1
- data/sub/avm/lib/avm/sources/base/sub.rb +1 -1
- data/sub/avm/lib/avm/version.rb +1 -1
- data/sub/avm/spec/lib/avm/launcher/context_spec.rb +2 -2
- data/sub/avm/spec/lib/avm/launcher/instances/base_spec.rb +2 -2
- data/sub/avm/template/avm/rspec/launcher_controller/settings.yml +1 -0
- data/sub/avm-eac_webapp_base0/Gemfile +8 -0
- data/sub/avm-eac_webapp_base0/avm-eac_webapp_base0.gemspec +25 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/executables.rb +26 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/file_formats/css/file_apply.rb +48 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/file_formats/css.rb +22 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/file_formats/html.rb +43 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/file_formats/javascript.rb +22 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/file_formats/json.rb +25 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/file_formats/provider.rb +24 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/file_formats/xml.rb +26 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/file_formats.rb +11 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/apache_base.rb +33 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/apache_host.rb +78 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/apache_path.rb +42 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/base/apache.rb +44 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/base/deploy_info.rb +30 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/base/install.rb +22 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/base.rb +44 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/deploy/appended_directories.rb +27 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/deploy/build.rb +50 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/deploy/info.rb +47 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/deploy/scm.rb +88 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/deploy/setup_files_unit.rb +53 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/deploy/write_on_target.rb +20 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/deploy.rb +76 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/deploy_info.rb +37 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/processes/web_server.rb +37 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/processes.rb +13 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/runners/apache_host.rb +36 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/runners/apache_path.rb +40 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/runners/data/load.rb +60 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/runners/deploy.rb +57 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/runners/deploy_info.rb +28 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/runners.rb +13 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/sources/base.rb +15 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/sources.rb +11 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/version.rb +7 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0.rb +9 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/file_formats/css_spec.rb +7 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/file_formats/css_spec_files/css1.source.css +11 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/file_formats/css_spec_files/css1.target.css +11 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/file_formats/html_spec.rb +7 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/file_formats/html_spec_files/html_code.html.erb.source +8 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/file_formats/html_spec_files/html_code.html.erb.target +8 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/file_formats/html_spec_files/html_code.html.source +5 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/file_formats/html_spec_files/html_code.html.target +5 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/file_formats/javascript_spec.rb +7 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/file_formats/javascript_spec_files/javascript_code1.js.source +29 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/file_formats/javascript_spec_files/javascript_code1.js.target +21 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/file_formats/json_spec.rb +7 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/file_formats/json_spec_files/json_code.json.source +8 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/file_formats/json_spec_files/json_code.json.target +7 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/file_formats/xml_spec.rb +7 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/file_formats/xml_spec_files/xml_code.xml.source +11 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/file_formats/xml_spec_files/xml_code.xml.target +9 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/instances/base_spec.rb +11 -0
- data/sub/avm-eac_webapp_base0/spec/lib/avm/eac_webapp_base0/sources/base_spec.rb +7 -0
- data/sub/avm-eac_webapp_base0/spec/rubocop_spec.rb +3 -0
- data/sub/avm-eac_webapp_base0/spec/spec_helper.rb +4 -0
- data/sub/avm-eac_webapp_base0/template/avm/eac_webapp_base0/instances/apache_host/no_ssl.conf +11 -0
- data/sub/avm-eac_webapp_base0/template/avm/eac_webapp_base0/instances/apache_path/default.conf +7 -0
- data/sub/avm-git/Gemfile +8 -0
- data/sub/avm-git/avm-git.gemspec +25 -0
- data/sub/avm-git/lib/avm/git/application_scms/base/assert_main_at.rb +49 -0
- data/sub/avm-git/lib/avm/git/application_scms/base.rb +21 -0
- data/sub/avm-git/lib/avm/git/application_scms.rb +11 -0
- data/sub/avm-git/lib/avm/git/commit/class_methods.rb +31 -0
- data/sub/avm-git/lib/avm/git/commit/diff_tree_line.rb +32 -0
- data/sub/avm-git/lib/avm/git/commit/file.rb +46 -0
- data/sub/avm-git/lib/avm/git/commit.rb +59 -0
- data/sub/avm-git/lib/avm/git/issue/complete/commits.rb +42 -0
- data/sub/avm-git/lib/avm/git/issue/complete/git_subrepos.rb +23 -0
- data/sub/avm-git/lib/avm/git/issue/complete/local_branch.rb +61 -0
- data/sub/avm-git/lib/avm/git/issue/complete/local_tag.rb +39 -0
- data/sub/avm-git/lib/avm/git/issue/complete/push.rb +60 -0
- data/sub/avm-git/lib/avm/git/issue/complete/remote.rb +33 -0
- data/sub/avm-git/lib/avm/git/issue/complete/test.rb +40 -0
- data/sub/avm-git/lib/avm/git/issue/complete/tracker.rb +21 -0
- data/sub/avm-git/lib/avm/git/issue/complete/validation.rb +39 -0
- data/sub/avm-git/lib/avm/git/issue/complete/validations.rb +53 -0
- data/sub/avm-git/lib/avm/git/issue/complete/working_tree.rb +19 -0
- data/sub/avm-git/lib/avm/git/issue/complete.rb +69 -0
- data/sub/avm-git/lib/avm/git/issue.rb +11 -0
- data/sub/avm-git/lib/avm/git/launcher/base/class_methods.rb +28 -0
- data/sub/avm-git/lib/avm/git/launcher/base/dirty_files.rb +23 -0
- data/sub/avm-git/lib/avm/git/launcher/base/remotes.rb +40 -0
- data/sub/avm-git/lib/avm/git/launcher/base/subrepo.rb +44 -0
- data/sub/avm-git/lib/avm/git/launcher/base/underlying.rb +59 -0
- data/sub/avm-git/lib/avm/git/launcher/base.rb +87 -0
- data/sub/avm-git/lib/avm/git/launcher/error.rb +15 -0
- data/sub/avm-git/lib/avm/git/launcher/mirror_update.rb +38 -0
- data/sub/avm-git/lib/avm/git/launcher/publish_base.rb +131 -0
- data/sub/avm-git/lib/avm/git/launcher/remote.rb +55 -0
- data/sub/avm-git/lib/avm/git/launcher/sub_warp_base.rb +33 -0
- data/sub/avm-git/lib/avm/git/launcher/warp_base.rb +68 -0
- data/sub/avm-git/lib/avm/git/launcher.rb +7 -0
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git/local_project_mixin.rb +19 -0
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git/publish.rb +15 -0
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git/warp.rb +27 -0
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git.rb +25 -0
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git_subrepo/publish.rb +31 -0
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git_subrepo/warp.rb +88 -0
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git_subrepo.rb +36 -0
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git_subtree/publish.rb +14 -0
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git_subtree/warp.rb +32 -0
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/git_subtree.rb +51 -0
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/provider.rb +22 -0
- data/sub/avm-git/lib/avm/git/launcher_stereotypes.rb +11 -0
- data/sub/avm-git/lib/avm/git/organize/reference_update.rb +34 -0
- data/sub/avm-git/lib/avm/git/organize/repository.rb +77 -0
- data/sub/avm-git/lib/avm/git/organize.rb +11 -0
- data/sub/avm-git/lib/avm/git/revision_test.rb +105 -0
- data/sub/avm-git/lib/avm/git/runners/base/commit.rb +102 -0
- data/sub/avm-git/lib/avm/git/runners/base/deploy.rb +111 -0
- data/sub/avm-git/lib/avm/git/runners/base/dirty_files.rb +44 -0
- data/sub/avm-git/lib/avm/git/runners/base/organize.rb +75 -0
- data/sub/avm-git/lib/avm/git/runners/base/revisions_test.rb +66 -0
- data/sub/avm-git/lib/avm/git/runners/base/subrepo/check.rb +48 -0
- data/sub/avm-git/lib/avm/git/runners/base/subrepo/clone.rb +83 -0
- data/sub/avm-git/lib/avm/git/runners/base/subrepo/fix.rb +76 -0
- data/sub/avm-git/lib/avm/git/runners/base/subrepo.rb +19 -0
- data/sub/avm-git/lib/avm/git/runners/base.rb +43 -0
- data/sub/avm-git/lib/avm/git/runners.rb +11 -0
- data/sub/avm-git/lib/avm/git/scms/git/branch.rb +31 -0
- data/sub/avm-git/lib/avm/git/scms/git/branches.rb +20 -0
- data/sub/avm-git/lib/avm/git/scms/git/change_tracker.rb +36 -0
- data/sub/avm-git/lib/avm/git/scms/git/changed_file.rb +16 -0
- data/sub/avm-git/lib/avm/git/scms/git/changed_files.rb +24 -0
- data/sub/avm-git/lib/avm/git/scms/git/commit/deploy.rb +43 -0
- data/sub/avm-git/lib/avm/git/scms/git/commit/deploy_methods.rb +30 -0
- data/sub/avm-git/lib/avm/git/scms/git/commit.rb +67 -0
- data/sub/avm-git/lib/avm/git/scms/git/commit_dirty.rb +36 -0
- data/sub/avm-git/lib/avm/git/scms/git/commits.rb +47 -0
- data/sub/avm-git/lib/avm/git/scms/git/interval.rb +31 -0
- data/sub/avm-git/lib/avm/git/scms/git/milestones.rb +21 -0
- data/sub/avm-git/lib/avm/git/scms/git/remote.rb +21 -0
- data/sub/avm-git/lib/avm/git/scms/git/remotes.rb +32 -0
- data/sub/avm-git/lib/avm/git/scms/git/run_commit.rb +57 -0
- data/sub/avm-git/lib/avm/git/scms/git.rb +51 -0
- data/sub/avm-git/lib/avm/git/scms/git_sub_base/changed_file.rb +21 -0
- data/sub/avm-git/lib/avm/git/scms/git_sub_base/commit.rb +27 -0
- data/sub/avm-git/lib/avm/git/scms/git_sub_base/interval.rb +28 -0
- data/sub/avm-git/lib/avm/git/scms/git_sub_base.rb +33 -0
- data/sub/avm-git/lib/avm/git/scms/git_subrepo.rb +37 -0
- data/sub/avm-git/lib/avm/git/scms/git_subtree.rb +34 -0
- data/sub/avm-git/lib/avm/git/scms/provider.rb +21 -0
- data/sub/avm-git/lib/avm/git/scms.rb +11 -0
- data/sub/avm-git/lib/avm/git/subrepo_check/parent.rb +51 -0
- data/sub/avm-git/lib/avm/git/subrepo_check/remote.rb +89 -0
- data/sub/avm-git/lib/avm/git/subrepo_check/show_result.rb +32 -0
- data/sub/avm-git/lib/avm/git/subrepo_check.rb +38 -0
- data/sub/avm-git/lib/avm/git/subrepo_checks.rb +60 -0
- data/sub/avm-git/lib/avm/git/vendor/github.rb +20 -0
- data/sub/avm-git/lib/avm/git/vendor.rb +11 -0
- data/sub/avm-git/lib/avm/git/version.rb +7 -0
- data/sub/avm-git/lib/avm/git.rb +9 -0
- data/sub/avm-git/locale/en.yml +6 -0
- data/sub/avm-git/locale/pt-BR.yml +6 -0
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec.rb +13 -0
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/add.source.out +1 -0
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/add.target.yaml +7 -0
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/modify.source.out +1 -0
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/modify.target.yaml +7 -0
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/remove.source.out +1 -0
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/remove.target.yaml +7 -0
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/rename.source.out +2 -0
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/rename.target.yaml +13 -0
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/rename_modify.source.out +2 -0
- data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/rename_modify.target.yaml +13 -0
- data/sub/avm-git/spec/lib/avm/git/commit_spec.rb +56 -0
- data/sub/avm-git/spec/lib/avm/git/launcher/base_spec.rb +45 -0
- data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/publish_spec.rb +83 -0
- data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/publish_spec_files/config.yml +5 -0
- data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/publish_spec_settings.yml +6 -0
- data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/warp_spec.rb +53 -0
- data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/warp_spec_files/config.yml +3 -0
- data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/warp_spec_settings.yml +6 -0
- data/sub/avm-git/spec/lib/avm/git/runners/base/deploy_spec.rb +126 -0
- data/sub/avm-git/spec/lib/avm/git/runners/base/deploy_spec_files/append1/stub3.txt.template +1 -0
- data/sub/avm-git/spec/lib/avm/git/runners/base/deploy_spec_files/append2/stub4.txt +1 -0
- data/sub/avm-git/spec/lib/avm/git/scms/git/commit/deploy_spec.rb +92 -0
- data/sub/avm-git/spec/lib/avm/git/scms/git_spec.rb +8 -0
- data/sub/avm-git/spec/lib/avm/git/scms/git_subrepo_spec.rb +8 -0
- data/sub/avm-git/spec/lib/avm/git/vendor/github_spec.rb +23 -0
- data/sub/avm-git/spec/rubocop_spec.rb +3 -0
- data/sub/avm-git/spec/spec_helper.rb +4 -0
- data/sub/avm-tools/Gemfile +8 -0
- data/sub/avm-tools/README.textile +28 -0
- data/sub/avm-tools/avm-tools.gemspec +25 -0
- data/sub/avm-tools/exe/avm +6 -0
- data/sub/avm-tools/lib/avm/tools/core_ext.rb +3 -0
- data/sub/avm-tools/lib/avm/tools/rspec/helpers/runner.rb +20 -0
- data/sub/avm-tools/lib/avm/tools/rspec/helpers.rb +13 -0
- data/sub/avm-tools/lib/avm/tools/rspec/setup.rb +24 -0
- data/sub/avm-tools/lib/avm/tools/rspec.rb +11 -0
- data/sub/avm-tools/lib/avm/tools/runner/application/info.rb +36 -0
- data/sub/avm-tools/lib/avm/tools/runner/application.rb +26 -0
- data/sub/avm-tools/lib/avm/tools/runner/application_stereotypes/list.rb +31 -0
- data/sub/avm-tools/lib/avm/tools/runner/application_stereotypes.rb +16 -0
- data/sub/avm-tools/lib/avm/tools/runner/applications/list.rb +31 -0
- data/sub/avm-tools/lib/avm/tools/runner/applications.rb +16 -0
- data/sub/avm-tools/lib/avm/tools/runner/config/load_path.rb +52 -0
- data/sub/avm-tools/lib/avm/tools/runner/config.rb +17 -0
- data/sub/avm-tools/lib/avm/tools/runner/files/format.rb +50 -0
- data/sub/avm-tools/lib/avm/tools/runner/files/rotate.rb +31 -0
- data/sub/avm-tools/lib/avm/tools/runner/files.rb +17 -0
- data/sub/avm-tools/lib/avm/tools/runner/instance/data/clear.rb +18 -0
- data/sub/avm-tools/lib/avm/tools/runner/instance/data/dump.rb +20 -0
- data/sub/avm-tools/lib/avm/tools/runner/instance/data/load.rb +25 -0
- data/sub/avm-tools/lib/avm/tools/runner/instance/data/unit/clear.rb +20 -0
- data/sub/avm-tools/lib/avm/tools/runner/instance/data/unit/dump.rb +20 -0
- data/sub/avm-tools/lib/avm/tools/runner/instance/data/unit/load.rb +25 -0
- data/sub/avm-tools/lib/avm/tools/runner/instance/data/unit.rb +44 -0
- data/sub/avm-tools/lib/avm/tools/runner/instance/data.rb +27 -0
- data/sub/avm-tools/lib/avm/tools/runner/instance/entry.rb +43 -0
- data/sub/avm-tools/lib/avm/tools/runner/instance/info.rb +39 -0
- data/sub/avm-tools/lib/avm/tools/runner/instance/system.rb +65 -0
- data/sub/avm-tools/lib/avm/tools/runner/instance.rb +16 -0
- data/sub/avm-tools/lib/avm/tools/runner/launcher/instances.rb +36 -0
- data/sub/avm-tools/lib/avm/tools/runner/launcher/projects.rb +40 -0
- data/sub/avm-tools/lib/avm/tools/runner/launcher/publish.rb +53 -0
- data/sub/avm-tools/lib/avm/tools/runner/launcher.rb +17 -0
- data/sub/avm-tools/lib/avm/tools/runner/launcher_stereotypes/list.rb +41 -0
- data/sub/avm-tools/lib/avm/tools/runner/launcher_stereotypes.rb +16 -0
- data/sub/avm-tools/lib/avm/tools/runner/self/docker.rb +14 -0
- data/sub/avm-tools/lib/avm/tools/runner/self/registry.rb +25 -0
- data/sub/avm-tools/lib/avm/tools/runner/self.rb +22 -0
- data/sub/avm-tools/lib/avm/tools/runner/source/auto_commit.rb +72 -0
- data/sub/avm-tools/lib/avm/tools/runner/source/info.rb +55 -0
- data/sub/avm-tools/lib/avm/tools/runner/source/issue/complete.rb +86 -0
- data/sub/avm-tools/lib/avm/tools/runner/source/issue/deliver.rb +35 -0
- data/sub/avm-tools/lib/avm/tools/runner/source/issue.rb +19 -0
- data/sub/avm-tools/lib/avm/tools/runner/source/sub/remove.rb +22 -0
- data/sub/avm-tools/lib/avm/tools/runner/source/sub.rb +29 -0
- data/sub/avm-tools/lib/avm/tools/runner/source/subs.rb +72 -0
- data/sub/avm-tools/lib/avm/tools/runner/source/test.rb +93 -0
- data/sub/avm-tools/lib/avm/tools/runner/source/update.rb +22 -0
- data/sub/avm-tools/lib/avm/tools/runner/source/version_bump.rb +81 -0
- data/sub/avm-tools/lib/avm/tools/runner/source.rb +18 -0
- data/sub/avm-tools/lib/avm/tools/runner/source_generate.rb +12 -0
- data/sub/avm-tools/lib/avm/tools/runner.rb +27 -0
- data/sub/avm-tools/lib/avm/tools/runner_with/include_exclude.rb +23 -0
- data/sub/avm-tools/lib/avm/tools/runner_with/instance_data_clear.rb +23 -0
- data/sub/avm-tools/lib/avm/tools/runner_with/instance_data_dump.rb +59 -0
- data/sub/avm-tools/lib/avm/tools/runner_with/instance_data_load.rb +69 -0
- data/sub/avm-tools/lib/avm/tools/runner_with/instance_data_performer.rb +40 -0
- data/sub/avm-tools/lib/avm/tools/runner_with.rb +11 -0
- data/sub/avm-tools/lib/avm/tools/self.rb +23 -0
- data/sub/avm-tools/lib/avm/tools/version.rb +7 -0
- data/sub/avm-tools/lib/avm/tools.rb +9 -0
- data/sub/avm-tools/lib/avm.rb +7 -0
- data/sub/avm-tools/spec/lib/avm/tools/runner/files/rotate_spec.rb +72 -0
- data/sub/avm-tools/spec/lib/avm/tools/runner/launcher_stereotypes/list_spec.rb +17 -0
- data/sub/avm-tools/spec/lib/avm/tools/runner/source/issue/complete_spec.rb +49 -0
- data/sub/avm-tools/spec/lib/avm/tools/runner_spec.rb +15 -0
- data/sub/avm-tools/spec/rubocop_spec.rb +3 -0
- data/sub/avm-tools/spec/spec_helper.rb +4 -0
- metadata +284 -25
- data/sub/avm/spec/spec_helper/launcher_context.rb +0 -75
- /data/sub/avm/{spec → template/avm/rspec/launcher_controller}/dummy/avm-tools_stub/avm-tools.gemspec +0 -0
- /data/sub/avm/{spec → template/avm/rspec/launcher_controller}/dummy/avm-tools_stub/lib/avm/tools/version.rb +0 -0
- /data/sub/avm/{spec → template/avm/rspec/launcher_controller}/dummy/avm-tools_stub/lib/avm/tools.rb +0 -0
- /data/sub/avm/{spec → template/avm/rspec/launcher_controller}/dummy/ruby_gem_stub/lib/ruby_gem_stub/version.rb +0 -0
- /data/sub/avm/{spec → template/avm/rspec/launcher_controller}/dummy/ruby_gem_stub/lib/ruby_gem_stub.rb +0 -0
- /data/sub/avm/{spec → template/avm/rspec/launcher_controller}/dummy/ruby_gem_stub/ruby_gem_stub.gemspec +0 -0
@@ -0,0 +1,39 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'avm/result'
|
4
|
+
require 'eac_ruby_utils/core_ext'
|
5
|
+
|
6
|
+
module Avm
|
7
|
+
module Git
|
8
|
+
module Issue
|
9
|
+
class Complete
|
10
|
+
class Validation
|
11
|
+
enable_simple_cache
|
12
|
+
common_constructor :parent, :key, :label
|
13
|
+
|
14
|
+
SKIPPED_RESULT_MESSAGE = 'skipped'
|
15
|
+
|
16
|
+
def skip?
|
17
|
+
parent.skip_validations.include?(key)
|
18
|
+
end
|
19
|
+
|
20
|
+
private
|
21
|
+
|
22
|
+
def result_uncached
|
23
|
+
skip? ? skipped_result : validation_result
|
24
|
+
end
|
25
|
+
|
26
|
+
def skipped_result
|
27
|
+
::Avm::Result.neutral(SKIPPED_RESULT_MESSAGE)
|
28
|
+
end
|
29
|
+
|
30
|
+
def validation_result
|
31
|
+
parent.send("#{key}_result")
|
32
|
+
rescue ::RuntimeError => e
|
33
|
+
::Avm::Result.error("error raised: #{e.message}")
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'avm/git/issue/complete/validation'
|
4
|
+
require 'avm/result'
|
5
|
+
require 'ostruct'
|
6
|
+
|
7
|
+
module Avm
|
8
|
+
module Git
|
9
|
+
module Issue
|
10
|
+
class Complete
|
11
|
+
module Validations
|
12
|
+
VALIDATIONS = {
|
13
|
+
clean_workspace: 'Clean workspace?',
|
14
|
+
branch_name: 'Branch name',
|
15
|
+
branch_hash: 'Branch hash',
|
16
|
+
follow_master: 'Follow master?',
|
17
|
+
commits: 'Commits?',
|
18
|
+
bifurcations: 'Bifurcations?',
|
19
|
+
dry_push: 'Dry push?',
|
20
|
+
git_subrepos: 'Git subrepos ok?',
|
21
|
+
test: 'Test ok?'
|
22
|
+
}.with_indifferent_access.freeze
|
23
|
+
|
24
|
+
def valid?
|
25
|
+
validations.map(&:result).none?(&:error?)
|
26
|
+
end
|
27
|
+
|
28
|
+
def validations_banner
|
29
|
+
validations.each do |v|
|
30
|
+
infov "[#{v.key}] #{v.label}", v.result.label
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def validate_skip_validations
|
35
|
+
skip_validations.each do |validation|
|
36
|
+
next if VALIDATIONS.keys.include?(validation)
|
37
|
+
|
38
|
+
raise "\"#{validation}\" is not a registered validation"
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
private
|
43
|
+
|
44
|
+
def validations_uncached
|
45
|
+
VALIDATIONS.map do |key, label|
|
46
|
+
::Avm::Git::Issue::Complete::Validation.new(self, key, label)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,19 @@
|
|
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
|
@@ -0,0 +1,69 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_cli/core_ext'
|
4
|
+
require 'eac_git/local'
|
5
|
+
|
6
|
+
module Avm
|
7
|
+
module Git
|
8
|
+
module Issue
|
9
|
+
class Complete
|
10
|
+
require_sub __FILE__, include_modules: true
|
11
|
+
enable_simple_cache
|
12
|
+
enable_speaker
|
13
|
+
|
14
|
+
attr_reader :scm, :skip_validations
|
15
|
+
|
16
|
+
def initialize(scm, options)
|
17
|
+
@scm = scm
|
18
|
+
consumer = ::EacRubyUtils::OptionsConsumer.new(options)
|
19
|
+
@skip_validations = consumer.consume(:skip_validations)
|
20
|
+
validate_skip_validations
|
21
|
+
consumer.validate
|
22
|
+
end
|
23
|
+
|
24
|
+
# @return [String]
|
25
|
+
def dir
|
26
|
+
scm.path.to_path
|
27
|
+
end
|
28
|
+
|
29
|
+
def start_banner
|
30
|
+
validations_banner
|
31
|
+
end
|
32
|
+
|
33
|
+
def run
|
34
|
+
return false unless valid?
|
35
|
+
|
36
|
+
assert_tag
|
37
|
+
push
|
38
|
+
remove_local_branch
|
39
|
+
true
|
40
|
+
end
|
41
|
+
|
42
|
+
def issue_id
|
43
|
+
branch ? issue_id_parser.parse(branch_name) : nil
|
44
|
+
end
|
45
|
+
|
46
|
+
# @return [EacRubyUtils::RegexpParser]
|
47
|
+
def issue_id_parser
|
48
|
+
/\A#{Regexp.quote('issue_')}(\d+)\z/.to_parser { |m| m[1].to_i }
|
49
|
+
end
|
50
|
+
|
51
|
+
private
|
52
|
+
|
53
|
+
# @return [EacGit::Local]
|
54
|
+
def eac_git_uncached
|
55
|
+
::EacGit::Local.new(dir)
|
56
|
+
end
|
57
|
+
|
58
|
+
def git_execute(args, exit_outputs = {})
|
59
|
+
r = launcher_git.execute!(args, exit_outputs: exit_outputs)
|
60
|
+
r.is_a?(String) ? r.strip : r
|
61
|
+
end
|
62
|
+
|
63
|
+
def launcher_git_uncached
|
64
|
+
::Avm::Git::Launcher::Base.new(dir)
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
@@ -0,0 +1,28 @@
|
|
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
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
|
5
|
+
module Avm
|
6
|
+
module Git
|
7
|
+
module Launcher
|
8
|
+
class Base < ::Avm::Launcher::Paths::Real
|
9
|
+
module DirtyFiles
|
10
|
+
delegate :dirty?, to: :eac_git
|
11
|
+
|
12
|
+
# @return [Array<Struct>]
|
13
|
+
def dirty_files
|
14
|
+
eac_git.dirty_files.map do |df|
|
15
|
+
df.to_h.merge(path: df.path.to_path, absolute_path: df.absolute_path.to_path)
|
16
|
+
.to_struct
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
require 'avm/git/launcher/remote'
|
5
|
+
|
6
|
+
module Avm
|
7
|
+
module Git
|
8
|
+
module Launcher
|
9
|
+
class Base < ::Avm::Launcher::Paths::Real
|
10
|
+
module Remotes
|
11
|
+
# @return [Avm::Git::Launcher::Remote]
|
12
|
+
def remote(name)
|
13
|
+
::Avm::Git::Launcher::Remote.new(self, name)
|
14
|
+
end
|
15
|
+
|
16
|
+
def remote_hashs(remote_name)
|
17
|
+
remote(remote_name).ls
|
18
|
+
end
|
19
|
+
|
20
|
+
def remote_exist?(remote_name)
|
21
|
+
remote(remote_name).exist?
|
22
|
+
end
|
23
|
+
|
24
|
+
def assert_remote_url(remote_name, url)
|
25
|
+
r = git.remote(remote_name)
|
26
|
+
if !r.url || r.url != url
|
27
|
+
r.remove if r.url
|
28
|
+
git.add_remote(remote_name, url)
|
29
|
+
end
|
30
|
+
r
|
31
|
+
end
|
32
|
+
|
33
|
+
def remote_branch_sha(remote_name, branch_name)
|
34
|
+
remote_hashs(remote_name)["refs/heads/#{branch_name}"]
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'active_support/core_ext/object'
|
4
|
+
|
5
|
+
module Avm
|
6
|
+
module Git
|
7
|
+
module Launcher
|
8
|
+
class Base < ::Avm::Launcher::Paths::Real
|
9
|
+
module Subrepo
|
10
|
+
def subrepo_status(subrepo_path)
|
11
|
+
s = execute!('subrepo', 'status', subrepo_path.gsub(%r{\A/}, ''))
|
12
|
+
raise s.strip.to_s if s.include?('is not a subrepo')
|
13
|
+
|
14
|
+
r = subrepo_status_parse_output(s)
|
15
|
+
raise "Empty subrepo status for |#{s}|\n" unless r.any?
|
16
|
+
|
17
|
+
r
|
18
|
+
end
|
19
|
+
|
20
|
+
def subrepo_remote_url(subrepo_path)
|
21
|
+
h = subrepo_status(subrepo_path)
|
22
|
+
url = h['Remote URL']
|
23
|
+
return url if url.present?
|
24
|
+
|
25
|
+
raise "Remote URL is blank for subrepo \"#{subrepo_path}\" (Subrepo status: #{h})"
|
26
|
+
end
|
27
|
+
|
28
|
+
private
|
29
|
+
|
30
|
+
def subrepo_status_parse_output(output)
|
31
|
+
r = {}.with_indifferent_access
|
32
|
+
output.each_line do |l|
|
33
|
+
m = /\A([^\:]+):(.*)\z/.match(l.strip)
|
34
|
+
next unless m && m[2].present?
|
35
|
+
|
36
|
+
r[m[1].strip] = m[2].strip
|
37
|
+
end
|
38
|
+
r
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_git/executables'
|
4
|
+
require 'eac_ruby_utils/envs'
|
5
|
+
require 'git'
|
6
|
+
require 'avm/launcher/paths/real'
|
7
|
+
|
8
|
+
module Avm
|
9
|
+
module Git
|
10
|
+
module Launcher
|
11
|
+
class Base < ::Avm::Launcher::Paths::Real
|
12
|
+
module Underlying
|
13
|
+
def command(*args)
|
14
|
+
args, options = build_args(args)
|
15
|
+
r = ::EacGit::Executables.git.command(*args)
|
16
|
+
(options[:exit_outputs] || {}).each do |status_code, result|
|
17
|
+
r = r.status_result(status_code, result)
|
18
|
+
end
|
19
|
+
r
|
20
|
+
end
|
21
|
+
|
22
|
+
%w[execute execute! system system!].each do |exec_type|
|
23
|
+
define_method exec_type do |*args|
|
24
|
+
command(*args).send(exec_type)
|
25
|
+
rescue ::EacRubyUtils::Envs::ExecutionError
|
26
|
+
raise ::Avm::Git::Launcher::Error
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def init
|
31
|
+
git
|
32
|
+
self
|
33
|
+
end
|
34
|
+
|
35
|
+
private
|
36
|
+
|
37
|
+
def build_args(args)
|
38
|
+
options = {}
|
39
|
+
if args.last.is_a?(Hash)
|
40
|
+
options = args.last
|
41
|
+
args.pop
|
42
|
+
end
|
43
|
+
args = args.first if args.first.is_a?(Array)
|
44
|
+
[['-C', self, '--no-pager'] + args, options]
|
45
|
+
end
|
46
|
+
|
47
|
+
def git_uncached
|
48
|
+
FileUtils.mkdir_p(self)
|
49
|
+
if File.exist?(subpath('.git'))
|
50
|
+
::Git.open(self)
|
51
|
+
else
|
52
|
+
::Git.init(self)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,87 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_git/local'
|
4
|
+
require 'eac_ruby_utils/core_ext'
|
5
|
+
require 'eac_ruby_utils/envs'
|
6
|
+
require 'avm/launcher/paths/real'
|
7
|
+
require 'avm/git/launcher/error'
|
8
|
+
|
9
|
+
module Avm
|
10
|
+
module Git
|
11
|
+
module Launcher
|
12
|
+
class Base < ::Avm::Launcher::Paths::Real
|
13
|
+
require_sub __FILE__
|
14
|
+
enable_simple_cache
|
15
|
+
extend ::Avm::Git::Launcher::Base::ClassMethods
|
16
|
+
include ::Avm::Git::Launcher::Base::DirtyFiles
|
17
|
+
include ::Avm::Git::Launcher::Base::Remotes
|
18
|
+
include ::Avm::Git::Launcher::Base::Subrepo
|
19
|
+
include ::Avm::Git::Launcher::Base::Underlying
|
20
|
+
|
21
|
+
attr_reader :eac_git
|
22
|
+
|
23
|
+
delegate :descendant?, :merge_base, :rev_parse, to: :eac_git
|
24
|
+
|
25
|
+
def initialize(path)
|
26
|
+
super
|
27
|
+
|
28
|
+
@eac_git = ::EacGit::Local.new(path)
|
29
|
+
end
|
30
|
+
|
31
|
+
def init_bare
|
32
|
+
FileUtils.mkdir_p(self)
|
33
|
+
::EacRubyUtils::Envs.local.command('git', 'init', '--bare', self).execute! unless
|
34
|
+
File.exist?(subpath('.git'))
|
35
|
+
end
|
36
|
+
|
37
|
+
# @return [Pathname]
|
38
|
+
def root_path
|
39
|
+
@root_path ||= self.class.find_root(to_s)
|
40
|
+
end
|
41
|
+
|
42
|
+
def descendant?(descendant, ancestor)
|
43
|
+
base = merge_base(descendant, ancestor)
|
44
|
+
return false if base.blank?
|
45
|
+
|
46
|
+
revparse = execute!('rev-parse', '--verify', ancestor).strip
|
47
|
+
base == revparse
|
48
|
+
end
|
49
|
+
|
50
|
+
def subtree_split(prefix)
|
51
|
+
execute!('subtree', '-q', 'split', '-P', prefix).strip
|
52
|
+
end
|
53
|
+
|
54
|
+
def push(remote_name, refspecs, options = {})
|
55
|
+
refspecs = [refspecs] unless refspecs.is_a?(Array)
|
56
|
+
args = ['push']
|
57
|
+
args << '--dry-run' if options[:dryrun]
|
58
|
+
args << '--force' if options[:force]
|
59
|
+
system!(args + [remote_name] + refspecs)
|
60
|
+
end
|
61
|
+
|
62
|
+
def push_all(remote_name)
|
63
|
+
system!('push', '--all', remote_name)
|
64
|
+
system!('push', '--tags', remote_name)
|
65
|
+
end
|
66
|
+
|
67
|
+
def fetch(remote_name, options = {})
|
68
|
+
args = ['fetch', '-p', remote_name]
|
69
|
+
args += %w[--tags --prune-tags --force] if options[:tags]
|
70
|
+
execute!(*args)
|
71
|
+
end
|
72
|
+
|
73
|
+
def current_branch
|
74
|
+
execute!(%w[symbolic-ref -q HEAD]).gsub(%r{\Arefs/heads/}, '').strip
|
75
|
+
end
|
76
|
+
|
77
|
+
def reset_hard(ref)
|
78
|
+
execute!('reset', '--hard', ref)
|
79
|
+
end
|
80
|
+
|
81
|
+
def raise(message)
|
82
|
+
::Kernel.raise Avm::Git::Launcher::Error.new(self, message)
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'avm/launcher/errors/base'
|
4
|
+
|
5
|
+
module Avm
|
6
|
+
module Git
|
7
|
+
module Launcher
|
8
|
+
class Error < ::Avm::Launcher::Errors::Base
|
9
|
+
def initialize(git_instance, message)
|
10
|
+
super("#{message} (Repository: #{git_instance})")
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'avm/git/launcher/base'
|
4
|
+
|
5
|
+
module Avm
|
6
|
+
module Git
|
7
|
+
module Launcher
|
8
|
+
class MirrorUpdate < ::Avm::Launcher::Paths::Real
|
9
|
+
include ::EacRubyUtils::SimpleCache
|
10
|
+
|
11
|
+
def initialize(target_path, source_path, source_rev)
|
12
|
+
super(target_path)
|
13
|
+
@target_git = ::Avm::Git::Launcher::Base.new(self)
|
14
|
+
@source_git = ::Avm::Git::Launcher::Base.new(source_path)
|
15
|
+
@source_rev = source_rev
|
16
|
+
run
|
17
|
+
end
|
18
|
+
|
19
|
+
private
|
20
|
+
|
21
|
+
def run
|
22
|
+
fetch_remote_source
|
23
|
+
reset_source_rev
|
24
|
+
end
|
25
|
+
|
26
|
+
def fetch_remote_source
|
27
|
+
@target_git.git
|
28
|
+
@target_git.assert_remote_url('origin', @source_git)
|
29
|
+
@target_git.fetch('origin', tags: true)
|
30
|
+
end
|
31
|
+
|
32
|
+
def reset_source_rev
|
33
|
+
@target_git.reset_hard(@source_git.rev_parse(@source_rev, true))
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,131 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/simple_cache'
|
4
|
+
require 'avm/launcher/publish/base'
|
5
|
+
require 'avm/launcher/publish/check_result'
|
6
|
+
|
7
|
+
module Avm
|
8
|
+
module Git
|
9
|
+
module Launcher
|
10
|
+
class PublishBase < ::Avm::Launcher::Publish::Base
|
11
|
+
include ::EacRubyUtils::SimpleCache
|
12
|
+
enable_speaker
|
13
|
+
|
14
|
+
CHECKERS = %w[remote_url remote_fetch publish_remote_no_exist remote_equal remote_following
|
15
|
+
local_following].freeze
|
16
|
+
|
17
|
+
DEFAULT_REMOTE_REF = 'master'
|
18
|
+
|
19
|
+
REMOTE_UNAVAILABLE_MESSAGES = ['could not resolve host', 'connection timed out',
|
20
|
+
'no route to host'].map(&:downcase).freeze
|
21
|
+
|
22
|
+
protected
|
23
|
+
|
24
|
+
def internal_check
|
25
|
+
CHECKERS.each do |checker|
|
26
|
+
result = send("#{checker}_check_result")
|
27
|
+
return result if result
|
28
|
+
end
|
29
|
+
divergent_result_check_result
|
30
|
+
rescue ::Avm::Launcher::Instances::Error => e
|
31
|
+
::Avm::Launcher::Publish::CheckResult.blocked(e.message)
|
32
|
+
rescue ::StandardError => e
|
33
|
+
raise e unless remote_unavailable_error?(e)
|
34
|
+
|
35
|
+
::Avm::Launcher::Publish::CheckResult.blocked(e.message)
|
36
|
+
end
|
37
|
+
|
38
|
+
private
|
39
|
+
|
40
|
+
def remote_url_check_result
|
41
|
+
remote = sgit.remote(remote_name)
|
42
|
+
return if remote.exist? && remote.url.present?
|
43
|
+
|
44
|
+
::Avm::Launcher::Publish::CheckResult.blocked("Remote \"#{remote_name}\" has blank path")
|
45
|
+
end
|
46
|
+
|
47
|
+
def remote_fetch_check_result
|
48
|
+
remote_fetch
|
49
|
+
nil
|
50
|
+
end
|
51
|
+
|
52
|
+
def remote_unavailable_error?(error)
|
53
|
+
error_message = error.message.downcase
|
54
|
+
REMOTE_UNAVAILABLE_MESSAGES.any? do |message|
|
55
|
+
error_message.include?(message)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
def publish_remote_no_exist_check_result
|
60
|
+
return nil if sgit.remote_exist?(remote_name)
|
61
|
+
|
62
|
+
::Avm::Launcher::Publish::CheckResult.blocked('Remote does not exist')
|
63
|
+
end
|
64
|
+
|
65
|
+
def remote_equal_check_result
|
66
|
+
return nil unless remote_sha.present? && remote_sha == local_sha
|
67
|
+
|
68
|
+
::Avm::Launcher::Publish::CheckResult.updated('Remote equal')
|
69
|
+
end
|
70
|
+
|
71
|
+
def remote_following_check_result
|
72
|
+
return nil unless remote_sha.present? && sgit.descendant?(remote_sha, local_sha)
|
73
|
+
|
74
|
+
::Avm::Launcher::Publish::CheckResult.outdated('Remote following')
|
75
|
+
end
|
76
|
+
|
77
|
+
def divergent_result_check_result
|
78
|
+
::Avm::Launcher::Publish::CheckResult.blocked(
|
79
|
+
"Divergent (L: #{local_sha}, R: #{remote_sha})"
|
80
|
+
)
|
81
|
+
end
|
82
|
+
|
83
|
+
def local_following?
|
84
|
+
return true if remote_sha.blank?
|
85
|
+
|
86
|
+
sgit.descendant?(local_sha, remote_sha)
|
87
|
+
end
|
88
|
+
|
89
|
+
def local_following_check_result
|
90
|
+
return nil unless local_following?
|
91
|
+
|
92
|
+
::Avm::Launcher::Publish::CheckResult.pending('Local following')
|
93
|
+
end
|
94
|
+
|
95
|
+
def sgit_uncached
|
96
|
+
::Avm::Git::Launcher::Base.new(instance.warped)
|
97
|
+
end
|
98
|
+
|
99
|
+
def publish
|
100
|
+
info 'Pushing...'
|
101
|
+
sgit.push(remote_name, 'HEAD:master',
|
102
|
+
dryrun: !::Avm::Launcher::Context.current.publish_options[:confirm])
|
103
|
+
info 'Pushed!'
|
104
|
+
end
|
105
|
+
|
106
|
+
def local_sha
|
107
|
+
sgit.git.object('HEAD').sha
|
108
|
+
end
|
109
|
+
|
110
|
+
def remote_sha_uncached
|
111
|
+
remote_fetch
|
112
|
+
b = sgit.git.branches["#{remote_name}/#{remote_ref}"]
|
113
|
+
b&.gcommit&.sha
|
114
|
+
end
|
115
|
+
|
116
|
+
def remote_fetch_uncached
|
117
|
+
sgit.fetch(remote_name)
|
118
|
+
end
|
119
|
+
|
120
|
+
def remote_name
|
121
|
+
::Avm::Git::Launcher::WarpBase::TARGET_REMOTE
|
122
|
+
end
|
123
|
+
|
124
|
+
# @return [String]
|
125
|
+
def remote_ref
|
126
|
+
DEFAULT_REMOTE_REF
|
127
|
+
end
|
128
|
+
end
|
129
|
+
end
|
130
|
+
end
|
131
|
+
end
|