avm-tools 0.66.0 → 0.69.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (120) hide show
  1. checksums.yaml +4 -4
  2. data/lib/avm/eac_rails_base0/apache_host.rb +17 -0
  3. data/lib/avm/eac_rails_base0/deploy.rb +50 -0
  4. data/lib/avm/eac_rails_base0/instance.rb +14 -0
  5. data/lib/avm/eac_redmine_base0/deploy.rb +2 -2
  6. data/lib/avm/eac_redmine_base0/instance.rb +2 -2
  7. data/lib/avm/eac_webapp_base0/apache_host.rb +103 -0
  8. data/lib/avm/eac_webapp_base0/deploy.rb +102 -0
  9. data/lib/avm/eac_webapp_base0/deploy/appended_directories.rb +25 -0
  10. data/lib/avm/eac_webapp_base0/deploy/file_unit.rb +41 -0
  11. data/lib/avm/eac_webapp_base0/deploy/git_info.rb +49 -0
  12. data/lib/avm/eac_webapp_base0/deploy/version.rb +20 -0
  13. data/lib/avm/eac_webapp_base0/instance.rb +50 -0
  14. data/lib/avm/eac_webapp_base0/runner/apache_host.rb +39 -0
  15. data/lib/avm/eac_webapp_base0/runner/data.rb +25 -0
  16. data/lib/avm/eac_webapp_base0/runner/data/dump.rb +69 -0
  17. data/lib/avm/eac_webapp_base0/runner/data/load.rb +66 -0
  18. data/lib/avm/eac_webapp_base0/runner/deploy.rb +59 -0
  19. data/lib/avm/git/issue/complete/_git_subrepos.rb +1 -0
  20. data/lib/avm/instances/configuration/_locale.rb +16 -0
  21. data/lib/avm/local_projects/instance.rb +20 -1
  22. data/lib/avm/patches/i18n.rb +22 -0
  23. data/lib/avm/patches/object/i18n.rb +17 -0
  24. data/lib/avm/projects/stereotype.rb +1 -0
  25. data/lib/avm/projects/stereotypes/git_subrepo/warp.rb +2 -2
  26. data/lib/avm/projects/stereotypes/rails_application.rb +2 -0
  27. data/lib/avm/projects/stereotypes/rails_application/local_project_mixin.rb +18 -0
  28. data/lib/avm/projects/stereotypes/rails_application/update.rb +14 -0
  29. data/lib/avm/projects/stereotypes/ruby_gem/local_project_mixin.rb +9 -0
  30. data/lib/avm/projects/stereotypes/ruby_gem/version_bump.rb +61 -0
  31. data/lib/avm/stereotypes/eac_wordpress_base0/apache_host.rb +2 -2
  32. data/lib/avm/stereotypes/eac_wordpress_base0/deploy.rb +2 -2
  33. data/lib/avm/stereotypes/eac_wordpress_base0/instance.rb +2 -2
  34. data/lib/avm/tools/runner/eac_rails_base0.rb +2 -2
  35. data/lib/avm/tools/runner/eac_rails_base0/apache_host.rb +3 -26
  36. data/lib/avm/tools/runner/eac_rails_base0/data.rb +2 -2
  37. data/lib/avm/tools/runner/eac_rails_base0/deploy.rb +3 -3
  38. data/lib/avm/tools/runner/eac_redmine_base0/data.rb +1 -1
  39. data/lib/avm/tools/runner/eac_redmine_base0/data/dump.rb +2 -2
  40. data/lib/avm/tools/runner/eac_redmine_base0/deploy.rb +2 -2
  41. data/lib/avm/tools/runner/eac_redmine_base0/project_rename.rb +1 -0
  42. data/lib/avm/tools/runner/eac_wordpress_base0/apache_host.rb +3 -25
  43. data/lib/avm/tools/runner/eac_wordpress_base0/data.rb +2 -2
  44. data/lib/avm/tools/runner/eac_wordpress_base0/deploy.rb +2 -2
  45. data/lib/avm/tools/runner/local_project/update.rb +1 -2
  46. data/lib/avm/tools/runner/local_project/version_bump.rb +89 -0
  47. data/lib/avm/tools/version.rb +1 -1
  48. data/lib/avm/version.rb +45 -0
  49. data/lib/eac_launcher/git/sub_warp_base.rb +1 -1
  50. data/lib/eac_launcher/publish/base.rb +1 -1
  51. data/template/avm/{stereotypes/eac_rails_base0 → eac_rails_base0}/deploy/config/database.yml.template +0 -0
  52. data/template/avm/{stereotypes/eac_webapp_base0 → eac_webapp_base0}/apache_host/no_ssl.conf +0 -0
  53. data/template/avm/self/docker_image/Dockerfile +1 -1
  54. data/vendor/eac_cli/Gemfile +5 -0
  55. data/vendor/eac_cli/eac_cli.gemspec +18 -0
  56. data/vendor/eac_cli/lib/eac_cli.rb +7 -0
  57. data/vendor/eac_cli/lib/eac_cli/default_runner.rb +14 -0
  58. data/vendor/eac_cli/lib/eac_cli/definition.rb +72 -0
  59. data/vendor/eac_cli/lib/eac_cli/definition/argument_option.rb +13 -0
  60. data/vendor/eac_cli/lib/eac_cli/definition/base_option.rb +26 -0
  61. data/vendor/eac_cli/lib/eac_cli/definition/boolean_option.rb +13 -0
  62. data/vendor/eac_cli/lib/eac_cli/definition/positional_argument.rb +27 -0
  63. data/vendor/eac_cli/lib/eac_cli/docopt/doc_builder.rb +77 -0
  64. data/vendor/eac_cli/lib/eac_cli/docopt/runner_extension.rb +45 -0
  65. data/vendor/eac_cli/lib/eac_cli/parser.rb +14 -0
  66. data/vendor/eac_cli/lib/eac_cli/parser/collector.rb +56 -0
  67. data/vendor/eac_cli/lib/eac_cli/parser/error.rb +15 -0
  68. data/vendor/eac_cli/lib/eac_cli/parser/options_collection.rb +105 -0
  69. data/vendor/eac_cli/lib/eac_cli/parser/parse_result.rb +21 -0
  70. data/vendor/eac_cli/lib/eac_cli/parser/positional_collection.rb +49 -0
  71. data/vendor/eac_cli/lib/eac_cli/runner.rb +87 -0
  72. data/vendor/eac_cli/lib/eac_cli/runner/context.rb +18 -0
  73. data/vendor/eac_cli/lib/eac_cli/runner_with.rb +9 -0
  74. data/vendor/eac_cli/lib/eac_cli/runner_with/help.rb +19 -0
  75. data/vendor/eac_cli/lib/eac_cli/runner_with/output_file.rb +26 -0
  76. data/vendor/eac_cli/lib/eac_cli/version.rb +5 -0
  77. data/vendor/eac_cli/spec/lib/eac_cli/runner_spec.rb +70 -0
  78. data/vendor/eac_cli/spec/rubocop_spec.rb +7 -0
  79. data/vendor/eac_cli/spec/spec_helper.rb +100 -0
  80. data/vendor/eac_ruby_base0/eac_ruby_base0.gemspec +3 -3
  81. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner.rb +5 -1
  82. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/version.rb +1 -1
  83. data/vendor/eac_ruby_gems_utils/lib/eac_ruby_gems_utils/gem.rb +15 -1
  84. data/vendor/eac_ruby_gems_utils/lib/eac_ruby_gems_utils/gem/version_file.rb +41 -0
  85. data/vendor/eac_ruby_gems_utils/lib/eac_ruby_gems_utils/tests/multiple.rb +5 -34
  86. data/vendor/eac_ruby_gems_utils/lib/eac_ruby_gems_utils/tests/multiple/decorated_gem.rb +42 -0
  87. data/vendor/eac_ruby_gems_utils/lib/eac_ruby_gems_utils/tests/multiple/result.rb +25 -0
  88. data/vendor/eac_ruby_gems_utils/lib/eac_ruby_gems_utils/version.rb +1 -1
  89. data/vendor/eac_ruby_gems_utils/spec/lib/eac_ruby_gems_utils/gem/version_file_spec.rb +14 -0
  90. data/vendor/eac_ruby_gems_utils/spec/lib/eac_ruby_gems_utils/gem/version_file_spec_files/a_version_file.rb +7 -0
  91. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/common_concern.rb +4 -4
  92. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/docopt_runner.rb +6 -0
  93. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/docopt_runner/_class_methods.rb +1 -1
  94. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/docopt_runner/_subcommands.rb +8 -2
  95. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/inflector.rb +18 -0
  96. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/listable/value.rb +3 -2
  97. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/object/if_respond.rb +22 -0
  98. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/string.rb +4 -0
  99. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/string/inflector.rb +9 -0
  100. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/simple_cache.rb +6 -2
  101. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/struct.rb +53 -0
  102. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
  103. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/inflector_spec.rb +15 -0
  104. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/struct_spec.rb +46 -0
  105. metadata +65 -19
  106. data/lib/avm/local_projects/jobs/update.rb +0 -29
  107. data/lib/avm/stereotypes/eac_rails_base0/apache_host.rb +0 -19
  108. data/lib/avm/stereotypes/eac_rails_base0/deploy.rb +0 -52
  109. data/lib/avm/stereotypes/eac_rails_base0/instance.rb +0 -16
  110. data/lib/avm/stereotypes/eac_webapp_base0/apache_host.rb +0 -97
  111. data/lib/avm/stereotypes/eac_webapp_base0/deploy.rb +0 -104
  112. data/lib/avm/stereotypes/eac_webapp_base0/deploy/appended_directories.rb +0 -27
  113. data/lib/avm/stereotypes/eac_webapp_base0/deploy/file_unit.rb +0 -43
  114. data/lib/avm/stereotypes/eac_webapp_base0/deploy/git_info.rb +0 -51
  115. data/lib/avm/stereotypes/eac_webapp_base0/deploy/version.rb +0 -22
  116. data/lib/avm/stereotypes/eac_webapp_base0/instance.rb +0 -52
  117. data/lib/avm/stereotypes/eac_webapp_base0/runner/data.rb +0 -27
  118. data/lib/avm/stereotypes/eac_webapp_base0/runner/data/dump.rb +0 -71
  119. data/lib/avm/stereotypes/eac_webapp_base0/runner/data/load.rb +0 -68
  120. data/lib/avm/stereotypes/eac_webapp_base0/runner/deploy.rb +0 -61
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Avm
4
4
  module Tools
