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
@@ -2,6 +2,7 @@
2
2
 
3
3
  require_relative 'base/cache'
4
4
  require 'avm/launcher/errors/non_project'
5
+ require 'eac_ruby_utils/speaker/sender'
5
6
 
6
7
  module Avm
7
8
  module Launcher
@@ -10,7 +11,7 @@ module Avm
10
11
  class << self
11
12
  def extend_object(object)
12
13
  object.extend ::EacRubyUtils::SimpleCache
13
- object.extend ::EacCli::Speaker
14
+ object.extend ::EacRubyUtils::Speaker::Sender
14
15
  object.extend ::Avm::Launcher::Instances::Base::Cache
15
16
  super
16
17
  end
@@ -3,9 +3,7 @@
3
3
  module Avm
4
4
  module Launcher
5
5
  module Instances
6
- module Errors
7
- class Error < StandardError
8
- end
6
+ class Error < StandardError
9
7
  end
10
8
  end
11
9
  end
@@ -10,7 +10,7 @@ module Avm
10
10
  module Ruby
11
11
  module Gem
12
12
  class Build
13
- include ::EacCli::Speaker
13
+ enable_speaker
14
14
 
15
15
  def initialize(original_gem_root)
16
16
  @original_gem_root = original_gem_root
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module Avm
6
+ module Projects
7
+ module Stereotype
8
+ class JobComparator
9
+ common_constructor :job1, :job2
10
+
11
+ def result
12
+ return -1 if run_before?(job1, job2)
13
+ return 1 if run_before?(job2, job1)
14
+
15
+ job1.object_id <=> job2.class.name
16
+ end
17
+
18
+ private
19
+
20
+ def run_before?(a_job, other_job)
21
+ return false unless a_job.respond_to?(:run_before)
22
+
23
+ a_job.run_before.map(&:to_sym).include?(job_stereotype_key(other_job))
24
+ end
25
+
26
+ def job_stereotype_key(job)
27
+ job.class.name.split('::')[0..-2].join('::').demodulize.variableize.to_sym
28
+ end
29
+ end
30
+ end
31
+ end
32
+ end
@@ -19,8 +19,7 @@ module Avm
19
19
  clean_all
20
20
  selected_subrepos.map do |f|
21
21
  infov 'Subrepo', f
22
- on_speaker_node do |node|
23
- node.stderr_line_prefix = ' '
22
+ ::EacRubyUtils::Speaker.context.on(::EacCli::Speaker.new(err_line_prefix: ' ')) do
24
23
  ::Avm::Projects::Stereotypes::Git::Update::Subrepo.new(self, f).run
25
24
  end
26
25
  end
@@ -15,7 +15,7 @@ module Avm
15
15
  class RubyGem
16
16
  class Publish < ::Avm::Launcher::Publish::Base
17
17
  include ::EacRubyUtils::SimpleCache
18
- include ::EacCli::Speaker
18
+ enable_speaker
19
19
 
20
20
  protected
21
21
 
@@ -19,6 +19,10 @@ module Avm
19
19
  gemfile_lock_commit
20
20
  end
21
21
 
22
+ def run_before
23
+ [:git]
24
+ end
25
+
22
26
  private
23
27
 
24
28
  def bundle_update
data/lib/avm/self.rb CHANGED
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'eac_cli/old_configs_bridge'
3
4
  require 'eac_ruby_base0/application'
4
5
  require 'eac_ruby_utils/require_sub'
5
6
  require 'avm/instances/base'
@@ -13,6 +14,14 @@ module Avm
13
14
  @application ||= ::EacRubyBase0::Application.new(root.to_path)
14
15
  end
15
16
 
17
+ # @return [EacCli::OldConfigsBridge]
18
+ def build_config(path = nil)
19
+ ::EacCli::OldConfigsBridge.new(
20
+ application.name,
21
+ path.if_present({}) { |v| { storage_path: v } }
22
+ )
23
+ end
24
+
16
25
  def instance
17
26
  @instance ||= ::Avm::Self::Instance.by_id('avm-tools_self')
18
27
  end
@@ -17,6 +17,10 @@ module Avm
17
17
  def application
18
18
  ::Avm::Self.application
19
19
  end
20
+
21
+ def run
22
+ ::Avm::Apps::Config.context.on(::Avm::Self.build_config) { super }
23
+ end
20
24
  end
21
25
  end
22
26
  end
