eac_ruby_utils 0.36.1 → 0.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/eac_ruby_utils/templates/directory.rb +7 -1
- data/lib/eac_ruby_utils/templates/file.rb +8 -59
- data/lib/eac_ruby_utils/templates/variable_not_found_error.rb +7 -0
- data/lib/eac_ruby_utils/templates/variable_providers.rb +25 -0
- data/lib/eac_ruby_utils/templates/variable_providers/base.rb +23 -0
- data/lib/eac_ruby_utils/templates/variable_providers/entries_reader.rb +25 -0
- data/lib/eac_ruby_utils/templates/variable_providers/generic.rb +25 -0
- data/lib/eac_ruby_utils/templates/variable_providers/hash.rb +29 -0
- data/lib/eac_ruby_utils/version.rb +1 -1
- metadata +8 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68c46afaacfcbdd7bb63906f6d7ec668edfaeb5da500d46c68e8ee82e7ee6d20
|
4
|
+
data.tar.gz: 184a7551426a3ba8dc7117254119ad49f53713fa420a67f9b7c80f8697b92f7d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3236d13fa87bba223b8d88387fb2e3f55de304a933f9e91f5919f51a9ab9fd69fd2f5dc6e355e172d24d37cb435d245e105344a4510f0aa6e6145230fd335c79
|
7
|
+
data.tar.gz: ad219efa4bef8a2dc636f36c9e4a8535d37fe7ea2b90bb6633cf104860fa357cd4248896e70ea8f8894aa3dfd0ce793d559dd880e650327cb48302599db8d2cf
|
@@ -10,7 +10,7 @@ module EacRubyUtils
|
|
10
10
|
attr_reader :path
|
11
11
|
|
12
12
|
def initialize(path)
|
13
|
-
@path = path
|
13
|
+
@path = path.is_a?(::Pathname) ? path : ::Pathname.new(path.to_s)
|
14
14
|
end
|
15
15
|
|
16
16
|
def apply(variables_source, directory)
|
@@ -25,6 +25,12 @@ module EacRubyUtils
|
|
25
25
|
raise "Child \"#{subpath}\" from \"#{path}\" not found"
|
26
26
|
end
|
27
27
|
|
28
|
+
def children
|
29
|
+
path.children.map do |path_child|
|
30
|
+
child(path_child.basename.to_path)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
28
34
|
private
|
29
35
|
|
30
36
|
def apply_fs_object(source_relative, target)
|
@@ -1,32 +1,29 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require '
|
4
|
-
require 'eac_ruby_utils/
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
require 'eac_ruby_utils/templates/variable_providers'
|
5
5
|
|
6
6
|
module EacRubyUtils
|
7
7
|
module Templates
|
8
8
|
class File
|
9
|
-
include ::EacRubyUtils::SimpleCache
|
10
|
-
|
11
9
|
VARIABLE_DELIMITER = ::Regexp.quote('%%')
|
12
10
|
VARIABLE_PATTERN = /#{VARIABLE_DELIMITER}([a-z0-9\._]*)#{VARIABLE_DELIMITER}/i.freeze
|
13
11
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
@path = path
|
12
|
+
enable_simple_cache
|
13
|
+
common_constructor :path do
|
14
|
+
self.path = path.to_pathname
|
18
15
|
end
|
19
16
|
|
20
17
|
# +variables_provider+ A [Hash] or object which responds to +read_entry(entry_name)+.
|
21
18
|
def apply(variables_source)
|
22
|
-
variables_provider =
|
19
|
+
variables_provider = ::EacRubyUtils::Templates::VariableProviders.build(variables_source)
|
23
20
|
variables.inject(content) do |a, e|
|
24
21
|
a.gsub(variable_pattern(e), variables_provider.variable_value(e).to_s)
|
25
22
|
end
|
26
23
|
end
|
27
24
|
|
28
25
|
def apply_to_file(variables_source, output_file_path)
|
29
|
-
|
26
|
+
output_file_path.to_pathname.write(apply(variables_source))
|
30
27
|
end
|
31
28
|
|
32
29
|
private
|
@@ -38,64 +35,16 @@ module EacRubyUtils
|
|
38
35
|
end
|
39
36
|
|
40
37
|
def content_uncached
|
41
|
-
|
38
|
+
path.read
|
42
39
|
end
|
43
40
|
|
44
41
|
def sanitize_variable_name(variable_name)
|
45
42
|
variable_name.to_s.downcase
|
46
43
|
end
|
47
44
|
|
48
|
-
def build_variables_provider(variables_source)
|
49
|
-
return HashVariablesProvider.new(variables_source) if variables_source.is_a?(::Hash)
|
50
|
-
return EntriesReaderVariablesProvider.new(variables_source) if
|
51
|
-
variables_source.respond_to?(:read_entry)
|
52
|
-
|
53
|
-
raise "Variables provider not found for #{variables_source}"
|
54
|
-
end
|
55
|
-
|
56
45
|
def variable_pattern(name)
|
57
46
|
/#{VARIABLE_DELIMITER}#{::Regexp.quote(name)}#{VARIABLE_DELIMITER}/i
|
58
47
|
end
|
59
|
-
|
60
|
-
class BaseVariablesProvider
|
61
|
-
attr_reader :source
|
62
|
-
|
63
|
-
def initialize(source)
|
64
|
-
@source = source
|
65
|
-
end
|
66
|
-
|
67
|
-
def variable_value(name)
|
68
|
-
return variable_fetch(name) if variable_exist?(name)
|
69
|
-
|
70
|
-
raise VariableNotFoundError, "Variable \"#{name}\" not found in #{source}"
|
71
|
-
end
|
72
|
-
end
|
73
|
-
|
74
|
-
class HashVariablesProvider < BaseVariablesProvider
|
75
|
-
def initialize(source)
|
76
|
-
super(source.with_indifferent_access)
|
77
|
-
end
|
78
|
-
|
79
|
-
def variable_exist?(name)
|
80
|
-
source.key?(name)
|
81
|
-
end
|
82
|
-
|
83
|
-
def variable_fetch(name)
|
84
|
-
source.fetch(name)
|
85
|
-
end
|
86
|
-
end
|
87
|
-
|
88
|
-
class EntriesReaderVariablesProvider < BaseVariablesProvider
|
89
|
-
def variable_exist?(_name)
|
90
|
-
true
|
91
|
-
end
|
92
|
-
|
93
|
-
def variable_fetch(name)
|
94
|
-
source.read_entry(name)
|
95
|
-
end
|
96
|
-
end
|
97
|
-
|
98
|
-
class VariableNotFoundError < StandardError; end
|
99
48
|
end
|
100
49
|
end
|
101
50
|
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
|
5
|
+
module EacRubyUtils
|
6
|
+
module Templates
|
7
|
+
module VariableProviders
|
8
|
+
require_sub __FILE__
|
9
|
+
|
10
|
+
PROVIDERS = %w[entries_reader hash generic].map do |name|
|
11
|
+
"eac_ruby_utils/templates/variable_providers/#{name}".camelize.constantize
|
12
|
+
end
|
13
|
+
|
14
|
+
class << self
|
15
|
+
def build(variables_source)
|
16
|
+
PROVIDERS.each do |provider|
|
17
|
+
return provider.new(variables_source) if provider.accept?(variables_source)
|
18
|
+
end
|
19
|
+
|
20
|
+
raise "Variables provider not found for #{variables_source}"
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/templates/variable_not_found_error'
|
4
|
+
|
5
|
+
module EacRubyUtils
|
6
|
+
module Templates
|
7
|
+
module VariableProviders
|
8
|
+
class Base
|
9
|
+
attr_reader :source
|
10
|
+
|
11
|
+
def initialize(source)
|
12
|
+
@source = source
|
13
|
+
end
|
14
|
+
|
15
|
+
def variable_value(name)
|
16
|
+
return variable_fetch(name) if variable_exist?(name)
|
17
|
+
|
18
|
+
raise VariableNotFoundError, "Variable \"#{name}\" not found in #{source}"
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/templates/variable_providers/base'
|
4
|
+
|
5
|
+
module EacRubyUtils
|
6
|
+
module Templates
|
7
|
+
module VariableProviders
|
8
|
+
class EntriesReader < ::EacRubyUtils::Templates::VariableProviders::Base
|
9
|
+
class << self
|
10
|
+
def accept?(variables_source)
|
11
|
+
variables_source.respond_to?(:read_entry)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def variable_exist?(_name)
|
16
|
+
true
|
17
|
+
end
|
18
|
+
|
19
|
+
def variable_fetch(name)
|
20
|
+
source.read_entry(name)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/templates/variable_providers/base'
|
4
|
+
|
5
|
+
module EacRubyUtils
|
6
|
+
module Templates
|
7
|
+
module VariableProviders
|
8
|
+
class Generic < ::EacRubyUtils::Templates::VariableProviders::Base
|
9
|
+
class << self
|
10
|
+
def accept?(variables_source)
|
11
|
+
variables_source.is_a?(::Object)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def variable_exist?(name)
|
16
|
+
source.respond_to?(name)
|
17
|
+
end
|
18
|
+
|
19
|
+
def variable_fetch(name)
|
20
|
+
source.send(name)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/templates/variable_providers/base'
|
4
|
+
|
5
|
+
module EacRubyUtils
|
6
|
+
module Templates
|
7
|
+
module VariableProviders
|
8
|
+
class Hash < ::EacRubyUtils::Templates::VariableProviders::Base
|
9
|
+
class << self
|
10
|
+
def accept?(variables_source)
|
11
|
+
variables_source.is_a?(::Hash)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def initialize(source)
|
16
|
+
super(source.with_indifferent_access)
|
17
|
+
end
|
18
|
+
|
19
|
+
def variable_exist?(name)
|
20
|
+
source.key?(name)
|
21
|
+
end
|
22
|
+
|
23
|
+
def variable_fetch(name)
|
24
|
+
source.fetch(name)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eac_ruby_utils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.37.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Esquilo Azul Company
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-06-
|
11
|
+
date: 2020-06-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -201,6 +201,12 @@ files:
|
|
201
201
|
- lib/eac_ruby_utils/templates/directory.rb
|
202
202
|
- lib/eac_ruby_utils/templates/file.rb
|
203
203
|
- lib/eac_ruby_utils/templates/searcher.rb
|
204
|
+
- lib/eac_ruby_utils/templates/variable_not_found_error.rb
|
205
|
+
- lib/eac_ruby_utils/templates/variable_providers.rb
|
206
|
+
- lib/eac_ruby_utils/templates/variable_providers/base.rb
|
207
|
+
- lib/eac_ruby_utils/templates/variable_providers/entries_reader.rb
|
208
|
+
- lib/eac_ruby_utils/templates/variable_providers/generic.rb
|
209
|
+
- lib/eac_ruby_utils/templates/variable_providers/hash.rb
|
204
210
|
- lib/eac_ruby_utils/version.rb
|
205
211
|
- lib/eac_ruby_utils/yaml.rb
|
206
212
|
homepage:
|