5
- VERSION = '0.66.0'
5
+ VERSION = '0.69.2'
6
6
  end
7
7
  end
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Avm
4
+ # A sequence of segments of integer versions (Ex.: 2, 1.0.1, 3.0.0.0.0).
5
+ class Version
6
+ include ::Comparable
7
+
8
+ SEGMENT_SEPARATOR = '.'
9
+
10
+ class << self
11
+ def segments_from_mixed(segments)
12
+ (segments.is_a?(::Enumerable) ? segments.to_a : segments.to_s.split(SEGMENT_SEPARATOR))
13
+ .map(&:to_i)
14
+ end
15
+ end
16
+
17
+ attr_reader :segments
18
+
19
+ def initialize(segments)
20
+ @segments = self.class.segments_from_mixed(segments).freeze
21
+ end
22
+
23
+ delegate :[], to: :segments
24
+
25
+ def <=>(other)
26
+ segments <=> other.segments
27
+ end
28
+
29
+ def to_s
30
+ segments.join(SEGMENT_SEPARATOR)
31
+ end
32
+
33
+ # @return [Avm::Version]
34
+ def increment_segment(segment_index)
35
+ x = [segments.count, segment_index + 1].max.times.map do |index|
36
+ value = index < segments.count ? segments[index] : 0
37
+ next value if index < segment_index
38
+ next value + 1 if index == segment_index
39
+
40
+ 0
41
+ end
42
+ self.class.new x
43
+ end
44
+ end
45
+ end
@@ -12,7 +12,7 @@ module EacLauncher
12
12
  r = find_parent_instance(instance.parent)