@@ -44,7 +44,7 @@ module Avm
44
44
  end
45
45
 
46
46
  def confirm?
47
- parsed.yes? || request_input('Confirm version bump?', bool: true)
47
+ parsed.yes? || input('Confirm version bump?', bool: true)
48
48
  end
49
49
 
50
50
  def current_version_uncached
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/core_ext'
4
+
5
+ module Avm
6
+ module Tools
7
+ class Runner
8
+ class Config
9
+ require_sub __FILE__
10
+ runner_with :help, :subcommands do
11
+ desc 'Configuration utilities.'
12
+ subcommands
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/apps/config'
4
+ require 'avm/self'
5
+ require 'avm/core_ext'
6
+
7
+ module Avm
8
+ module Tools
9
+ class Runner
10
+ class Config
11
+ class LoadPath
12
+ runner_with :help do
13
+ desc 'Manipulate include path.'
14
+ arg_opt '-p', '--push', 'Add a path.'
15
+ end
16
+
17
+ def run
18
+ run_show
19
+ run_add
20
+ end
21
+
22
+ private
23
+
24
+ # @return [[EacCli::Config]]
25
+ def config_node
26
+ ::Avm::Apps::Config.current
27
+ end
28
+
29
+ def run_add
30
+ parsed.push.if_present do |v|
31
+ infov 'Path to add', v
32
+ config_node.load_path.push(v)
33
+ success 'Path included'
34
+ end
35
+ end
36
+
37
+ def run_show
38
+ infov 'Configuration path', config_node.url
39
+ infov 'Paths included', config_node.self_loaded_nodes.count
40
+ config_node.self_loaded_nodes.each do |loaded_node|
41
+ infov ' * ', loaded_node.url
42
+ end
43
+ end
44
+ end
45
+ end
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/docker/runner'
4
+
5
+ module Avm
6
+ module Tools
7
+ class Runner
8
+ class EacRedmineBase0 < ::Avm::EacRailsBase1::Runner
9
+ class DevDocker < ::Avm::Docker::Runner
10
+ def docker_image
11
+ ::Avm::EacUbuntuBase0::DockerImage
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -7,6 +7,9 @@ module Avm
7
7
  class Runner
8
8
  class EacRedmineBase0 < ::Avm::EacRailsBase1::Runner
9
9
  class Docker < ::Avm::Docker::Runner
10
+ def use_default_registry?
11
+ false
12
+ end
10
13
  end
11
14
  end
12
15
  end
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'avm/apps/config'
3
4
  require 'avm/launcher/git/base'
4
5
  require 'avm/git/commit'
5
6
 
@@ -90,7 +91,7 @@ module Avm
90
91
  end
91
92
 
92
93
  def variables_source
93
- instance || ::Avm.configs
94
+ instance || ::Avm::Apps::Config.current
94
95
  end
95
96
 
96
97
  def instance_uncached
@@ -8,81 +8,10 @@ module Avm
8
8
  class Runner
9
9
  class Git
10
10
  class Issue
11
- runner_with :confirmation, :help do
12
- desc 'Closes a issue in a Git repository.'
13
- bool_opt '-f', '--uncomplete-unfail', 'Do not exit with error if issue is not' \
14
- ' completed or is invalid.'
15
- arg_opt '-s', '--skip-validations', 'Does not validate conditions on <validations>' \
16
- ' (Comma separated value).'
17
- bool_opt '--complete', 'Run complete task.'
18
- bool_opt '--deliver', 'Run "deliver" task.'
19
- bool_opt '--validate', 'Validate for "complete" task.'
20
- end
21
-
22
- def run
23
- run_validate if parsed.validate?
24
- run_deliver if parsed.deliver?
25
- run_complete if parsed.complete?
26
- success('Done!')
27
- end
28
-
29
- def help_extra_text
30
- "Validations:\n#{doc_validations_list}"
31
- end
32
-
33
- def run_validate
34
- complete.start_banner
35
- return true if complete.valid?
36
-
37
- uncomplete_message('Some validation did not pass')
38
- end
39
-
40
- def run_complete
41
- return complete.run if confirm?('Confirm issue completion?')
42
-
43
- uncomplete_message('Issue was not completed')
44
- end
45
-
46
- def run_deliver
47
- deliver.start_banner
48
- return deliver.run if confirm?('Confirm issue delivery?')
49
-
50
- uncomplete_message('Issue was not delivered')
51
- end
52
-
53
- private
54
-
55
- def complete_uncached
56
- ::Avm::Git::Issue::Complete.new(git_complete_issue_options)
57
- end
58
-
59
- def deliver_uncached
60
- ::Avm::Git::Issue::Deliver.new(runner_context.call(:git_repo))
61
- end
62
-
63
- def skip_validations
64
- parsed.skip_validations.to_s.split(',').map(&:strip).reject(&:blank?)
65
- end
66
-
67
- def git_complete_issue_options
68
- { dir: runner_context.call(:repository_path), skip_validations: skip_validations }
69
- end
70
-
71
- def doc_validations_list
72
- ::Avm::Git::Issue::Complete::VALIDATIONS.keys.map { |k| " * #{k}" }.join("\n")
73
- end
74
-
75
- def uncomplete_unfail?
76
- parsed.uncomplete_unfail?
77
- end
78
-
79
- def uncomplete_message(message)
80
- if uncomplete_unfail?
81
- warn(message)
82
- else
83
- fatal_error(message)
84
- end
85
- false
11
+ require_sub __FILE__
12
+ runner_with :help, :subcommands do
13
+ desc 'Issue operations within Git.'
14
+ subcommands
86
15
  end
