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
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EacCli
4
+ class DocoptRunner
5
+ # Provides the method context which search and call a method in self and ancestor objects.
6
+ module Context
7
+ def context(method)
8
+ current = self
9
+ while current
10
+ return current.send(method) if current.respond_to?(method)
11
+
12
+ current = current.respond_to?(:parent) ? current.parent : nil
13
+ end
14
+ raise "Context method \"#{method}\" not found for #{self.class}"
15
+ end
16
+ end
17
+ end
18
+ end
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'eac_ruby_utils/core_ext'
4
- require 'eac_cli/patches/module/speaker'
5
4
 
6
5
  module EacCli
7
6
  class OldConfigs
@@ -70,8 +70,8 @@ module EacCli
70
70
  end
71
71
 
72
72
  def entry_value_from_input(entry_key, options)
73
- entry_value = request_input("Value for entry \"#{entry_key}\"",
74
- options.request_input_options)
73
+ entry_value = input("Value for entry \"#{entry_key}\"",
74
+ options.request_input_options)
75
75
  warn('Entered value is blank') if entry_value.blank?
76
76
  entry_value
77
77
  end
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/config'
4
+ require 'eac_ruby_utils/core_ext'
5
+
6
+ module EacCli
7
+ class OldConfigsBridge < ::EacCli::Config
8
+ ENTRY_KEY = 'core.store_passwords'
9
+
10
+ class << self
11
+ def new_configs_path(configs_key, options)
12
+ options[:storage_path] || ::File.join(ENV['HOME'], '.config', configs_key, 'settings.yml')
13
+ end
14
+ end
15
+
16
+ def initialize(configs_key, options = {})
17
+ options.assert_argument(::Hash, 'options')
18
+ envvar_node = ::EacConfig::EnvvarsNode.new
19
+ file_node = ::EacConfig::YamlFileNode.new(self.class.new_configs_path(configs_key, options))
20
+ envvar_node.load_path.push(file_node.url)
21
+ envvar_node.write_node = file_node
22
+ super(envvar_node)
23
+ end
24
+
25
+ def read_entry(entry_key, options = {})
26
+ entry(entry_key, options).value
27
+ end
28
+
29
+ def read_password(entry_key, options = {})
30
+ entry(entry_key, options.merge(noecho: true, store: store_passwords?)).value
31
+ end
32
+
33
+ def store_passwords?
34
+ read_entry(ENTRY_KEY, bool: true)
35
+ end
36
+ end
37
+ end
@@ -1,5 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'eac_cli/speaker'
4
+ require 'eac_ruby_utils/speaker'
5
+
3
6
  module EacCli
4
7
  module Runner
5
8
  module AfterClassMethods
@@ -10,9 +13,11 @@ module EacCli
10
13
  end
11
14
 
12
15
  def run(*runner_context_args)
13
- r = create(*runner_context_args)
14
- r.run_run
15
- r
16
+ on_asserted_speaker do
17
+ r = create(*runner_context_args)
18
+ r.run_run
19
+ r
20
+ end
16
21
  end
17
22
 
18
23
  def runner_definition(&block)
@@ -24,6 +29,18 @@ module EacCli
24
29
  def super_runner_definition
25
30
  superclass.try(:runner_definition).if_present(&:dup) || ::EacCli::Definition.new
26
31
  end
32
+
33
+ private
34
+
35
+ def on_asserted_speaker
36
+ if ::EacRubyUtils::Speaker.context.optional_current
37
+ yield
38
+ else
39
+ ::EacRubyUtils::Speaker.context.on(::EacCli::Speaker.new) do
40
+ yield
41
+ end
42
+ end
43
+ end
27
44
  end
28
45
  end
29
46
  end
@@ -10,8 +10,8 @@ module EacCli
10
10
  include ::EacCli::Runner
11
11
 
12
12
  runner_definition.alt do
13
- options_argument false
14
13
  bool_opt '-h', '--help', 'Show help.', usage: true
14
+ pos_arg :any_arg_with_help, repeat: true, optional: true, visible: false
15
15
  end
16
16
 
17
17
  set_callback :run, :before do
@@ -20,7 +20,7 @@ module EacCli
20
20
  end
21
21
 
22
22
  def help_run
23
- return unless parsed.help?
23
+ return unless show_help?
24
24
 
25
25
  puts help_text
26
26
  raise ::EacCli::Runner::Exit
@@ -31,6 +31,10 @@ module EacCli
31
31
  r += help_extra_text if respond_to?(:help_extra_text)
32
32
  r
33
33
  end
34
+
35
+ def show_help?
36
+ parsed.help? && !if_respond(:run_subcommand?, false)
37
+ end
34
38
  end
35
39
  end
36
40
  end
@@ -60,7 +60,7 @@ module EacCli
60
60
  end
61
61
 
62
62
  def run_with_subcommand
