eac_tools 0.109.0 → 0.110.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 +45 -30
- data/lib/eac_tools/version.rb +1 -1
- data/sub/{avm-git/avm-git.gemspec → avm-eac_postgresql_base0/avm-eac_postgresql_base0.gemspec} +4 -9
- data/sub/avm-eac_postgresql_base0/lib/avm/eac_postgresql_base0/instance/assert.rb +75 -0
- data/sub/avm-eac_postgresql_base0/lib/avm/eac_postgresql_base0/instance/commands.rb +70 -0
- data/sub/avm-eac_postgresql_base0/lib/avm/eac_postgresql_base0/instance/data_unit.rb +63 -0
- data/sub/avm-eac_postgresql_base0/lib/avm/eac_postgresql_base0/instance.rb +46 -0
- data/sub/avm-eac_postgresql_base0/lib/avm/eac_postgresql_base0/instance_with.rb +22 -0
- data/sub/avm-eac_postgresql_base0/lib/avm/eac_postgresql_base0/version.rb +7 -0
- data/sub/{avm-git/lib/avm/git.rb → avm-eac_postgresql_base0/lib/avm/eac_postgresql_base0.rb} +3 -7
- data/sub/avm-eac_postgresql_base0/spec/spec_helper.rb +5 -0
- data/sub/avm-eac_rails_base0/Gemfile +8 -0
- data/sub/avm-eac_rails_base0/avm-eac_rails_base0.gemspec +20 -0
- data/sub/avm-eac_rails_base0/lib/avm/eac_rails_base0/instances/apache_host.rb +10 -0
- data/sub/avm-eac_rails_base0/lib/avm/eac_rails_base0/instances/apache_path.rb +10 -0
- data/sub/avm-eac_rails_base0/lib/avm/eac_rails_base0/instances/base.rb +21 -0
- data/sub/avm-eac_rails_base0/lib/avm/eac_rails_base0/instances/deploy.rb +51 -0
- data/sub/avm-eac_rails_base0/lib/avm/eac_rails_base0/source_generators/base.rb +10 -0
- data/sub/avm-eac_rails_base0/lib/avm/eac_rails_base0/sources/base.rb +37 -0
- data/sub/{avm-git/lib/avm/git → avm-eac_rails_base0/lib/avm/eac_rails_base0}/version.rb +2 -2
- data/sub/avm-eac_rails_base0/lib/avm/eac_rails_base0.rb +11 -0
- data/sub/avm-eac_rails_base0/spec/lib/avm/eac_rails_base0/instances/apache_host_spec.rb +19 -0
- data/sub/avm-eac_rails_base0/spec/lib/avm/eac_rails_base0/instances/apache_host_spec_files/apache_host_spec_no_ssl_content.conf +11 -0
- data/sub/avm-eac_rails_base0/spec/lib/avm/eac_rails_base0/instances/apache_path_spec.rb +20 -0
- data/sub/avm-eac_rails_base0/spec/lib/avm/eac_rails_base0/instances/apache_path_spec_files/stub-app_0_apache_path.conf +12 -0
- data/sub/avm-eac_rails_base0/spec/meta/rubocop_spec.rb +3 -0
- data/sub/avm-eac_rails_base0/spec/spec_helper.rb +6 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/instances/deploy/config/database.yml.template +21 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/instances/deploy/config/envvars.d/email.yml.template +11 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/Gemfile +11 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/Rakefile +8 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/app/assets/config/manifest.js +3 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/app/assets/javascripts/application.js +1 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/app/assets/stylesheets/application.scss +1 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/app/controllers/application_controller.rb +4 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/app/controllers/welcome_controller.rb +5 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/app/views/welcome/index.html.erb +1 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/bin/bundle +5 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/bin/rails +11 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/bin/rake +11 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/bin/yarn +11 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/config/application.rb +11 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/config/boot.rb +5 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/config/cable.yml +8 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/config/credentials.yml.enc +1 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/config/environment.rb +7 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/config/puma.rb +39 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/config/routes.rb +5 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/config/spring.rb +8 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/config.ru +7 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/db/schema.rb +1 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/lib/ability.rb +20 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/lib/ability_mapping.rb +10 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/public/favicon.ico +0 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/spec/code/rubocop_spec.rb +3 -0
- data/sub/avm-eac_rails_base0/template/avm/eac_rails_base0/source_generators/base/spec/spec_helper.rb +8 -0
- data/sub/avm-eac_rails_base1/Gemfile +8 -0
- data/sub/avm-eac_rails_base1/avm-eac_rails_base1.gemspec +22 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/apache_base.rb +14 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/apache_host.rb +15 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/apache_path.rb +17 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/base.rb +42 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/deploy.rb +20 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/processes/daemon.rb +36 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/processes/tasks_scheduler.rb +24 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/runners/bundle.rb +26 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/runners/code_runner.rb +25 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/runners/log.rb +43 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/runners/logs/clear.rb +25 -0
- data/sub/{avm-git/lib/avm/git/runners/base/subrepo.rb → avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/runners/logs.rb} +5 -5
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/runners/rails_server.rb +31 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/runners/tasks_scheduler/systemd_unit.rb +45 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/runners/tasks_scheduler.rb +15 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/systemd_unit/service.rb +70 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/systemd_unit/tasks_scheduler_command.rb +29 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/instances/systemd_unit.rb +56 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/runner_with/bundle.rb +23 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/runner_with/rails_environment.rb +42 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/sources/base.rb +40 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1/version.rb +7 -0
- data/sub/avm-eac_rails_base1/lib/avm/eac_rails_base1.rb +12 -0
- data/sub/avm-eac_rails_base1/spec/meta/rubocop_spec.rb +3 -0
- data/sub/avm-eac_rails_base1/spec/spec_helper.rb +6 -0
- data/sub/avm-eac_rails_base1/template/avm/eac_rails_base1/instances/apache_path/extra_content.conf +5 -0
- data/sub/avm-eac_rails_base1/template/avm/eac_rails_base1/instances/systemd_unit/tasks_scheduler.service +12 -0
- data/sub/avm-eac_rails_base1/template/avm/eac_rails_base1/instances/systemd_unit/tasks_scheduler_command.sh +6 -0
- data/sub/avm-eac_webapp_base0/Gemfile +8 -0
- data/sub/avm-eac_webapp_base0/avm-eac_webapp_base0.gemspec +24 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/executables.rb +23 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/file_formats/css/file_apply.rb +44 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/file_formats/css.rb +17 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/file_formats/html.rb +42 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/file_formats/javascript.rb +19 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/file_formats/json.rb +23 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/file_formats/provider.rb +17 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/file_formats/xml.rb +23 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/apache_base.rb +28 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/apache_host.rb +72 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/apache_path.rb +37 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/base/apache.rb +42 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/base/deploy.rb +28 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/base/deploy_info.rb +27 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/base/install.rb +19 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/base.rb +37 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/deploy/appended_directories.rb +25 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/deploy/build.rb +45 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/deploy/info.rb +44 -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 +18 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/deploy.rb +72 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/deploy_info.rb +35 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/processes/web_server.rb +34 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/runners/apache_host.rb +34 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/runners/apache_path.rb +38 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/runners/data/load.rb +57 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/runners/deploy.rb +47 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/instances/runners/deploy_info.rb +24 -0
- data/sub/avm-eac_webapp_base0/lib/avm/eac_webapp_base0/sources/base.rb +13 -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 +14 -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/meta/rubocop_spec.rb +3 -0
- data/sub/{avm-git → avm-eac_webapp_base0}/spec/spec_helper.rb +1 -1
- 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
- metadata +154 -130
- 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/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 -80
- 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 -128
- 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 -21
- 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 -31
- data/sub/avm-git/lib/avm/git/launcher_stereotypes/provider.rb +0 -16
- 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 -98
- 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.rb +0 -39
- 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 -38
- 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 -28
- 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/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/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 -11
- 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 -54
- data/sub/avm-git/spec/lib/avm/git/launcher/base_spec.rb +0 -43
- data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/publish_spec.rb +0 -80
- 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 -51
- 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 -124
- 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 -89
- data/sub/avm-git/spec/lib/avm/git/scms/git_spec.rb +0 -5
- data/sub/avm-git/spec/lib/avm/git/scms/git_subrepo_spec.rb +0 -5
- data/sub/avm-git/spec/lib/avm/git/vendor/github_spec.rb +0 -21
- /data/sub/{avm-git → avm-eac_postgresql_base0}/Gemfile +0 -0
- /data/sub/{avm-git → avm-eac_postgresql_base0}/spec/meta/rubocop_spec.rb +0 -0
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Avm
|
|
4
|
-
module Git
|
|
5
|
-
module Runners
|
|
6
|
-
class Base
|
|
7
|
-
class Subrepo
|
|
8
|
-
class Fix
|
|
9
|
-
runner_with :help do
|
|
10
|
-
desc 'Fix git-subrepos\' parent property.'
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
def run
|
|
14
|
-
loop do
|
|
15
|
-
break if fix
|
|
16
|
-
|
|
17
|
-
amend_each
|
|
18
|
-
rebase_fixup
|
|
19
|
-
end
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
private
|
|
23
|
-
|
|
24
|
-
def amend_each
|
|
25
|
-
infov 'Dirty files', local_repos.dirty_files.count
|
|
26
|
-
local_repos.dirty_files.each do |file|
|
|
27
|
-
infov ' * Ammending', file.path
|
|
28
|
-
::Avm::Scms::AutoCommit::ForFile.new(
|
|
29
|
-
git_scm, file.path,
|
|
30
|
-
[::Avm::Scms::AutoCommit::Rules::Unique.new]
|
|
31
|
-
).run
|
|
32
|
-
end
|
|
33
|
-
end
|
|
34
|
-
|
|
35
|
-
def fix # rubocop:disable Naming/PredicateMethod
|
|
36
|
-
infom 'Checking/fixing...'
|
|
37
|
-
c = new_check(true)
|
|
38
|
-
c.show_result
|
|
39
|
-
!c.result.error?
|
|
40
|
-
end
|
|
41
|
-
|
|
42
|
-
# @return [Avm::Git::Scms::Git]
|
|
43
|
-
def git_scm_uncached
|
|
44
|
-
::Avm::Git::Scms::Git.new(runner_context.call(:git).root_path)
|
|
45
|
-
end
|
|
46
|
-
|
|
47
|
-
def new_check(fix_parent = false) # rubocop:disable Style/OptionalBooleanParameter
|
|
48
|
-
r = ::Avm::Git::SubrepoChecks.new(local_repos).add_all_subrepos
|
|
49
|
-
r.fix_parent = fix_parent
|
|
50
|
-
r
|
|
51
|
-
end
|
|
52
|
-
|
|
53
|
-
def local_repos_uncached
|
|
54
|
-
::EacGit::Local.new(runner_context.call(:git))
|
|
55
|
-
end
|
|
56
|
-
|
|
57
|
-
def rebase_fixup
|
|
58
|
-
local_repos.command('rebase', '-i', 'origin/master', '--autosquash').envvar(
|
|
59
|
-
'GIT_SEQUENCE_EDITOR', 'true'
|
|
60
|
-
).or(
|
|
61
|
-
local_repos.command('rebase', '--continue').envvar('GIT_SEQUENCE_EDITOR', 'true')
|
|
62
|
-
).system!
|
|
63
|
-
end
|
|
64
|
-
end
|
|
65
|
-
end
|
|
66
|
-
end
|
|
67
|
-
end
|
|
68
|
-
end
|
|
69
|
-
end
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Avm
|
|
4
|
-
module Git
|
|
5
|
-
module Runners
|
|
6
|
-
class Base
|
|
7
|
-
runner_with :help, :subcommands do
|
|
8
|
-
desc 'Git utilities for AVM.'
|
|
9
|
-
arg_opt '-C', '--path', 'Path to Git repository.'
|
|
10
|
-
subcommands
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
COMMAND_ARGUMENT = 'git'
|
|
14
|
-
|
|
15
|
-
# @return [String]
|
|
16
|
-
def self.command_argument
|
|
17
|
-
COMMAND_ARGUMENT
|
|
18
|
-
end
|
|
19
|
-
|
|
20
|
-
def repository_path
|
|
21
|
-
repository_path? ? parsed.path : '.'
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
def repository_path?
|
|
25
|
-
parsed.path.present?
|
|
26
|
-
end
|
|
27
|
-
|
|
28
|
-
def git
|
|
29
|
-
@git ||= ::Avm::Git::Launcher::Base.by_root(repository_path)
|
|
30
|
-
end
|
|
31
|
-
|
|
32
|
-
# @return [[EacGit::Local]]
|
|
33
|
-
def git_repo
|
|
34
|
-
git.eac_git
|
|
35
|
-
end
|
|
36
|
-
end
|
|
37
|
-
end
|
|
38
|
-
end
|
|
39
|
-
end
|
|
@@ -1,28 +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 Branch < ::Avm::Scms::Branch
|
|
8
|
-
common_constructor :scm, :eac_git_branch
|
|
9
|
-
|
|
10
|
-
# @return [Avm::Git::Scms::Git::Commit]
|
|
11
|
-
def head_commit
|
|
12
|
-
::Avm::Git::Scms::Git::Commit.new(scm, eac_git_branch.head_commit)
|
|
13
|
-
end
|
|
14
|
-
|
|
15
|
-
# @return [String]
|
|
16
|
-
def id
|
|
17
|
-
eac_git_branch.name
|
|
18
|
-
end
|
|
19
|
-
|
|
20
|
-
# @param remote [Avm::Git::Scms::Git::Remote]
|
|
21
|
-
def push(remote)
|
|
22
|
-
eac_git_branch.push(remote.eac_git_remote, force: true)
|
|
23
|
-
end
|
|
24
|
-
end
|
|
25
|
-
end
|
|
26
|
-
end
|
|
27
|
-
end
|
|
28
|
-
end
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Avm
|
|
4
|
-
module Git
|
|
5
|
-
module Scms
|
|
6
|
-
class Git < ::Avm::Scms::Base
|
|
7
|
-
module Branches
|
|
8
|
-
# @return [Avm::Git::Scms::Git::Branch]
|
|
9
|
-
def head_branch
|
|
10
|
-
::Avm::Git::Scms::Git::Branch.new(self,
|
|
11
|
-
git_repo.current_branch)
|
|
12
|
-
end
|
|
13
|
-
end
|
|
14
|
-
end
|
|
15
|
-
end
|
|
16
|
-
end
|
|
17
|
-
end
|
|
@@ -1,34 +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 ChangeTracker
|
|
8
|
-
common_constructor :git_scm, :commit_info
|
|
9
|
-
attr_reader :starting_commit
|
|
10
|
-
|
|
11
|
-
delegate :git_repo, to: :git_scm
|
|
12
|
-
|
|
13
|
-
def start
|
|
14
|
-
raise 'Repository is dirty' if git_repo.dirty?
|
|
15
|
-
|
|
16
|
-
self.starting_commit = git_repo.head
|
|
17
|
-
end
|
|
18
|
-
|
|
19
|
-
# @return [Avm::Git::Scms::Git::Commit, nil]
|
|
20
|
-
def stop
|
|
21
|
-
git_scm.commit_dirty
|
|
22
|
-
return nil if starting_commit == git_repo.head
|
|
23
|
-
|
|
24
|
-
git_scm.reset_and_commit(starting_commit, commit_info)
|
|
25
|
-
end
|
|
26
|
-
|
|
27
|
-
private
|
|
28
|
-
|
|
29
|
-
attr_writer :starting_commit
|
|
30
|
-
end
|
|
31
|
-
end
|
|
32
|
-
end
|
|
33
|
-
end
|
|
34
|
-
end
|
|
@@ -1,25 +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 ChangedFile < ::Avm::Scms::ChangedFile
|
|
8
|
-
common_constructor :scm, :sub_changed_file
|
|
9
|
-
|
|
10
|
-
# @return [Pathname]
|
|
11
|
-
delegate :path, to: :sub_changed_file
|
|
12
|
-
|
|
13
|
-
# @return [Symbol]
|
|
14
|
-
def action
|
|
15
|
-
return ACTION_ADD if sub_changed_file.add?
|
|
16
|
-
return ACTION_DELETE if sub_changed_file.delete?
|
|
17
|
-
return ACTION_MODIFY if sub_changed_file.modify?
|
|
18
|
-
|
|
19
|
-
nyi sub_changed_file
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
24
|
-
end
|
|
25
|
-
end
|
|
@@ -1,21 +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 ChangedFiles
|
|
8
|
-
enable_method_class
|
|
9
|
-
common_constructor :scm
|
|
10
|
-
|
|
11
|
-
# @return [Avm::Git::Scms::Git::ChangedFile]
|
|
12
|
-
def result
|
|
13
|
-
scm.git_repo.dirty_files.map do |dirty_file|
|
|
14
|
-
::Avm::Git::Scms::Git::ChangedFile.new(scm, dirty_file)
|
|
15
|
-
end
|
|
16
|
-
end
|
|
17
|
-
end
|
|
18
|
-
end
|
|
19
|
-
end
|
|
20
|
-
end
|
|
21
|
-
end
|
|
@@ -1,38 +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 Commit < ::Avm::Scms::Commit
|
|
8
|
-
class Deploy
|
|
9
|
-
include ::Avm::Files::Appendable
|
|
10
|
-
|
|
11
|
-
enable_simple_cache
|
|
12
|
-
|
|
13
|
-
attr_reader :build_dir, :commit, :target_env, :target_path
|
|
14
|
-
|
|
15
|
-
def initialize(commit, target_env, target_path)
|
|
16
|
-
@commit = commit
|
|
17
|
-
@target_env = target_env
|
|
18
|
-
@target_path = target_path
|
|
19
|
-
end
|
|
20
|
-
|
|
21
|
-
def run
|
|
22
|
-
fd = ::Avm::Files::Deploy.new(target_env, target_path)
|
|
23
|
-
fd.append_tar_output_command(git_archive_command)
|
|
24
|
-
fd.appended.push(*appended)
|
|
25
|
-
fd.run
|
|
26
|
-
end
|
|
27
|
-
|
|
28
|
-
private
|
|
29
|
-
|
|
30
|
-
def git_archive_command
|
|
31
|
-
commit.git_repo.command('archive', '--format=tar', commit.id)
|
|
32
|
-
end
|
|
33
|
-
end
|
|
34
|
-
end
|
|
35
|
-
end
|
|
36
|
-
end
|
|
37
|
-
end
|
|
38
|
-
end
|
|
@@ -1,24 +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 Commit < ::Avm::Scms::Commit
|
|
8
|
-
module DeployMethods
|
|
9
|
-
def deploy_to_env_path(target_env, target_path)
|
|
10
|
-
::Avm::Git::Scms::Git::Commit::Deploy.new(self, target_env, target_path)
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
def deploy_to_url(target_url)
|
|
14
|
-
::Avm::Git::Scms::Git::Commit::Deploy.new(
|
|
15
|
-
self,
|
|
16
|
-
*::Avm::Git::Commit.target_url_to_env_path(target_url)
|
|
17
|
-
)
|
|
18
|
-
end
|
|
19
|
-
end
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|
|
23
|
-
end
|
|
24
|
-
end
|
|
@@ -1,64 +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 Commit < ::Avm::Scms::Commit
|
|
8
|
-
require_sub __FILE__, include_modules: true
|
|
9
|
-
common_constructor :git_scm, :git_commit do
|
|
10
|
-
git_commit.assert_argument(::EacGit::Local::Commit, 'git_commit')
|
|
11
|
-
end
|
|
12
|
-
delegate :git_repo, to: :git_scm
|
|
13
|
-
delegate :id, to: :git_commit
|
|
14
|
-
|
|
15
|
-
FIXUP_SUBJECT_PATTERN = /\Afixup!/.freeze
|
|
16
|
-
|
|
17
|
-
# @return [Array<Pathname>]
|
|
18
|
-
def changed_files
|
|
19
|
-
git_commit.changed_files.map { |cf| cf.path.to_pathname }
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
# @return [Boolean]
|
|
23
|
-
def fixup?
|
|
24
|
-
FIXUP_SUBJECT_PATTERN.match?(git_commit.subject)
|
|
25
|
-
end
|
|
26
|
-
|
|
27
|
-
# @param other [Avm::Git::Scms::Git::Commit]
|
|
28
|
-
# @return [Avm::Git::Scms::Git::Commit]
|
|
29
|
-
def merge_with(other)
|
|
30
|
-
validate_clean_and_head
|
|
31
|
-
raise 'Implemented for only if other is parent' unless
|
|
32
|
-
other.git_commit == git_commit.parent
|
|
33
|
-
|
|
34
|
-
git_scm.reset_and_commit(other.git_commit.parent, other.git_commit.raw_body)
|
|
35
|
-
end
|
|
36
|
-
|
|
37
|
-
def reword(new_message)
|
|
38
|
-
validate_clean_and_head
|
|
39
|
-
|
|
40
|
-
git_repo.command('commit', '--amend', '-m', new_message).execute!
|
|
41
|
-
self.class.new(git_scm, git_repo.head)
|
|
42
|
-
end
|
|
43
|
-
|
|
44
|
-
# @param path [Pathname]
|
|
45
|
-
# @return [TrueClass,FalseClass]
|
|
46
|
-
def scm_file?(path)
|
|
47
|
-
%w[.gitrepo .gitmodules].any? { |file| file.include?(path.basename.to_path) }
|
|
48
|
-
end
|
|
49
|
-
|
|
50
|
-
# @return [String]
|
|
51
|
-
delegate :subject, to: :git_commit
|
|
52
|
-
|
|
53
|
-
private
|
|
54
|
-
|
|
55
|
-
def validate_clean_and_head
|
|
56
|
-
raise 'Implemented for only if repository is no dirty' if git_repo.dirty?
|
|
57
|
-
raise 'Implemented for only if self is HEAD' unless
|
|
58
|
-
git_commit == git_repo.head
|
|
59
|
-
end
|
|
60
|
-
end
|
|
61
|
-
end
|
|
62
|
-
end
|
|
63
|
-
end
|
|
64
|
-
end
|
|
@@ -1,32 +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 CommitDirty
|
|
8
|
-
enable_method_class
|
|
9
|
-
# @param commit_info [Avm::Scms::CommitInfo, nil]
|
|
10
|
-
common_constructor :scm, :commit_info, default: [nil]
|
|
11
|
-
delegate :git_repo, :head_commit, :run_commit, to: :scm
|
|
12
|
-
|
|
13
|
-
# @return [Avm::Git::Scms::Git::Commit,nil]
|
|
14
|
-
def result
|
|
15
|
-
return nil unless git_repo.dirty?
|
|
16
|
-
|
|
17
|
-
run_commit(asserted_commit_info)
|
|
18
|
-
head_commit
|
|
19
|
-
end
|
|
20
|
-
|
|
21
|
-
private
|
|
22
|
-
|
|
23
|
-
def asserted_commit_info
|
|
24
|
-
r = ::Avm::Scms::CommitInfo.assert(commit_info)
|
|
25
|
-
r = r.message(COMMIT_DIRTY_DEFAULT_MESSAGE) if r.message.blank?
|
|
26
|
-
git_repo.dirty_files.inject(r) { |a, e| a.path(e.absolute_path) }
|
|
27
|
-
end
|
|
28
|
-
end
|
|
29
|
-
end
|
|
30
|
-
end
|
|
31
|
-
end
|
|
32
|
-
end
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Avm
|
|
4
|
-
module Git
|
|
5
|
-
module Scms
|
|
6
|
-
class Git < ::Avm::Scms::Base
|
|
7
|
-
module Commits
|
|
8
|
-
# @return [Avm::Git::Scms::Git::Commit,nil]
|
|
9
|
-
def commit(source)
|
|
10
|
-
if source.is_a?(::Avm::Git::Scms::Git::Commit)
|
|
11
|
-
return source if source.git_repo == git_repo
|
|
12
|
-
|
|
13
|
-
raise 'Not same Git repository'
|
|
14
|
-
end
|
|
15
|
-
git_repo.commitize(source).if_present do |v|
|
|
16
|
-
::Avm::Git::Scms::Git::Commit.new(self, v)
|
|
17
|
-
end
|
|
18
|
-
end
|
|
19
|
-
|
|
20
|
-
# @param commit_info [Avm::Scms::CommitInfo]
|
|
21
|
-
# @return [Avm::Git::Scms::Git::Commit,nil]
|
|
22
|
-
def commit_if_change(commit_info = nil)
|
|
23
|
-
tracker = ::Avm::Git::Scms::Git::ChangeTracker.new(self, commit_info)
|
|
24
|
-
tracker.start
|
|
25
|
-
yield
|
|
26
|
-
tracker.stop
|
|
27
|
-
end
|
|
28
|
-
|
|
29
|
-
# @return [Avm::Git::Scms::Git::Commit]
|
|
30
|
-
def head_commit
|
|
31
|
-
commit(git_repo.head)
|
|
32
|
-
end
|
|
33
|
-
|
|
34
|
-
# @param commit_info [Avm::Scms::CommitInfo]
|
|
35
|
-
# @return [Avm::Git::Scms::Git::Commit]
|
|
36
|
-
def reset_and_commit(commit_to_reset, commit_info)
|
|
37
|
-
git_repo.command('reset', '--soft', commit(commit_to_reset).git_commit.id).execute!
|
|
38
|
-
commit_dirty(commit_info)
|
|
39
|
-
end
|
|
40
|
-
end
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
end
|
|
@@ -1,28 +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 Interval < ::Avm::Scms::Interval
|
|
8
|
-
def initialize(scm, from, to)
|
|
9
|
-
super
|
|
10
|
-
self.from = scm.commit(from)
|
|
11
|
-
self.to = scm.commit(to)
|
|
12
|
-
end
|
|
13
|
-
|
|
14
|
-
# @return [Array<Avm::Git::Scms::Git::Commit>]
|
|
15
|
-
def commits
|
|
16
|
-
scm.git_repo.command('log', '--pretty=format:%H', git_commit_interval).execute!
|
|
17
|
-
.each_line.map { |sha1| scm.commit(sha1.strip) }
|
|
18
|
-
end
|
|
19
|
-
|
|
20
|
-
# @return [String]
|
|
21
|
-
def git_commit_interval
|
|
22
|
-
[from.id, to.id].join('..')
|
|
23
|
-
end
|
|
24
|
-
end
|
|
25
|
-
end
|
|
26
|
-
end
|
|
27
|
-
end
|
|
28
|
-
end
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Avm
|
|
4
|
-
module Git
|
|
5
|
-
module Scms
|
|
6
|
-
class Git < ::Avm::Scms::Base
|
|
7
|
-
module Milestones
|
|
8
|
-
BASE_COMMIT_REFERENCE = 'origin/master'
|
|
9
|
-
|
|
10
|
-
# @return [Avm::Git::Scms::Git::Commit]
|
|
11
|
-
def current_milestone_base_commit
|
|
12
|
-
commit(BASE_COMMIT_REFERENCE)
|
|
13
|
-
end
|
|
14
|
-
end
|
|
15
|
-
end
|
|
16
|
-
end
|
|
17
|
-
end
|
|
18
|
-
end
|
|
@@ -1,18 +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 Remote < ::Avm::Scms::Remote
|
|
8
|
-
common_constructor :scm, :eac_git_remote
|
|
9
|
-
|
|
10
|
-
# @return [String]
|
|
11
|
-
def id
|
|
12
|
-
nyi eac_git_remote
|
|
13
|
-
end
|
|
14
|
-
end
|
|
15
|
-
end
|
|
16
|
-
end
|
|
17
|
-
end
|
|
18
|
-
end
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Avm
|
|
4
|
-
module Git
|
|
5
|
-
module Scms
|
|
6
|
-
class Git < ::Avm::Scms::Base
|
|
7
|
-
module Remotes
|
|
8
|
-
DEFAULT_REMOTE_ID = 'origin'
|
|
9
|
-
|
|
10
|
-
# @return [Avm::Git::Scms::Git::Remote]
|
|
11
|
-
def default_remote
|
|
12
|
-
remote(default_remote_id)
|
|
13
|
-
end
|
|
14
|
-
|
|
15
|
-
# @return [String]
|
|
16
|
-
def default_remote_id
|
|
17
|
-
DEFAULT_REMOTE_ID
|
|
18
|
-
end
|
|
19
|
-
|
|
20
|
-
# @param id [String]
|
|
21
|
-
# @return [Avm::Git::Scms::Git::Remote]
|
|
22
|
-
def remote(id)
|
|
23
|
-
::Avm::Git::Scms::Git::Remote.new(self, git_repo.remote(id))
|
|
24
|
-
end
|
|
25
|
-
end
|
|
26
|
-
end
|
|
27
|
-
end
|
|
28
|
-
end
|
|
29
|
-
end
|
|
@@ -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
|