13
13
  return r if r
14
14
 
15
- ::EacLauncher::Instances::Errors::Base.new('Git parent not found')
15
+ ::Avm::Launcher::Errors::Base.new('Git parent not found')
16
16
  end
17
17
 
18
18
  def find_parent_instance(current)
@@ -35,7 +35,7 @@ module EacLauncher
35
35
 
36
36
  def check_with_rescue
37
37
  internal_check
38
- rescue ::EacLauncher::Instances::Errors::Base => e
38
+ rescue ::Avm::Launcher::Errors::Base => e
39
39
  ::EacLauncher::Publish::CheckResult.blocked("Error: #{e}")
40
40
  rescue ::EacLauncher::Git::Error => e
41
41
  ::EacLauncher::Publish::CheckResult.blocked("Git error: #{e}")
@@ -1,4 +1,4 @@
1
- FROM ruby:2.4
1
+ FROM ruby:2.5
2
2
  RUN gem install avm-tools
3
3
 
4
4
  RUN apt-get update && apt-get -y --no-install-recommends install \
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gemspec
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ $LOAD_PATH.push File.expand_path('lib', __dir__)
4
+
5
+ require 'eac_cli/version'
6
+
7
+ Gem::Specification.new do |s|
8
+ s.name = 'eac_cli'
9
+ s.version = ::EacCli::VERSION
10
+ s.authors = ['Esquilo Azul Company']
11
+ s.summary = 'Utilities to build CLI applications with Ruby.'
12
+
13
+ s.files = Dir['{lib}/**/*', 'Gemfile']
14
+
15
+ s.add_dependency 'eac_ruby_utils', '~> 0.45'
16
+
17
+ s.add_development_dependency 'eac_ruby_gem_support', '~> 0.1', '>= 0.1.2'
18
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module EacCli
6
+ require_sub __FILE__
7
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/runner_with/help'
4
+ require 'eac_ruby_utils/core_ext'
5
+
6
+ module EacCli
7
+ module DefaultRunner
8
+ common_concern do
9
+ include ::EacCli::RunnerWith::Help
10
+ enable_console_speaker
11
+ enable_simple_cache
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,72 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/definition/argument_option'
4
+ require 'eac_cli/definition/boolean_option'
5
+ require 'eac_cli/definition/positional_argument'
6
+ require 'eac_ruby_utils/core_ext'
7
+
8
+ module EacCli
9
+ class Definition
10
+ require_sub __FILE__
11
+ attr_accessor :description
12
+ attr_accessor :options_argument
13
+
14
+ def initialize
15
+ self.description = '-- NO DESCRIPTION SET --'
16
+ self.options_argument = true
17
+ end
18
+
19
+ def alt(&block)
20
+ r = ::EacCli::Definition.new
21
+ r.instance_eval(&block)
22
+ alternatives << r
23
+ r
24
+ end
25
+
26
+ def alternatives
27
+ @alternatives ||= []
28
+ end
29
+
30
+ def arg_opt(short, long, description, option_options = {})
31
+ options << ::EacCli::Definition::ArgumentOption.new(
32
+ short, long, description, option_options
33
+ )
34
+ end
35
+
36
+ def bool_opt(short, long, description, option_options = {})
37
+ options << ::EacCli::Definition::BooleanOption.new(short, long, description, option_options)
38
+ end
39
+
40
+ def desc(description)
41
+ self.description = description
42
+ end
43
+
44
+ def options_arg(options_argument)
45
+ self.options_argument = options_argument
46
+ end
47
+
48
+ def options
49
+ @options ||= []
50
+ end
51
+
52
+ def pos_arg(name, arg_options = {})
53
+ positional << ::EacCli::Definition::PositionalArgument.new(name, arg_options)
54
+ end
55
+
56
+ def positional
57
+ @positional ||= []
58
+ end
59
+
60
+ def subcommands
61
+ positional << ::EacCli::Definition::PositionalArgument.new('subcommand', subcommand: true)
62
+ end
63
+
64
+ def options_first(enable = true)
65
+ @options_first = enable
66
+ end
67
+
68
+ def options_first?
69
+ @options_first ? true : false
70
+ end
71
+ end
72
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/definition/base_option'
4
+
5
+ module EacCli
6
+ class Definition
7
+ class ArgumentOption < ::EacCli::Definition::BaseOption
8
+ def argument?
9
+ true
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module EacCli
6
+ class Definition
7
+ class BaseOption
8
+ attr_reader :short, :long, :description, :options
9
+
10
+ def initialize(short, long, description, options = {})
11
+ @short = short
12
+ @long = long
13
+ @description = description
14
+ @options = options.with_indifferent_access
15
+ end
16
+
17
+ def identifier
18
+ long.to_s.variableize.to_sym
19
+ end
20
+
21
+ def show_on_usage?
22
+ options[:usage]
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/definition/base_option'
4
+
5
+ module EacCli
6
+ class Definition
7
+ class BooleanOption < ::EacCli::Definition::BaseOption
8
+ def argument?
9
+ false
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module EacCli
6
+ class Definition
7
+ class PositionalArgument
8
+ common_constructor :name, :options, default: [{}]
9
+
10
+ def identifier
11
+ name.to_s.variableize.to_sym
12
+ end
13
+
14
+ def optional?
15
+ options[:optional]
16
+ end
17
+
18
+ def repeat?
19
+ options[:repeat]
20
+ end
21
+
22
+ def subcommand?
23
+ options[:subcommand]
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,77 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+ require 'eac_ruby_utils/console/docopt_runner'
5
+
6
+ module EacCli
7
+ module Docopt
8
+ class DocBuilder
9
+ common_constructor :definition
10
+
11
+ SEP = ' '
12
+ IDENT = SEP * 2
13
+ OPTION_DESC_SEP = IDENT * 2
14
+
15
+ def positional_argument(positional)
16
+ if positional.subcommand?
17
+ ::EacRubyUtils::Console::DocoptRunner::SUBCOMMANDS_MACRO
18
+ else
19
+ r = "<#{positional.name}>"
20
+ r += '...' if positional.repeat?
21
+ r = "[#{r}]" if positional.optional?
22
+ r
23
+ end
24
+ end
25
+
26
+ def option_argument(option)
27
+ option_long(option)
28
+ end
29
+
30
+ def option_definition(option)
31
+ option.short + SEP + option_long(option) + OPTION_DESC_SEP + option.description
32
+ end
33
+
34
+ def option_long(option)
35
+ b = option.long
36
+ b += '=<value>' if option.argument?
37
+ b
38
+ end
39
+
40
+ def section(header, include_header = true)
41
+ b = include_header ? "#{header.humanize}:\n" : ''
42
+ b += send("self_#{header}") + "\n"
43
+ definition.alternatives.each do |alternative|
44
+ b += self.class.new(alternative).section(header, false)
45
+ end
46
+ b
47
+ end
48
+
49
+ def self_options
50
+ definition.options.map { |option| IDENT + option_definition(option) }.join("\n")
51
+ end
52
+
53
+ def self_usage
54
+ IDENT + self_usage_arguments.join(SEP)
55
+ end
56
+
57
+ def self_usage_arguments
58
+ [::EacRubyUtils::Console::DocoptRunner::PROGRAM_MACRO] +
59
+ definition.options_argument.if_present([]) { |_v| ['[options]'] } +
60
+ self_usage_arguments_options +
61
+ self_usage_arguments_positional
62
+ end
63
+
64
+ def self_usage_arguments_options
65
+ definition.options.select(&:show_on_usage?).map { |option| option_argument(option) }
66
+ end
67
+
68
+ def self_usage_arguments_positional
69
+ definition.positional.map { |p| positional_argument(p) }
70
+ end
71
+
72
+ def to_s
73
+ "#{definition.description}\n\n#{section('usage')}\n#{section('options')}\n"
74
+ end
75
+ end
76
+ end
77
+ end
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/docopt/doc_builder'
4
+ require 'eac_ruby_utils/console/docopt_runner'
5
+
6
+ module EacCli
7
+ module Docopt
8
+ module RunnerExtension
9
+ extend ::ActiveSupport::Concern
10
+
11
+ included do
12
+ prepend InstanceMethods
13
+ end
14
+
15
+ class << self
16
+ def check(klass)
17
+ return unless klass < ::EacRubyUtils::Console::DocoptRunner
18
+
19
+ ::EacCli::Runner.alias_runner_class_methods(klass, '', 'eac_cli')
20
+ ::EacCli::Runner.alias_runner_class_methods(klass, 'original', '')
21
+
22
+ klass.include(self)
23
+ end
24
+ end
25
+
26
+ module InstanceMethods
27
+ def doc
28
+ ::EacCli::Docopt::DocBuilder.new(self.class.runner_definition).to_s
29
+ end
30
+
31
+ def docopt_options
32
+ super.merge(options_first: self.class.runner_definition.options_first?)
33
+ end
34
+ end
35
+
36
+ def extra_available_subcommands
37
+ self.class.constants
38
+ .map { |name| self.class.const_get(name) }
39
+ .select { |c| c.instance_of? Class }
40
+ .select { |c| c.included_modules.include?(::EacCli::Runner) }
41
+ .map { |c| c.name.demodulize.underscore.dasherize }
42
+ end
43
+ end
44
+ end
45
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module EacCli
6
+ class Parser
7
+ require_sub __FILE__
8
+ common_constructor :definition
9
+
10
+ def parse(argv)
11
+ ::EacCli::Parser::ParseResult.new(definition, argv).result
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,56 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+ require 'eac_ruby_utils/struct'
5
+
6
+ module EacCli
7
+ class Parser
8
+ class Collector
9
+ class << self
10
+ def to_data(definition)
11
+ collector = new(definition)
12
+ yield(collector)
13
+ collector.to_data
14
+ end
15
+ end
16
+
17
+ common_constructor :definition do
18
+ default_values
19
+ end
20
+
21
+ # @return [OpenStruct]
22
+ def to_data
23
+ ::EacRubyUtils::Struct.new(data.transform_keys(&:identifier))
24
+ end
25
+
26
+ def collect(option, value)
27
+ if data[option].is_a?(::Array)
28
+ data[option] << value
29
+ else
30
+ data[option] = value
31
+ end
32
+ end
33
+
34
+ private
35
+
36
+ def data
37
+ @data ||= {}
38
+ end
39
+
40
+ def default_values
41
+ definition.options.each { |option| data[option] = option_default_value(option) }
42
+ definition.positional.each do |positional|
43
+ data[positional] = positional_default_value(positional)
44
+ end
45
+ end
46
+
47
+ def option_default_value(option)
48
+ option.argument? ? nil : false
49
+ end
50
+
51
+ def positional_default_value(positional)
52
+ positional.repeat? ? [] : nil
53
+ end
54
+ end
55
+ end
56
+ end