63
- if subcommand_name
63
+ if run_subcommand?
64
64
  if subcommand_runner.respond_to?(:run_run)
65
65
  subcommand_runner.run_run
66
66
  else
@@ -79,6 +79,10 @@ module EacCli
79
79
  "Method #{__method__} should be overrided in #{self.class.name}"
80
80
  end
81
81
 
82
+ def run_subcommand?
83
+ subcommand_name.present?
84
+ end
85
+
82
86
  def subcommands?
83
87
  self.class.runner_definition.subcommands?
84
88
  end
@@ -1,26 +1,26 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'colorize'
4
- require 'io/console'
5
- require 'eac_ruby_utils/patches/hash/options_consumer'
6
- require 'eac_ruby_utils/require_sub'
7
- ::EacRubyUtils.require_sub __FILE__
4
+ require 'eac_ruby_utils/core_ext'
5
+ require 'eac_ruby_utils/speaker/receiver'
8
6
 
9
7
  module EacCli
10
- # https://github.com/fazibear/colorize
11
- module Speaker
12
- def on_speaker_node(&block)
13
- ::EacCli::Speaker.on_node(&block)
8
+ class Speaker
9
+ require_sub __FILE__, include_modules: true
10
+ include ::EacRubyUtils::Speaker::Receiver
11
+
12
+ common_constructor :options, default: [{}] do
13
+ self.options = self.class.lists.option.hash_keys_validate!(options)
14
14
  end
15
15
 
16
16
  def puts(string = '')
17
17
  string.to_s.each_line do |line|
18
- current_node.stderr.puts(current_node.stderr_line_prefix.to_s + line)
18
+ err_out.puts(err_line_prefix.to_s + line)
19
19
  end
20
20
  end
21
21
 
22
22
  def out(string = '')
23
- current_node.stdout.write(string.to_s)
23
+ out_out.write(string.to_s)
24
24
  end
25
25
 
26
26
  def fatal_error(string)
@@ -52,7 +52,7 @@ module EacCli
52
52
  # +bool+ ([Boolean], default: +false+): requires a answer "yes" or "no".
53
53
  # +list+ ([Hash] or [Array], default: +nil+): requires a answer from a list.
54
54
  # +noecho+ ([Boolean], default: +false+): does not output answer.
55
- def request_input(question, options = {})
55
+ def input(question, options = {})
56
56
  bool, list, noecho = options.to_options_consumer.consume_all(:bool, :list, :noecho)
57
57
  if list
58
58
  request_from_list(question, list, noecho)
@@ -110,22 +110,18 @@ module EacCli
110
110
  end
111
111
 
112
112
  def request_string(question, noecho)
113
- current_node.stderr.write "#{question}: ".to_s.yellow
113
+ err_out.write "#{question}: ".to_s.yellow
114
114
  noecho ? request_string_noecho : request_string_echo
115
115
  end
116
116
 
117
117
  def request_string_noecho
118
- r = current_node.stdin.noecho(&:gets).chomp.strip
119
- current_node.stderr.write("\n")
118
+ r = in_in.noecho(&:gets).chomp.strip
119
+ err_out.write("\n")
120
120
  r
121
121
  end
122
122
 
123
123
  def request_string_echo
124
- current_node.stdin.gets.chomp.strip
125
- end
126
-
127
- def current_node
128
- ::EacCli::Speaker.current_node
124
+ in_in.gets.chomp.strip
129
125
  end
130
126
  end
131
127
  end
@@ -4,7 +4,7 @@ require 'eac_ruby_utils/by_reference'
4
4
 
5
5
  module EacCli
6
6
  # https://github.com/fazibear/colorize
7
- module Speaker
7
+ class Speaker
8
8
  STDERR = ::EacRubyUtils::ByReference.new { $stderr }
9
9
  STDIN = ::EacRubyUtils::ByReference.new { $stdin }
10
10
  STDOUT = ::EacRubyUtils::ByReference.new { $stdout }
@@ -4,7 +4,7 @@ require 'active_support/hash_with_indifferent_access'
4
4
  require 'ostruct'
5
5
 
6
6
  module EacCli
7
- module Speaker
7
+ class Speaker
8
8
  class List
9
9
  class << self
10
10
  def build(list)
@@ -0,0 +1,38 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module EacCli
6
+ class Speaker
7
+ module Options
8
+ common_concern do
9
+ enable_listable
10
+ lists.add_symbol :option, :out_out, :err_out, :in_in, :parent, :err_line_prefix
11
+ end
12
+
13
+ def err_out
14
+ option(OPTION_ERR_OUT, ::EacCli::Speaker::STDERR)
15
+ end
16
+
17
+ def out_out
18
+ option(OPTION_OUT_OUT, ::EacCli::Speaker::STDOUT)
19
+ end
20
+
21
+ def in_in
22
+ option(OPTION_IN_IN, ::EacCli::Speaker::STDIN)
23
+ end
24
+
25
+ def err_line_prefix
26
+ option(OPTION_ERR_LINE_PREFIX, '')
27
+ end
28
+
29
+ def parent
30
+ options[OPTION_PARENT]
31
+ end
32
+
33
+ def option(key, default)
34
+ options[key] || parent.if_present(default) { |v| v.send(__METHOD__) }
35
+ end
36
+ end
37
+ end
38
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacCli
4
- VERSION = '0.17.0'
4
+ VERSION = '0.20.2'
5
5
  end
