avm-tools 0.99.1 → 0.102.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (139) hide show
  1. checksums.yaml +4 -4
  2. data/lib/avm/app_src.rb +8 -7
  3. data/lib/avm/docker/image.rb +7 -23
  4. data/lib/avm/docker/registry.rb +2 -11
  5. data/lib/avm/docker/runner.rb +32 -6
  6. data/lib/avm/eac_rails_base1/runner/bundle.rb +1 -2
  7. data/lib/avm/eac_redmine_base0/docker_image.rb +52 -0
  8. data/lib/avm/eac_redmine_base0/instance.rb +2 -2
  9. data/lib/avm/git/auto_commit/rules/manual.rb +1 -1
  10. data/lib/avm/git/issue/complete.rb +4 -8
  11. data/lib/avm/git/issue/complete/commits.rb +42 -0
  12. data/lib/avm/git/issue/complete/git_subrepos.rb +23 -0
  13. data/lib/avm/git/issue/complete/local_branch.rb +54 -0
  14. data/lib/avm/git/issue/complete/local_tag.rb +39 -0
  15. data/lib/avm/git/issue/complete/push.rb +54 -0
  16. data/lib/avm/git/issue/complete/remote.rb +33 -0
  17. data/lib/avm/git/issue/complete/test.rb +45 -0
  18. data/lib/avm/git/issue/complete/tracker.rb +28 -0
  19. data/lib/avm/git/issue/complete/validations.rb +53 -0
  20. data/lib/avm/git/issue/complete/working_tree.rb +19 -0
  21. data/lib/avm/git/revision_test.rb +9 -6
  22. data/lib/avm/instances/base/dockerizable.rb +1 -0
  23. data/lib/avm/instances/base/entry_keys.rb +6 -1
  24. data/lib/avm/instances/docker_image.rb +15 -0
  25. data/lib/avm/instances/entries.rb +0 -1
  26. data/lib/avm/instances/entry.rb +3 -2
  27. data/lib/avm/instances/entry_keys.rb +3 -0
  28. data/lib/avm/launcher/context.rb +1 -1
  29. data/lib/avm/launcher/git/publish_base.rb +3 -1
  30. data/lib/avm/launcher/git/warp_base.rb +11 -0
  31. data/lib/avm/launcher/instances/base.rb +2 -1
  32. data/lib/avm/launcher/instances/error.rb +1 -3
  33. data/lib/avm/launcher/ruby/gem/build.rb +1 -1
  34. data/lib/avm/projects/stereotype/job_comparator.rb +32 -0
  35. data/lib/avm/projects/stereotypes/git/update.rb +1 -2
  36. data/lib/avm/projects/stereotypes/ruby_gem/publish.rb +1 -1
  37. data/lib/avm/projects/stereotypes/ruby_gem/update.rb +4 -0
  38. data/lib/avm/self.rb +9 -0
  39. data/lib/avm/tools/runner.rb +4 -0
  40. data/lib/avm/tools/runner/app_src/version_bump.rb +1 -1
  41. data/lib/avm/tools/runner/config.rb +17 -0
  42. data/lib/avm/tools/runner/config/load_path.rb +48 -0
  43. data/lib/avm/tools/runner/eac_redmine_base0/dev_docker.rb +17 -0
  44. data/lib/avm/tools/runner/eac_redmine_base0/docker.rb +3 -0
  45. data/lib/avm/tools/runner/git/deploy.rb +2 -1
  46. data/lib/avm/tools/runner/git/issue.rb +4 -75
  47. data/lib/avm/tools/runner/git/issue/complete.rb +79 -0
  48. data/lib/avm/tools/runner/git/issue/deliver.rb +35 -0
  49. data/lib/avm/tools/runner/git/organize.rb +1 -1
  50. data/lib/avm/tools/version.rb +1 -1
  51. data/template/avm/eac_redmine_base0/docker_image/Dockerfile.template +47 -0
  52. data/template/avm/eac_redmine_base0/docker_image/apache_http_virtualhost.conf.template +10 -0
  53. data/template/avm/eac_redmine_base0/docker_image/apache_https_virtualhost.conf.template +16 -0
  54. data/template/avm/eac_redmine_base0/docker_image/install_settings.sh.template +29 -0
  55. data/template/avm/eac_redmine_base0/docker_image/start.sh.template +25 -0
  56. data/template/avm/eac_ubuntu_base0/docker_image/Dockerfile +1 -1
  57. data/vendor/avm-apps/avm-apps.gemspec +1 -1
  58. data/vendor/avm-apps/lib/avm/apps/config.rb +15 -0
  59. data/vendor/avm-apps/lib/avm/apps/jobs/base.rb +1 -1
  60. data/vendor/avm-apps/lib/avm/apps/version.rb +1 -1
  61. data/vendor/eac_cli/eac_cli.gemspec +1 -1
  62. data/vendor/eac_cli/lib/eac_cli/config.rb +19 -0
  63. data/vendor/eac_cli/lib/eac_cli/config/entry.rb +48 -0
  64. data/vendor/eac_cli/lib/eac_cli/config/entry/options.rb +57 -0
  65. data/vendor/eac_cli/lib/eac_cli/config/entry/undefined.rb +26 -0
  66. data/vendor/eac_cli/lib/eac_cli/definition/positional_argument.rb +6 -1
  67. data/vendor/eac_cli/lib/eac_cli/docopt/doc_builder/alternative.rb +3 -1
  68. data/vendor/eac_cli/lib/eac_cli/docopt_runner.rb +4 -8
  69. data/vendor/eac_cli/lib/eac_cli/docopt_runner/{_class_methods.rb → class_methods.rb} +5 -3
  70. data/vendor/eac_cli/lib/eac_cli/docopt_runner/context.rb +18 -0
  71. data/vendor/eac_cli/lib/eac_cli/old_configs.rb +0 -1
  72. data/vendor/eac_cli/lib/eac_cli/old_configs/entry_reader.rb +2 -2
  73. data/vendor/eac_cli/lib/eac_cli/old_configs_bridge.rb +37 -0
  74. data/vendor/eac_cli/lib/eac_cli/runner/after_class_methods.rb +20 -3
  75. data/vendor/eac_cli/lib/eac_cli/runner_with/help.rb +6 -2
  76. data/vendor/eac_cli/lib/eac_cli/runner_with/subcommands.rb +5 -1
  77. data/vendor/eac_cli/lib/eac_cli/speaker.rb +15 -19
  78. data/vendor/eac_cli/lib/eac_cli/speaker/_constants.rb +1 -1
  79. data/vendor/eac_cli/lib/eac_cli/speaker/list.rb +1 -1
  80. data/vendor/eac_cli/lib/eac_cli/speaker/options.rb +38 -0
  81. data/vendor/eac_cli/lib/eac_cli/version.rb +1 -1
  82. data/vendor/eac_cli/spec/lib/eac_cli/speaker_spec.rb +5 -9
  83. data/vendor/eac_config/lib/eac_config/entry.rb +7 -1
  84. data/vendor/eac_config/lib/eac_config/envvars_node.rb +25 -0
  85. data/vendor/eac_config/lib/eac_config/envvars_node/entry.rb +54 -0
  86. data/vendor/eac_config/lib/eac_config/load_path.rb +5 -13
  87. data/vendor/eac_config/lib/eac_config/node.rb +9 -2
  88. data/vendor/eac_config/lib/eac_config/node_entry.rb +2 -23
  89. data/vendor/eac_config/lib/eac_config/node_uri.rb +38 -0
  90. data/vendor/eac_config/lib/eac_config/old_configs.rb +1 -0
  91. data/vendor/eac_config/lib/eac_config/version.rb +1 -1
  92. data/vendor/eac_config/lib/eac_config/yaml_file_node.rb +9 -2
  93. data/vendor/eac_config/lib/eac_config/yaml_file_node/entry.rb +37 -0
  94. data/vendor/eac_config/spec/lib/eac_config/envvars_node/entry_spec.rb +14 -0
  95. data/vendor/eac_config/spec/lib/eac_config/envvars_node_spec.rb +40 -0
  96. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1.yaml +3 -1
  97. data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_2.yaml +2 -1
  98. data/vendor/eac_git/lib/eac_git/executables.rb +4 -0
  99. data/vendor/eac_git/lib/eac_git/local.rb +5 -1
  100. data/vendor/eac_git/lib/eac_git/local/commit/archive.rb +19 -0
  101. data/vendor/eac_git/lib/eac_git/local/subrepo.rb +2 -1
  102. data/vendor/eac_git/lib/eac_git/version.rb +1 -1
  103. data/vendor/eac_ruby_base0/eac_ruby_base0.gemspec +2 -2
  104. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application.rb +8 -11
  105. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application_xdg.rb +32 -0
  106. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/jobs_runner.rb +2 -2
  107. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner.rb +13 -6
  108. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/confirmation.rb +8 -1
  109. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/version.rb +1 -1
  110. data/vendor/eac_ruby_gems_utils/eac_ruby_gems_utils.gemspec +1 -1
  111. data/vendor/eac_ruby_gems_utils/lib/eac_ruby_gems_utils/tests/multiple/decorated_gem.rb +2 -0
  112. data/vendor/eac_ruby_gems_utils/lib/eac_ruby_gems_utils/version.rb +1 -1
  113. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/context.rb +31 -0
  114. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/contextualizable.rb +12 -7
  115. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/context.rb +11 -0
  116. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/speaker.rb +9 -0
  117. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/simple_cache.rb +10 -2
  118. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker.rb +16 -0
  119. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/receiver.rb +57 -0
  120. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/sender.rb +32 -0
  121. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
  122. data/vendor/{eac_cli/spec/lib → eac_ruby_utils/spec/lib/eac_ruby_utils/patches}/module/speaker_spec.rb +2 -2
  123. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/simple_cache_spec.rb +18 -0
  124. metadata +49 -19
  125. data/lib/avm/configs.rb +0 -22
  126. data/lib/avm/git/issue/complete/_commits.rb +0 -40
  127. data/lib/avm/git/issue/complete/_git_subrepos.rb +0 -21
  128. data/lib/avm/git/issue/complete/_local_branch.rb +0 -52
  129. data/lib/avm/git/issue/complete/_local_tag.rb +0 -37
  130. data/lib/avm/git/issue/complete/_push.rb +0 -52
  131. data/lib/avm/git/issue/complete/_remote.rb +0 -31
  132. data/lib/avm/git/issue/complete/_test.rb +0 -43
  133. data/lib/avm/git/issue/complete/_tracker.rb +0 -26
  134. data/lib/avm/git/issue/complete/_validations.rb +0 -51
  135. data/lib/avm/git/issue/complete/_working_tree.rb +0 -17
  136. data/vendor/eac_cli/lib/eac_cli/patches/module.rb +0 -4
  137. data/vendor/eac_cli/lib/eac_cli/patches/module/speaker.rb +0 -10
  138. data/vendor/eac_cli/lib/eac_cli/speaker/_class_methods.rb +0 -37
  139. data/vendor/eac_cli/lib/eac_cli/speaker/node.rb +0 -24
