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.
- checksums.yaml +4 -4
- data/lib/avm/app_src.rb +8 -7
- data/lib/avm/docker/image.rb +7 -23
- data/lib/avm/docker/registry.rb +2 -11
- data/lib/avm/docker/runner.rb +32 -6
- data/lib/avm/eac_rails_base1/runner/bundle.rb +1 -2
- data/lib/avm/eac_redmine_base0/docker_image.rb +52 -0
- data/lib/avm/eac_redmine_base0/instance.rb +2 -2
- data/lib/avm/git/auto_commit/rules/manual.rb +1 -1
- data/lib/avm/git/issue/complete.rb +4 -8
- data/lib/avm/git/issue/complete/commits.rb +42 -0
- data/lib/avm/git/issue/complete/git_subrepos.rb +23 -0
- data/lib/avm/git/issue/complete/local_branch.rb +54 -0
- data/lib/avm/git/issue/complete/local_tag.rb +39 -0
- data/lib/avm/git/issue/complete/push.rb +54 -0
- data/lib/avm/git/issue/complete/remote.rb +33 -0
- data/lib/avm/git/issue/complete/test.rb +45 -0
- data/lib/avm/git/issue/complete/tracker.rb +28 -0
- data/lib/avm/git/issue/complete/validations.rb +53 -0
- data/lib/avm/git/issue/complete/working_tree.rb +19 -0
- data/lib/avm/git/revision_test.rb +9 -6
- data/lib/avm/instances/base/dockerizable.rb +1 -0
- data/lib/avm/instances/base/entry_keys.rb +6 -1
- data/lib/avm/instances/docker_image.rb +15 -0
- data/lib/avm/instances/entries.rb +0 -1
- data/lib/avm/instances/entry.rb +3 -2
- data/lib/avm/instances/entry_keys.rb +3 -0
- data/lib/avm/launcher/context.rb +1 -1
- data/lib/avm/launcher/git/publish_base.rb +3 -1
- data/lib/avm/launcher/git/warp_base.rb +11 -0
- data/lib/avm/launcher/instances/base.rb +2 -1
- data/lib/avm/launcher/instances/error.rb +1 -3
- data/lib/avm/launcher/ruby/gem/build.rb +1 -1
- data/lib/avm/projects/stereotype/job_comparator.rb +32 -0
- data/lib/avm/projects/stereotypes/git/update.rb +1 -2
- data/lib/avm/projects/stereotypes/ruby_gem/publish.rb +1 -1
- data/lib/avm/projects/stereotypes/ruby_gem/update.rb +4 -0
- data/lib/avm/self.rb +9 -0
- data/lib/avm/tools/runner.rb +4 -0
- data/lib/avm/tools/runner/app_src/version_bump.rb +1 -1
- data/lib/avm/tools/runner/config.rb +17 -0
- data/lib/avm/tools/runner/config/load_path.rb +48 -0
- data/lib/avm/tools/runner/eac_redmine_base0/dev_docker.rb +17 -0
- data/lib/avm/tools/runner/eac_redmine_base0/docker.rb +3 -0
- data/lib/avm/tools/runner/git/deploy.rb +2 -1
- data/lib/avm/tools/runner/git/issue.rb +4 -75
- data/lib/avm/tools/runner/git/issue/complete.rb +79 -0
- data/lib/avm/tools/runner/git/issue/deliver.rb +35 -0
- data/lib/avm/tools/runner/git/organize.rb +1 -1
- data/lib/avm/tools/version.rb +1 -1
- data/template/avm/eac_redmine_base0/docker_image/Dockerfile.template +47 -0
- data/template/avm/eac_redmine_base0/docker_image/apache_http_virtualhost.conf.template +10 -0
- data/template/avm/eac_redmine_base0/docker_image/apache_https_virtualhost.conf.template +16 -0
- data/template/avm/eac_redmine_base0/docker_image/install_settings.sh.template +29 -0
- data/template/avm/eac_redmine_base0/docker_image/start.sh.template +25 -0
- data/template/avm/eac_ubuntu_base0/docker_image/Dockerfile +1 -1
- data/vendor/avm-apps/avm-apps.gemspec +1 -1
- data/vendor/avm-apps/lib/avm/apps/config.rb +15 -0
- data/vendor/avm-apps/lib/avm/apps/jobs/base.rb +1 -1
- data/vendor/avm-apps/lib/avm/apps/version.rb +1 -1
- data/vendor/eac_cli/eac_cli.gemspec +1 -1
- data/vendor/eac_cli/lib/eac_cli/config.rb +19 -0
- data/vendor/eac_cli/lib/eac_cli/config/entry.rb +48 -0
- data/vendor/eac_cli/lib/eac_cli/config/entry/options.rb +57 -0
- data/vendor/eac_cli/lib/eac_cli/config/entry/undefined.rb +26 -0
- data/vendor/eac_cli/lib/eac_cli/definition/positional_argument.rb +6 -1
- data/vendor/eac_cli/lib/eac_cli/docopt/doc_builder/alternative.rb +3 -1
- data/vendor/eac_cli/lib/eac_cli/docopt_runner.rb +4 -8
- data/vendor/eac_cli/lib/eac_cli/docopt_runner/{_class_methods.rb → class_methods.rb} +5 -3
- data/vendor/eac_cli/lib/eac_cli/docopt_runner/context.rb +18 -0
- data/vendor/eac_cli/lib/eac_cli/old_configs.rb +0 -1
- data/vendor/eac_cli/lib/eac_cli/old_configs/entry_reader.rb +2 -2
- data/vendor/eac_cli/lib/eac_cli/old_configs_bridge.rb +37 -0
- data/vendor/eac_cli/lib/eac_cli/runner/after_class_methods.rb +20 -3
- data/vendor/eac_cli/lib/eac_cli/runner_with/help.rb +6 -2
- data/vendor/eac_cli/lib/eac_cli/runner_with/subcommands.rb +5 -1
- data/vendor/eac_cli/lib/eac_cli/speaker.rb +15 -19
- data/vendor/eac_cli/lib/eac_cli/speaker/_constants.rb +1 -1
- data/vendor/eac_cli/lib/eac_cli/speaker/list.rb +1 -1
- data/vendor/eac_cli/lib/eac_cli/speaker/options.rb +38 -0
- data/vendor/eac_cli/lib/eac_cli/version.rb +1 -1
- data/vendor/eac_cli/spec/lib/eac_cli/speaker_spec.rb +5 -9
- data/vendor/eac_config/lib/eac_config/entry.rb +7 -1
- data/vendor/eac_config/lib/eac_config/envvars_node.rb +25 -0
- data/vendor/eac_config/lib/eac_config/envvars_node/entry.rb +54 -0
- data/vendor/eac_config/lib/eac_config/load_path.rb +5 -13
- data/vendor/eac_config/lib/eac_config/node.rb +9 -2
- data/vendor/eac_config/lib/eac_config/node_entry.rb +2 -23
- data/vendor/eac_config/lib/eac_config/node_uri.rb +38 -0
- data/vendor/eac_config/lib/eac_config/old_configs.rb +1 -0
- data/vendor/eac_config/lib/eac_config/version.rb +1 -1
- data/vendor/eac_config/lib/eac_config/yaml_file_node.rb +9 -2
- data/vendor/eac_config/lib/eac_config/yaml_file_node/entry.rb +37 -0
- data/vendor/eac_config/spec/lib/eac_config/envvars_node/entry_spec.rb +14 -0
- data/vendor/eac_config/spec/lib/eac_config/envvars_node_spec.rb +40 -0
- data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1.yaml +3 -1
- data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_2.yaml +2 -1
- data/vendor/eac_git/lib/eac_git/executables.rb +4 -0
- data/vendor/eac_git/lib/eac_git/local.rb +5 -1
- data/vendor/eac_git/lib/eac_git/local/commit/archive.rb +19 -0
- data/vendor/eac_git/lib/eac_git/local/subrepo.rb +2 -1
- data/vendor/eac_git/lib/eac_git/version.rb +1 -1
- data/vendor/eac_ruby_base0/eac_ruby_base0.gemspec +2 -2
- data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application.rb +8 -11
- data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application_xdg.rb +32 -0
- data/vendor/eac_ruby_base0/lib/eac_ruby_base0/jobs_runner.rb +2 -2
- data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner.rb +13 -6
- data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/confirmation.rb +8 -1
- data/vendor/eac_ruby_base0/lib/eac_ruby_base0/version.rb +1 -1
- data/vendor/eac_ruby_gems_utils/eac_ruby_gems_utils.gemspec +1 -1
- data/vendor/eac_ruby_gems_utils/lib/eac_ruby_gems_utils/tests/multiple/decorated_gem.rb +2 -0
- data/vendor/eac_ruby_gems_utils/lib/eac_ruby_gems_utils/version.rb +1 -1
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/context.rb +31 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/contextualizable.rb +12 -7
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/context.rb +11 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/speaker.rb +9 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/simple_cache.rb +10 -2
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker.rb +16 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/receiver.rb +57 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/sender.rb +32 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
- data/vendor/{eac_cli/spec/lib → eac_ruby_utils/spec/lib/eac_ruby_utils/patches}/module/speaker_spec.rb +2 -2
- data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/simple_cache_spec.rb +18 -0
- metadata +49 -19
- data/lib/avm/configs.rb +0 -22
- data/lib/avm/git/issue/complete/_commits.rb +0 -40
- data/lib/avm/git/issue/complete/_git_subrepos.rb +0 -21
- data/lib/avm/git/issue/complete/_local_branch.rb +0 -52
- data/lib/avm/git/issue/complete/_local_tag.rb +0 -37
- data/lib/avm/git/issue/complete/_push.rb +0 -52
- data/lib/avm/git/issue/complete/_remote.rb +0 -31
- data/lib/avm/git/issue/complete/_test.rb +0 -43
- data/lib/avm/git/issue/complete/_tracker.rb +0 -26
- data/lib/avm/git/issue/complete/_validations.rb +0 -51
- data/lib/avm/git/issue/complete/_working_tree.rb +0 -17
- data/vendor/eac_cli/lib/eac_cli/patches/module.rb +0 -4
- data/vendor/eac_cli/lib/eac_cli/patches/module/speaker.rb +0 -10
- data/vendor/eac_cli/lib/eac_cli/speaker/_class_methods.rb +0 -37
- data/vendor/eac_cli/lib/eac_cli/speaker/node.rb +0 -24
@@ -6,17 +6,6 @@ require 'eac_ruby_utils/core_ext'
|
|
6
6
|
module EacConfig
|
7
7
|
class LoadPath
|
8
8
|
ENTRY_PATH = ::EacConfig::EntryPath.assert(%w[load_path])
|
9
|
-
PATH_SEPARATOR = ':'
|
10
|
-
|
11
|
-
class << self
|
12
|
-
def paths_to_string(paths)
|
13
|
-
paths.map(&:to_s).join(PATH_SEPARATOR)
|
14
|
-
end
|
15
|
-
|
16
|
-
def string_to_paths(string)
|
17
|
-
string.to_s.split(PATH_SEPARATOR)
|
18
|
-
end
|
19
|
-
end
|
20
9
|
|
21
10
|
common_constructor :node
|
22
11
|
|
@@ -26,11 +15,14 @@ module EacConfig
|
|
26
15
|
|
27
16
|
# @return [Array<String>]
|
28
17
|
def paths
|
29
|
-
|
18
|
+
r = entry.value
|
19
|
+
r.is_a?(::Array) ? r : []
|
30
20
|
end
|
31
21
|
|
32
22
|
def push(new_path)
|
33
|
-
entry.value =
|
23
|
+
entry.value = paths + [new_path]
|
34
24
|
end
|
25
|
+
|
26
|
+
delegate :to_s, to: :paths
|
35
27
|
end
|
36
28
|
end
|
@@ -5,10 +5,13 @@ require 'eac_config/entry_path'
|
|
5
5
|
require 'eac_config/load_path'
|
6
6
|
require 'eac_config/load_nodes_search'
|
7
7
|
require 'eac_config/node_entry'
|
8
|
+
require 'eac_config/node_uri'
|
8
9
|
require 'eac_ruby_utils/core_ext'
|
9
10
|
|
10
11
|
module EacConfig
|
11
12
|
module Node
|
13
|
+
attr_accessor :write_node
|
14
|
+
|
12
15
|
common_concern do
|
13
16
|
enable_abstract_methods
|
14
17
|
include ::Comparable
|
@@ -31,7 +34,11 @@ module EacConfig
|
|
31
34
|
# Return a entry which search values only in the self node.
|
32
35
|
# @return [EacConfig::NodeEntry]
|
33
36
|
def self_entry(path)
|
34
|
-
|
37
|
+
self_entry_class.new(self, path)
|
38
|
+
end
|
39
|
+
|
40
|
+
def self_entry_class
|
41
|
+
self.class.const_get('Entry')
|
35
42
|
end
|
36
43
|
|
37
44
|
# @return [Array<EacConfig::Node>]
|
@@ -47,7 +54,7 @@ module EacConfig
|
|
47
54
|
private
|
48
55
|
|
49
56
|
def load_node(node_path)
|
50
|
-
|
57
|
+
::EacConfig::NodeUri.new(node_path, url).instanciate
|
51
58
|
end
|
52
59
|
end
|
53
60
|
end
|
@@ -7,33 +7,12 @@ require 'eac_ruby_utils/core_ext'
|
|
7
7
|
module EacConfig
|
8
8
|
# A entry which search values only in the source node.
|
9
9
|
class NodeEntry
|
10
|
+
enable_abstract_methods
|
10
11
|
enable_simple_cache
|
11
12
|
common_constructor :node, :path do
|
12
13
|
self.path = ::EacConfig::EntryPath.assert(path)
|
13
14
|
end
|
14
15
|
|
15
|
-
|
16
|
-
paths_hash.key?(to_paths_hash_key)
|
17
|
-
end
|
18
|
-
|
19
|
-
def value
|
20
|
-
paths_hash[to_paths_hash_key]
|
21
|
-
end
|
22
|
-
|
23
|
-
def value=(a_value)
|
24
|
-
paths_hash[to_paths_hash_key] = a_value
|
25
|
-
node.persist_data(paths_hash.root.to_h)
|
26
|
-
end
|
27
|
-
|
28
|
-
private
|
29
|
-
|
30
|
-
# @return [EacConfig::PathsHash]
|
31
|
-
def paths_hash_uncached
|
32
|
-
::EacConfig::PathsHash.new(node.data)
|
33
|
-
end
|
34
|
-
|
35
|
-
def to_paths_hash_key
|
36
|
-
path.parts.join('.')
|
37
|
-
end
|
16
|
+
abstract_methods :found?, :value, :value=
|
38
17
|
end
|
39
18
|
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module EacConfig
|
4
|
+
class NodeUri
|
5
|
+
enable_simple_cache
|
6
|
+
common_constructor :source, :loader_uri, default: [nil]
|
7
|
+
|
8
|
+
def available_node_classes
|
9
|
+
require 'eac_config/envvars_node'
|
10
|
+
require 'eac_config/yaml_file_node'
|
11
|
+
[::EacConfig::EnvvarsNode, ::EacConfig::YamlFileNode]
|
12
|
+
end
|
13
|
+
|
14
|
+
def instanciate
|
15
|
+
available_node_classes.lazy.map { |k| k.from_uri(self) }.find(&:present?) ||
|
16
|
+
raise("No class mapped for \"#{to_addressable}\"")
|
17
|
+
end
|
18
|
+
|
19
|
+
delegate :to_s, to: :to_addressable
|
20
|
+
|
21
|
+
private
|
22
|
+
|
23
|
+
def to_addressable_uncached
|
24
|
+
r = ::Addressable::URI.parse(source)
|
25
|
+
path = r.path.to_pathname
|
26
|
+
r.path = path.expand_path(loader_uri_path_directory).to_path if path.relative?
|
27
|
+
r.scheme = 'file' if r.scheme.blank?
|
28
|
+
r
|
29
|
+
end
|
30
|
+
|
31
|
+
def loader_uri_path_directory
|
32
|
+
r = loader_uri.path
|
33
|
+
raise ".loader_uri \"#{loader_uri}\" has no path (Source: \"#{source}\")" if r.blank?
|
34
|
+
|
35
|
+
r.to_pathname.parent
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -7,20 +7,27 @@ require 'eac_ruby_utils/yaml'
|
|
7
7
|
|
8
8
|
module EacConfig
|
9
9
|
class YamlFileNode
|
10
|
+
require_sub __FILE__
|
10
11
|
include ::EacConfig::Node
|
11
12
|
|
13
|
+
class << self
|
14
|
+
def from_uri(uri)
|
15
|
+
return new(uri.to_addressable.path) if uri.to_addressable.scheme == 'file'
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
12
19
|
common_constructor :path do
|
13
20
|
self.path = path.to_pathname
|
14
21
|
end
|
15
22
|
|
16
23
|
def data
|
17
|
-
@data ||= ::EacRubyUtils::Yaml.load_file(assert_path)
|
24
|
+
@data ||= ::EacRubyUtils::Yaml.load_file(assert_path) || {}
|
18
25
|
end
|
19
26
|
|
20
27
|
def persist_data(new_data)
|
21
28
|
path.parent.mkpath
|
22
29
|
::EacRubyUtils::Yaml.dump_file(path, new_data)
|
23
|
-
|
30
|
+
@data = nil
|
24
31
|
end
|
25
32
|
|
26
33
|
def url
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_config/entry_path'
|
4
|
+
require 'eac_config/node_entry'
|
5
|
+
require 'eac_ruby_utils/core_ext'
|
6
|
+
|
7
|
+
module EacConfig
|
8
|
+
class YamlFileNode
|
9
|
+
class Entry < ::EacConfig::NodeEntry
|
10
|
+
enable_simple_cache
|
11
|
+
|
12
|
+
def found?
|
13
|
+
paths_hash.key?(to_paths_hash_key)
|
14
|
+
end
|
15
|
+
|
16
|
+
def value
|
17
|
+
paths_hash[to_paths_hash_key]
|
18
|
+
end
|
19
|
+
|
20
|
+
def value=(a_value)
|
21
|
+
paths_hash[to_paths_hash_key] = a_value
|
22
|
+
node.persist_data(paths_hash.root.to_h)
|
23
|
+
end
|
24
|
+
|
25
|
+
private
|
26
|
+
|
27
|
+
# @return [EacConfig::PathsHash]
|
28
|
+
def paths_hash_uncached
|
29
|
+
::EacConfig::PathsHash.new(node.data)
|
30
|
+
end
|
31
|
+
|
32
|
+
def to_paths_hash_key
|
33
|
+
path.parts.join('.')
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_config/envvars_node/entry'
|
4
|
+
|
5
|
+
RSpec.describe ::EacConfig::EnvvarsNode::Entry do
|
6
|
+
describe '#entry_key_to_envvar_name' do
|
7
|
+
{
|
8
|
+
'a.entry.value' => 'A_ENTRY_VALUE',
|
9
|
+
'appli-cation_0.var_one' => 'APPLICATION_0_VAR_ONE'
|
10
|
+
}.each do |input, expected_result|
|
11
|
+
it { expect(described_class.entry_path_to_envvar_name(input)).to eq(expected_result) }
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_config/envvars_node'
|
4
|
+
|
5
|
+
RSpec.describe ::EacConfig::EnvvarsNode do
|
6
|
+
let(:instance) { described_class.new }
|
7
|
+
|
8
|
+
before do
|
9
|
+
ENV['COMMON'] = 'AAA'
|
10
|
+
ENV['BLANK'] = ''
|
11
|
+
ENV.delete('NO_EXIST')
|
12
|
+
end
|
13
|
+
|
14
|
+
context 'with common entry' do
|
15
|
+
let(:entry) { instance.entry('common') }
|
16
|
+
|
17
|
+
it { expect(entry).to be_a(::EacConfig::Entry) }
|
18
|
+
it { expect(entry.value).to eq('AAA') }
|
19
|
+
it { expect(entry.found_node).to eq(instance) }
|
20
|
+
it { expect(entry).to be_found }
|
21
|
+
end
|
22
|
+
|
23
|
+
context 'with blank entry' do
|
24
|
+
let(:entry) { instance.entry('blank') }
|
25
|
+
|
26
|
+
it { expect(entry).to be_a(::EacConfig::Entry) }
|
27
|
+
it { expect(entry.value).to eq('') }
|
28
|
+
it { expect(entry.found_node).to eq(instance) }
|
29
|
+
it { expect(entry).to be_found }
|
30
|
+
end
|
31
|
+
|
32
|
+
context 'with not existing entry' do
|
33
|
+
let(:entry) { instance.entry('no.exist') }
|
34
|
+
|
35
|
+
it { expect(entry).to be_a(::EacConfig::Entry) }
|
36
|
+
it { expect(entry.value).to eq(nil) }
|
37
|
+
it { expect(entry.found_node).to eq(nil) }
|
38
|
+
it { expect(entry).not_to be_found }
|
39
|
+
end
|
40
|
+
end
|
@@ -39,13 +39,17 @@ module EacGit
|
|
39
39
|
::EacGit::Executables.git.command('-C', root_path.to_path, *args)
|
40
40
|
end
|
41
41
|
|
42
|
+
def raise_error(message)
|
43
|
+
raise "#{root_path}: #{message}"
|
44
|
+
end
|
45
|
+
|
42
46
|
def rev_parse(ref, required = false)
|
43
47
|
r = command('rev-parse', ref).execute!(exit_outputs: { 128 => nil, 32_768 => nil })
|
44
48
|
r.strip! if r.is_a?(String)
|
45
49
|
return r if r.present?
|
46
50
|
return nil unless required
|
47
51
|
|
48
|
-
|
52
|
+
raise_error "Reference \"#{ref}\" not found"
|
49
53
|
end
|
50
54
|
|
51
55
|
def subrepo(subpath)
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
|
5
|
+
module EacGit
|
6
|
+
class Local
|
7
|
+
class Commit
|
8
|
+
module Archive
|
9
|
+
# @return [EacRubyUtils::Envs::Command]
|
10
|
+
def archive_to_dir(path)
|
11
|
+
path = path.to_pathname
|
12
|
+
repo.command('archive', '--format=tar', hash).pipe(
|
13
|
+
::EacGit::Executables.tar.command('-xC', path)
|
14
|
+
)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -12,7 +12,8 @@ module EacGit
|
|
12
12
|
|
13
13
|
common_constructor :local, :subpath do
|
14
14
|
self.subpath = subpath.to_pathname
|
15
|
-
|
15
|
+
local.raise_error "Config file \"#{config_absolute_path}\" not found" unless
|
16
|
+
config_absolute_path.file?
|
16
17
|
end
|
17
18
|
|
18
19
|
def command(subrepo_subcommand, *subrepo_subcommand_args)
|
@@ -12,9 +12,9 @@ Gem::Specification.new do |s|
|
|
12
12
|
|
13
13
|
s.files = Dir['{lib}/**/*']
|
14
14
|
|
15
|
-
s.add_dependency 'eac_cli', '~> 0.
|
15
|
+
s.add_dependency 'eac_cli', '~> 0.20'
|
16
16
|
s.add_dependency 'eac_ruby_gems_utils', '~> 0.8'
|
17
|
-
s.add_dependency 'eac_ruby_utils', '~> 0.
|
17
|
+
s.add_dependency 'eac_ruby_utils', '~> 0.67'
|
18
18
|
|
19
19
|
s.add_development_dependency 'eac_ruby_gem_support', '~> 0.2'
|
20
20
|
end
|
@@ -1,5 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'eac_ruby_base0/application_xdg'
|
3
4
|
require 'eac_ruby_gems_utils/gem'
|
4
5
|
require 'eac_ruby_utils/core_ext'
|
5
6
|
require 'eac_ruby_utils/filesystem_cache'
|
@@ -21,16 +22,8 @@ module EacRubyBase0
|
|
21
22
|
vendor_gems + [self_gem]
|
22
23
|
end
|
23
24
|
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
define_method xdg_env_method_name do
|
28
|
-
ENV["XDG_#{item.upcase}_HOME"].if_present(&:to_pathname)
|
29
|
-
end
|
30
|
-
|
31
|
-
define_method "#{item}_dir" do
|
32
|
-
(send(xdg_env_method_name) || home_dir.join(subpath)).join(name)
|
33
|
-
end
|
25
|
+
::EacRubyBase0::ApplicationXdg::DIRECTORIES.each_key do |item|
|
26
|
+
delegate "#{item}_xdg_env", "#{item}_dir", to: :app_xdg
|
34
27
|
end
|
35
28
|
|
36
29
|
def fs_cache
|
@@ -40,7 +33,7 @@ module EacRubyBase0
|
|
40
33
|
end
|
41
34
|
|
42
35
|
def home_dir
|
43
|
-
|
36
|
+
app_xdg.user_home_dir
|
44
37
|
end
|
45
38
|
|
46
39
|
def name
|
@@ -53,6 +46,10 @@ module EacRubyBase0
|
|
53
46
|
|
54
47
|
private
|
55
48
|
|
49
|
+
def app_xdg_uncached
|
50
|
+
::EacRubyBase0::ApplicationXdg.new(name, options[OPTION_HOME_DIR])
|
51
|
+
end
|
52
|
+
|
56
53
|
def self_gem_uncached
|
57
54
|
::EacRubyGemsUtils::Gem.new(gemspec_dir)
|
58
55
|
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module EacRubyBase0
|
4
|
+
# https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
|
5
|
+
class ApplicationXdg
|
6
|
+
class << self
|
7
|
+
# @return [Pathname]
|
8
|
+
def user_home_dir_from_env
|
9
|
+
ENV.fetch('HOME').to_pathname
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
DIRECTORIES = { cache: '.cache', config: '.config', data: '.local/share',
|
14
|
+
state: '.local/state' }.freeze
|
15
|
+
|
16
|
+
common_constructor :app_name, :user_home_dir, default: [nil] do
|
17
|
+
self.user_home_dir ||= self.class.user_home_dir_from_env
|
18
|
+
end
|
19
|
+
|
20
|
+
DIRECTORIES.each do |item, subpath|
|
21
|
+
xdg_env_method_name = "#{item}_xdg_env"
|
22
|
+
|
23
|
+
define_method xdg_env_method_name do
|
24
|
+
ENV["XDG_#{item.upcase}_HOME"].if_present(&:to_pathname)
|
25
|
+
end
|
26
|
+
|
27
|
+
define_method "#{item}_dir" do
|
28
|
+
(send(xdg_env_method_name) || user_home_dir.join(subpath)).join(app_name)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|