@@ -3,23 +3,19 @@
3
3
  require 'eac_cli/speaker'
4
4
 
5
5
  RSpec.describe ::EacCli::Speaker do
6
- let(:instance) do
7
- r = ::Object.new
8
- r.extend(described_class)
9
- r
10
- end
6
+ let(:instance) { described_class.new }
11
7
 
12
- describe '#request_input' do
8
+ describe '#input' do
13
9
  it 'recover value from hash list' do
14
10
  allow(instance).to receive(:request_string).and_return('opt1')
15
11
  list = { opt1: 'value1', opt2: 'value2' }
16
- expect(instance.request_input('Question', list: list)).to eq('value1')
12
+ expect(instance.input('Question', list: list)).to eq('value1')
17
13
  end
18
14
 
19
15
  it 'recover value from array list' do
20
16
  allow(instance).to receive(:request_string).and_return('OPT1')
21
17
  list = %w[opt1 opt2]
22
- expect(instance.request_input('Question', list: list)).to eq('opt1')
18
+ expect(instance.input('Question', list: list)).to eq('opt1')
23
19
  end
24
20
 
25
21
  {
@@ -28,7 +24,7 @@ RSpec.describe ::EacCli::Speaker do
28
24
  context "when bool: true and input is \"#{input}\"" do
29
25
  it "return #{expected}" do
30
26
  allow(instance).to receive(:request_string).and_return(input)
31
- expect(instance.request_input('Question', bool: true)).to eq(expected)
27
+ expect(instance.input('Question', bool: true)).to eq(expected)
32
28
  end
33
29
  end
34
30
  end
@@ -22,7 +22,13 @@ module EacConfig
22
22
  node_entry.if_present(&:value)
23
23
  end
24
24
 
25
- delegate :value=, to: :root_node
25
+ def value=(a_value)
26
+ write_node.self_entry(path).value = a_value
27
+ end
28
+
29
+ def write_node
30
+ root_node.write_node || root_node
31
+ end
26
32
 
27
33
  private
28
34
 
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'addressable'
4
+ require 'eac_config/node'
5
+ require 'eac_ruby_utils/core_ext'
6
+
7
+ module EacConfig
8
+ # A node that read/write entries from environment variables.
9
+ class EnvvarsNode
10
+ require_sub __FILE__
11
+ include ::EacConfig::Node
12
+
13
+ URI = ::Addressable::URI.parse('self://envvars')
14
+
15
+ class << self
16
+ def from_uri(uri)
17
+ return new if uri == URI
18
+ end
19
+ end
20
+
21
+ def url
22
+ URI
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,54 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_config/entry_path'
4
+ require 'eac_config/node_entry'
5
+ require 'eac_ruby_utils/blank_not_blank'
6
+ require 'eac_ruby_utils/core_ext'
7
+ require 'eac_ruby_utils/yaml'
8
+
9
+ module EacConfig
10
+ class EnvvarsNode
11
+ class Entry < ::EacConfig::NodeEntry
12
+ class << self
13
+ def entry_path_to_envvar_name(path)
14
+ ::EacConfig::EntryPath.assert(path).parts.join('_').gsub(/[^a-z0-9_]/i, '')
15
+ .gsub(/\A_+/, '').gsub(/_+\z/, '').gsub(/_{2,}/, '_').upcase
16
+ end
17
+
18
+ def from_value(string)
19
+ return nil if string.nil?
20
+ return ::EacRubyUtils::Yaml.load(string) if string.start_with?('---')
21
+
22
+ string
23
+ end
24
+
25
+ def to_value(object)
26
+ return nil if object.nil?
27
+ return object if object.is_a?(String)
28
+
29
+ ::EacRubyUtils::Yaml.dump(object)
30
+ end
31
+ end
32
+
33
+ enable_simple_cache
34
+
35
+ def found?
36
+ ENV.key?(envvar_name)
37
+ end
38
+
39
+ def value
40
+ self.class.from_value(ENV[envvar_name])
41
+ end
42
+
43
+ def value=(a_value)
44
+ ENV[envvar_name] = self.class.to_value(a_value)
45
+ end
46
+
47
+ private
48
+
49
+ def envvar_name_uncached
50
+ self.class.entry_path_to_envvar_name(path)
51
+ end
52
+ end
53
+ end
54
+ end