87
16
  end
88
17
  end
@@ -0,0 +1,79 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/core_ext'
4
+ require 'avm/git/issue/complete'
5
+
6
+ module Avm
7
+ module Tools
8
+ class Runner
9
+ class Git
10
+ class Issue
11
+ class Complete
12
+ runner_with :confirmation, :help do
13
+ desc 'Closes a issue in a Git repository.'
14
+ bool_opt '-f', '--uncomplete-unfail', 'Do not exit with error if issue is not' \
15
+ ' completed or is invalid.'
16
+ arg_opt '-s', '--skip-validations', 'Does not validate conditions on <validations>' \
17
+ ' (Comma separated value).'
18
+ end
19
+
20
+ def run
21
+ return unless run_validate
22
+ return unless run_complete
23
+
24
+ success('Done!')
25
+ end
26
+
27
+ def help_extra_text
28
+ "Validations:\n#{doc_validations_list}"
29
+ end
30
+
31
+ def run_validate
32
+ complete.start_banner
33
+ return true if complete.valid?
34
+
35
+ uncomplete_message('Some validation did not pass')
36
+ end
37
+
38
+ def run_complete
39
+ return complete.run if confirm?('Confirm issue completion?')
40
+
41
+ uncomplete_message('Issue was not completed')
42
+ end
43
+
44
+ private
45
+
46
+ def complete_uncached
47
+ ::Avm::Git::Issue::Complete.new(git_complete_issue_options)
48
+ end
49
+
50
+ def skip_validations
51
+ parsed.skip_validations.to_s.split(',').map(&:strip).reject(&:blank?)
52
+ end
53
+
54
+ def git_complete_issue_options
55
+ { dir: runner_context.call(:repository_path), skip_validations: skip_validations }
56
+ end
57
+
58
+ def doc_validations_list
59
+ ::Avm::Git::Issue::Complete::VALIDATIONS.keys.map { |k| " * #{k}" }.join("\n")
60
+ end
61
+
62
+ def uncomplete_unfail?
63
+ parsed.uncomplete_unfail?
64
+ end
65
+
66
+ def uncomplete_message(message)
67
+ if uncomplete_unfail?
68
+ warn(message)
69
+ else
70
+ fatal_error(message)
71
+ end
72
+ false
73
+ end
74
+ end
75
+ end
76
+ end
77
+ end
78
+ end
79
+ end
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/core_ext'
4
+ require 'avm/git/issue/deliver'
5
+
6
+ module Avm
7
+ module Tools
8
+ class Runner
9
+ class Git
10
+ class Issue
11
+ class Deliver
12
+ runner_with :confirmation, :help do
13
+ desc 'Deliver a issue in a Git repository.'
14
+ end
15
+
16
+ def run
17
+ deliver.start_banner
18
+ if confirm?('Confirm issue delivery?')
19
+ deliver.run
20
+ else
21
+ fatal_error 'Issue undelivered'
22
+ end
23
+ end
24
+
25
+ private
26
+
27
+ def deliver_uncached
28
+ ::Avm::Git::Issue::Deliver.new(runner_context.call(:git_repo))
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end