data/lib/avm/configs.rb DELETED
@@ -1,22 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/old_configs'
4
-
5
- module Avm
6
- class << self
7
- attr_reader :configs_storage_path
8
-
9
- def configs
10
- @configs ||= ::EacCli::OldConfigs.new('avm-tools', configs_options)
11
- end
12
-
13
- def configs_options
14
- configs_storage_path.if_present({}) { |v| { storage_path: v } }
15
- end
16
-
17
- def configs_storage_path=(path)
18
- @configs_storage_path = path
19
- @configs = nil
20
- end
21
- end
22
- end
@@ -1,40 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'avm/result'
4
-
5
- module Avm
6
- module Git
7
- module Issue
8
- class Complete
9
- def commits_result
10
- ::Avm::Result.success_or_error(commits.any?, 'yes', 'none')
11
- end
12
-
13
- def commits_uncached
14
- return [] unless branch_hash && follow_master?
15
-
16
- interval = remote_master_hash ? "#{remote_master_hash}..#{branch_hash}" : branch_hash
17
- @git.execute!('rev-list', interval).each_line.map(&:strip)
18
- end
19
-
20
- def bifurcations_result
21
- commits.each do |commit|
22
- if multiple_parents?(commit)
23
- return ::Avm::Result.error("#{commit} has multiple parents")
24
- end
25
- end
26
- ::Avm::Result.success('no')
27
- end
28
-
29
- def multiple_parents?(commit)
30
- commit_parents(commit).count > 1
31
- end
32
-
33
- def commit_parents(commit)
34
- @git.execute!('log', '--pretty=%P', '-n', '1', commit).split(' ').map(&:strip)
35
- .select(&:present?)
36
- end
37
- end
38
- end
39
- end
40
- end
@@ -1,21 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'avm/git/subrepo_checks'
4
- require 'eac_git/local'
5
-
6
- module Avm
7
- module Git
8
- module Issue
9
- class Complete
10
- def git_subrepos_result
11
- return ::Avm::Result.error('Unclean workspace') unless clean_workspace?
12
-
13
- infom 'Checking Git subrepos...'
14
- r = ::Avm::Git::SubrepoChecks.new(::EacGit::Local.new(@git)).add_all_subrepos
15
- r.check_remote = true
16
- r.result
17
- end
18
- end
19
- end
20
- end
21
- end
@@ -1,52 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'avm/result'
4
-
5
- module Avm
6
- module Git
7
- module Issue
8
- class Complete
9
- def branch_uncached
10
- @git.current_branch
11
- end
12
-
13
- def branch_hash_uncached
14
- @git.rev_parse("refs/heads/#{branch}")
15
- end
16
-
17
- def branch_name
18
- branch.split('/')[-1]
19
- end
20
-
21
- def branch_name_result
22
- ::Avm::Result.success_or_error(issue_id.present?, branch_name)
23
- end
24
-
25
- def branch_hash_result
26
- ::Avm::Result.success_or_error(
27
- branch_hash.present?,
28
- branch_hash
29
- )
30
- end
31
-
32
- def follow_master_result
33
- return ::Avm::Result.neutral('No branch hash') unless branch_hash
34
-
35
- r = follow_master?
36
- ::Avm::Result.success_or_error(r, 'yes', 'no')
37
- end
38
-
39
- def follow_master?
40
- remote_master_hash ? @git.descendant?(branch_hash, remote_master_hash) : true
41
- end
42
-
43
- def remove_local_branch
44
- info 'Removendo branch local...'
45
- bn = branch_name
46
- git(['checkout', branch_hash])
47
- git(['branch', '-D', bn])
48
- end
49
- end
50
- end
51
- end
52
- end
@@ -1,37 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'avm/result'
4
-
5
- module Avm
6
- module Git
7
- module Issue
8
- class Complete
9
- def assert_tag
10
- if tag_hash
11
- return if tag_hash == branch_hash
12
-
13
- delete_tag
14
- end
15
- create_tag
16
- end
17
-
18
- def delete_tag
19
- info 'Removendo tag...'
20
- git(['tag', '-d', branch_name])
21
- end
22
-
23
- def tag
24
- "refs/tags/#{branch_name}"
25
- end
26
-
27
- def tag_hash
28
- @git.rev_parse(tag)
29
- end
30
-
31
- def create_tag
32
- git(['tag', branch_name, branch_hash])
33
- end
34
- end
35
- end
36
- end
37
- end
@@ -1,52 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Avm
4
- module Git
5
- module Issue
6
- class Complete
7
- def dry_push_args
8
- %w[push --dry-run] + [remote_name] + pushs
9
- end
10
-
11
- def dry_push_result
12
- return ::Avm::Result.error('Nothing to push') if pushs.empty?
13
-
14
- r = @git.execute(dry_push_args)
15
- message = if r.fetch(:exit_code).zero?
16
- 'ok'
17
- else
18
- r.fetch(:stderr) + "\n#{::Shellwords.join(dry_push_args)}"
19
- end
20
- ::Avm::Result.success_or_error(r.fetch(:exit_code).zero?, message)
21
- end
22
-
23
- def push
24
- if pushs.empty?
25
- info 'PUSH: Nada a enviar'
26
- else
27
- info "PUSH: enviando \"#{pushs}\"..."
28
- git(%w[push origin] + pushs)
29
- end
30
- end
31
-
32
- def pushs_uncached
33
- [master_push, remove_branch_push, tag_push].reject(&:nil?)
34
- end
35
-
36
- def master_push
37
- remote_master_hash != branch_hash ? "#{branch_hash}:refs/heads/master" : nil
38
- end
39
-
40
- def remove_branch_push
41
- remote_branch_hash ? ":refs/heads/#{branch}" : nil
42
- end
43
-
44
- def tag_push
45
- return nil unless !remote_tag_hash || remote_tag_hash != branch_hash
46
-
47
- "#{branch_hash}:#{tag}"
48
- end
49
- end
50
- end
51
- end
52
- end
@@ -1,31 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Avm
4
- module Git
5
- module Issue
6
- class Complete
7
- def remote_master_hash
8
- remote_hashs['refs/heads/master']
9
- end
10
-
11
- def remote_branch_hash
12
- remote_hashs["refs/heads/#{branch}"]
13
- end
14
-
15
- def remote_tag_hash
16
- remote_hashs[tag]
17
- end
18
-
19
- private
20
-
21
- def remote_name
22
- 'origin'
23
- end
24
-
25
- def remote_hashs_uncached
26
- @git.remote_hashs(remote_name)
27
- end
28
- end
29
- end
30
- end
31
- end
@@ -1,43 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'avm/apps/sources/configuration'
4
- require 'avm/result'
5
- require 'eac_ruby_utils/fs/temp'
6
-
7
- module Avm
8
- module Git
9
- module Issue
10
- class Complete
11
- def test_result
12
- test_command = configuration.if_present(&:any_test_command)
13
- return ::Avm::Result.success('unconfigured') if test_command.blank?
14
-
15
- infom "Running test command \"#{test_command}\"..."
16
- result = test_command.execute
17
- test_result_log(result)
18
- if result.fetch(:exit_code).zero?
19
- ::Avm::Result.success('yes')
20
- else
21
- ::Avm::Result.error('no')
22
- end
23
- end
24
-
25
- private
26
-
27
- def test_result_log(result)
28
- stdout_file = ::EacRubyUtils::Fs::Temp.file
29
- stderr_file = ::EacRubyUtils::Fs::Temp.file
30
- stdout_file.write(result.fetch(:stdout))
31
- stderr_file.write(result.fetch(:stderr))
32
- infov ' * Exit code', result.fetch(:exit_code)
33
- infov ' * STDOUT', stdout_file.to_path
34
- infov ' * STDERR', stderr_file.to_path
35
- end
36
-
37
- def configuration_uncached
38
- ::Avm::Apps::Sources::Configuration.find_by_path(@git)
39
- end
40
- end
41
- end
42
- end
43
- end
@@ -1,26 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'clipboard'
4
-
5
- module Avm
6
- module Git
7
- module Issue
8
- class Complete
9
- def clipboard_copy_tracker_message
10
- ::Clipboard.copy(textile_tracker_message)
11
- infov 'Copied to clipboard', textile_tracker_message
12
- end
13
-
14
- private
15
-
16
- def textile_tracker_message_uncached
17
- "Revisado para commit:#{branch_short_hash}, ok."
18
- end
19
-
20
- def branch_short_hash
21
- git(['log', '--pretty=format:%h', '-1', '-q', branch_hash])
22
- end
23
- end
24
- end
25
- end
26
- end
@@ -1,51 +0,0 @@
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
- VALIDATIONS = {
12
- clean_workspace: 'Clean workspace?',
13
- branch_name: 'Branch name',
14
- branch_hash: 'Branch hash',
15
- follow_master: 'Follow master?',
16
- commits: 'Commits?',
17
- bifurcations: 'Bifurcations?',
18
- dry_push: 'Dry push?',
19
- git_subrepos: 'Git subrepos ok?',
20
- test: 'Test ok?'
21
- }.with_indifferent_access.freeze
22
-
23
- def valid?
24
- validations.map(&:result).none?(&:error?)
25
- end
26
-
27
- def validations_banner
28
- validations.each do |v|
29
- infov "[#{v.key}] #{v.label}", v.result.label
30
- end
31
- end
32
-
33
- def validate_skip_validations
34
- skip_validations.each do |validation|
35
- next if VALIDATIONS.keys.include?(validation)
36
-
37
- raise "\"#{validation}\" is not a registered validation"
38
- end
39
- end
40
-
41
- private
42
-
43
- def validations_uncached
44
- VALIDATIONS.map do |key, label|
45
- ::Avm::Git::Issue::Complete::Validation.new(self, key, label)
46
- end
47
- end
48
- end
49
- end
50
- end
51
- end
@@ -1,17 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Avm
4
- module Git
5
- module Issue
6
- class Complete
7
- def clean_workspace_result
8
- ::Avm::Result.success_or_error(clean_workspace?, 'yes', 'no')
9
- end
10
-
11
- def clean_workspace?
12
- @git.dirty_files.none?
13
- end
14
- end
15
- end
16
- end
17
- end
@@ -1,4 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_ruby_utils/require_sub'
4
- ::EacRubyUtils.require_sub(__FILE__)
@@ -1,10 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/speaker'
4
- require 'eac_ruby_utils/patch'
5
-
6
- class Module
7
- def enable_speaker
8
- ::EacRubyUtils.patch(self, ::EacCli::Speaker)
9
- end
10
- end
@@ -1,37 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/speaker/node'
4
-
5
- module EacCli
6
- module Speaker
7
- class << self
8
- def current_node
9
- nodes_stack.last
10
- end
11
-
12
- def on_node(&block)
13
- push
14
- yield(*(block.arity.zero? ? [] : [current_node]))
15
- ensure
16
- pop
17
- end
18
-
19
- def push
20
- nodes_stack << ::EacCli::Speaker::Node.new
21
- current_node
22
- end
23
-
24
- def pop
25
- return nodes_stack.pop if nodes_stack.count > 1
26
-
27
- raise "Cannot remove first node (nodes_stack.count: #{nodes_stack.count})"
28
- end
29
-
30
- private
31
-
32
- def nodes_stack
33
- @nodes_stack ||= [::EacCli::Speaker::Node.new]
34
- end
35
- end
36
- end
37
- end