eac_ruby_utils 0.60.0 → 0.64.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/envs/command.rb +10 -5
- data/lib/eac_ruby_utils/filesystem_cache.rb +6 -0
- data/lib/eac_ruby_utils/fs/logs.rb +63 -0
- data/lib/eac_ruby_utils/inflector.rb +9 -1
- data/lib/eac_ruby_utils/listable/list.rb +3 -2
- data/lib/eac_ruby_utils/patches/kernel/nyi.rb +4 -2
- data/lib/eac_ruby_utils/patches/module/common_concern.rb +0 -1
- data/lib/eac_ruby_utils/patches/regexp/to_parser.rb +10 -0
- data/lib/eac_ruby_utils/patches/string/inflector.rb +4 -2
- data/lib/eac_ruby_utils/regexp_parser.rb +34 -0
- data/lib/eac_ruby_utils/rspec/conditional.rb +1 -4
- data/lib/eac_ruby_utils/simple_cache.rb +18 -5
- data/lib/eac_ruby_utils/version.rb +1 -1
- metadata +13 -66
- data/lib/eac_ruby_utils/configs.rb +0 -74
- data/lib/eac_ruby_utils/configs/base.rb +0 -43
- data/lib/eac_ruby_utils/configs/file.rb +0 -47
- data/lib/eac_ruby_utils/console.rb +0 -5
- data/lib/eac_ruby_utils/console/configs.rb +0 -38
- data/lib/eac_ruby_utils/console/configs/entry_reader.rb +0 -81
- data/lib/eac_ruby_utils/console/configs/password_entry_reader.rb +0 -18
- data/lib/eac_ruby_utils/console/configs/read_entry_options.rb +0 -46
- data/lib/eac_ruby_utils/console/configs/store_passwords_entry_reader.rb +0 -27
- data/lib/eac_ruby_utils/console/docopt_runner.rb +0 -45
- data/lib/eac_ruby_utils/console/docopt_runner/_class_methods.rb +0 -18
- data/lib/eac_ruby_utils/console/docopt_runner/_doc.rb +0 -25
- data/lib/eac_ruby_utils/console/docopt_runner/_settings.rb +0 -19
- data/lib/eac_ruby_utils/console/docopt_runner/_subcommands.rb +0 -154
- data/lib/eac_ruby_utils/console/speaker.rb +0 -133
- data/lib/eac_ruby_utils/console/speaker/_class_methods.rb +0 -39
- data/lib/eac_ruby_utils/console/speaker/_constants.rb +0 -14
- data/lib/eac_ruby_utils/console/speaker/list.rb +0 -63
- data/lib/eac_ruby_utils/console/speaker/node.rb +0 -26
- data/lib/eac_ruby_utils/patches/module/console_speaker.rb +0 -10
- data/lib/eac_ruby_utils/patches/module/template.rb +0 -10
- data/lib/eac_ruby_utils/patches/object/template.rb +0 -9
- data/lib/eac_ruby_utils/paths_hash.rb +0 -56
- data/lib/eac_ruby_utils/paths_hash/entry_key_error.rb +0 -8
- data/lib/eac_ruby_utils/paths_hash/node.rb +0 -67
- data/lib/eac_ruby_utils/paths_hash/path_search.rb +0 -39
- data/lib/eac_ruby_utils/templates.rb +0 -9
- data/lib/eac_ruby_utils/templates/directory.rb +0 -110
- data/lib/eac_ruby_utils/templates/file.rb +0 -50
- data/lib/eac_ruby_utils/templates/searcher.rb +0 -55
- data/lib/eac_ruby_utils/templates/variable_not_found_error.rb +0 -7
- data/lib/eac_ruby_utils/templates/variable_providers.rb +0 -25
- data/lib/eac_ruby_utils/templates/variable_providers/base.rb +0 -23
- data/lib/eac_ruby_utils/templates/variable_providers/entries_reader.rb +0 -25
- data/lib/eac_ruby_utils/templates/variable_providers/generic.rb +0 -25
- data/lib/eac_ruby_utils/templates/variable_providers/hash.rb +0 -29
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aebc2af21cfa1d812eb22e31af074450b65a3fd9641cfc072086f63b79e42ca5
|
4
|
+
data.tar.gz: 86257e2b0311d994c1ca761826c0726c77433765f8604a072339256d2145e9fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 953714355bec27c6d0c732391c15fc63042b50953a042e13e7d9563998c83e3ca74f0c3547aca0d2367008ca6c655e76cab52eedd6ab7de1b4f0a572c38ad2f4
|
7
|
+
data.tar.gz: d2714d1ceee3653692b2cf7ba197cb8814145e4a40e2e9a80edd1d7b08e6abe8dfef274b64536b5f68634086eabcb0a0e65a20724d40754b34dd5ccaf57fce91
|
@@ -10,7 +10,6 @@ module EacRubyUtils
|
|
10
10
|
module Envs
|
11
11
|
class Command
|
12
12
|
require_sub __FILE__, include_modules: true
|
13
|
-
enable_console_speaker
|
14
13
|
|
15
14
|
def initialize(env, command, extra_options = {})
|
16
15
|
@env = env
|
@@ -61,17 +60,17 @@ module EacRubyUtils
|
|
61
60
|
|
62
61
|
def execute(options = {})
|
63
62
|
c = command(options)
|
64
|
-
|
63
|
+
debug_print("BEFORE: #{c}")
|
65
64
|
t1 = Time.now
|
66
65
|
r = ::EacRubyUtils::Envs::Process.new(c).to_h
|
67
66
|
i = Time.now - t1
|
68
|
-
|
67
|
+
debug_print("AFTER [#{i}]: #{c}")
|
69
68
|
r
|
70
69
|
end
|
71
70
|
|
72
71
|
def spawn(options = {})
|
73
72
|
c = command(options)
|
74
|
-
|
73
|
+
debug_print("SPAWN: #{c}")
|
75
74
|
::EacRubyUtils::Envs::Spawn.new(c)
|
76
75
|
end
|
77
76
|
|
@@ -83,7 +82,7 @@ module EacRubyUtils
|
|
83
82
|
|
84
83
|
def system(options = {})
|
85
84
|
c = command(options)
|
86
|
-
|
85
|
+
debug_print(c)
|
87
86
|
Kernel.system(c)
|
88
87
|
end
|
89
88
|
|
@@ -109,6 +108,12 @@ module EacRubyUtils
|
|
109
108
|
ENV['DEBUG'].to_s.strip != ''
|
110
109
|
end
|
111
110
|
|
111
|
+
# Print a message if debugging is enabled.
|
112
|
+
def debug_print(message)
|
113
|
+
message = message.to_s
|
114
|
+
puts message.if_respond(:light_red, message) if debug?
|
115
|
+
end
|
116
|
+
|
112
117
|
def append_command_options(command, options)
|
113
118
|
command = options[:input].command + ' | ' + command if options[:input]
|
114
119
|
if options[:input_file]
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'active_support/core_ext/string/filters'
|
4
|
+
require 'eac_ruby_utils/fs/temp'
|
5
|
+
require 'filesize'
|
6
|
+
|
7
|
+
module EacRubyUtils
|
8
|
+
module Fs
|
9
|
+
class Logs
|
10
|
+
TRUNCATE_DEFAULT_LENGTH = 1000
|
11
|
+
TRUNCATE_APPEND_TEXT = '(...) '
|
12
|
+
|
13
|
+
def [](label)
|
14
|
+
log_set.fetch(sanitize_label(label))
|
15
|
+
end
|
16
|
+
|
17
|
+
def add(label)
|
18
|
+
log_set[sanitize_label(label)] = ::EacRubyUtils::Fs::Temp.file
|
19
|
+
|
20
|
+
self
|
21
|
+
end
|
22
|
+
|
23
|
+
def remove_all
|
24
|
+
log_set.each_key { |label| remove(label) }
|
25
|
+
|
26
|
+
self
|
27
|
+
end
|
28
|
+
|
29
|
+
def remove(label)
|
30
|
+
log_set.fetch(sanitize_label(label)).remove
|
31
|
+
log_set.delete(sanitize_label(label))
|
32
|
+
end
|
33
|
+
|
34
|
+
def truncate(label, length = TRUNCATE_DEFAULT_LENGTH)
|
35
|
+
content = self[label].read.strip
|
36
|
+
return content if content.length <= TRUNCATE_DEFAULT_LENGTH
|
37
|
+
|
38
|
+
TRUNCATE_APPEND_TEXT + content[content.length - length + TRUNCATE_APPEND_TEXT.length,
|
39
|
+
length - TRUNCATE_APPEND_TEXT.length]
|
40
|
+
end
|
41
|
+
|
42
|
+
def truncate_all(length = TRUNCATE_DEFAULT_LENGTH)
|
43
|
+
s = "Files: #{log_set.length}\n"
|
44
|
+
log_set.each do |label, path|
|
45
|
+
x = truncate(label, length)
|
46
|
+
y = [label, path, ::Filesize.from("#{path.size} B").pretty].join(' / ')
|
47
|
+
s += x.blank? ? ">>> #{y} (Blank) <<<" : ">>> #{y}\n#{x}\n<<< #{y}\n"
|
48
|
+
end
|
49
|
+
s
|
50
|
+
end
|
51
|
+
|
52
|
+
private
|
53
|
+
|
54
|
+
def sanitize_label(label)
|
55
|
+
label.to_sym
|
56
|
+
end
|
57
|
+
|
58
|
+
def log_set
|
59
|
+
@log_set ||= {}
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
@@ -7,11 +7,19 @@ module EacRubyUtils
|
|
7
7
|
class << self
|
8
8
|
VARIABLE_NAME_PATTERN = /[_a-z][_a-z0-9]*/i.freeze
|
9
9
|
|
10
|
-
|
10
|
+
# Convert a string to a variable format: first character as a lowercase letter or underscore
|
11
|
+
# and other as a lowercase letter, underscore or numbers.
|
12
|
+
# @param string [String] The source string.
|
13
|
+
# @param validate [Boolean] Affect the outcome when the result builded is not in a valid
|
14
|
+
# variable format. If `true`, it raises a {ArgumentError}. If `false`, return `nil`.
|
15
|
+
# @return [String, nil]
|
16
|
+
# @raise [ArgumentError]
|
17
|
+
def variableize(string, validate = true)
|
11
18
|
r = ::ActiveSupport::Inflector.transliterate(string).gsub(/[^_a-z0-9]/i, '_')
|
12
19
|
.gsub(/_+/, '_').gsub(/_\z/, '').gsub(/\A_/, '').downcase
|
13
20
|
m = VARIABLE_NAME_PATTERN.match(r)
|
14
21
|
return r if m
|
22
|
+
return nil unless validate
|
15
23
|
|
16
24
|
raise ::ArgumentError, "Invalid variable name \"#{r}\" was generated " \
|
17
25
|
"from string \"#{string}\""
|
@@ -54,8 +54,9 @@ module EacRubyUtils
|
|
54
54
|
end
|
55
55
|
|
56
56
|
def value_validate!(value, error_class = ::StandardError)
|
57
|
-
value_valid?(value)
|
58
|
-
|
57
|
+
return value if value_valid?(value)
|
58
|
+
|
59
|
+
raise(error_class, "Invalid value: \"#{value}\" (Valid: #{values_to_s})")
|
59
60
|
end
|
60
61
|
|
61
62
|
def values_to_s
|
@@ -2,7 +2,9 @@
|
|
2
2
|
|
3
3
|
module Kernel
|
4
4
|
# Raise exception with text "Not yet implemented".
|
5
|
-
def nyi
|
6
|
-
|
5
|
+
def nyi(message = nil)
|
6
|
+
s = "Not yet implemented (Called in #{caller.first})"
|
7
|
+
s += ": #{message}" if message
|
8
|
+
raise s
|
7
9
|
end
|
8
10
|
end
|
@@ -3,7 +3,9 @@
|
|
3
3
|
require 'eac_ruby_utils/inflector'
|
4
4
|
|
5
5
|
class String
|
6
|
-
|
7
|
-
|
6
|
+
# Shortcut to `EacRubyUtils::Inflector.variableize(self, ...)`.
|
7
|
+
# @see EacRubyUtils::Inflector.variableize
|
8
|
+
def variableize(validate = true)
|
9
|
+
::EacRubyUtils::Inflector.variableize(self, validate)
|
8
10
|
end
|
9
11
|
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module EacRubyUtils
|
4
|
+
class RegexpParser
|
5
|
+
attr_reader :pattern, :builder_proc
|
6
|
+
|
7
|
+
def initialize(pattern, &builder_proc)
|
8
|
+
@pattern = pattern
|
9
|
+
@builder_proc = builder_proc
|
10
|
+
end
|
11
|
+
|
12
|
+
def parse(string)
|
13
|
+
internal_parse(string)[1]
|
14
|
+
end
|
15
|
+
|
16
|
+
def parse!(string)
|
17
|
+
match, result = internal_parse(string)
|
18
|
+
return result if match
|
19
|
+
|
20
|
+
raise ::ArgumentError, "String \"#{string}\" does not match pattern \"#{pattern}\""
|
21
|
+
end
|
22
|
+
|
23
|
+
private
|
24
|
+
|
25
|
+
def internal_parse(string)
|
26
|
+
m = pattern.match(string)
|
27
|
+
if m
|
28
|
+
[true, builder_proc ? builder_proc.call(m) : m]
|
29
|
+
else
|
30
|
+
[false, nil]
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -1,13 +1,10 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require 'active_support/core_ext/object/blank'
|
4
|
-
require 'eac_ruby_utils/console/speaker'
|
5
4
|
|
6
5
|
module EacRubyUtils
|
7
6
|
module Rspec
|
8
7
|
class Conditional
|
9
|
-
include ::EacRubyUtils::Console::Speaker
|
10
|
-
|
11
8
|
def self.default
|
12
9
|
@default ||= new
|
13
10
|
end
|
@@ -24,7 +21,7 @@ module EacRubyUtils
|
|
24
21
|
tags.each do |tag, condition|
|
25
22
|
message = condition.call
|
26
23
|
if message.present?
|
27
|
-
|
24
|
+
puts("[WARN] Excluded tag: #{tag}: #{message}")
|
28
25
|
rspec_config.filter_run_excluding tag
|
29
26
|
end
|
30
27
|
end
|
@@ -2,12 +2,18 @@
|
|
2
2
|
|
3
3
|
module EacRubyUtils
|
4
4
|
module SimpleCache
|
5
|
-
|
5
|
+
UNCACHED_METHOD_NAME_SUFFIX = '_uncached'
|
6
|
+
UNCACHED_METHOD_PATTERN = /\A(\s+)_#{::Regexp.quote(UNCACHED_METHOD_NAME_SUFFIX)}\z/.freeze
|
7
|
+
|
8
|
+
class << self
|
9
|
+
def uncached_method_name(method_name)
|
10
|
+
"#{method_name}#{UNCACHED_METHOD_NAME_SUFFIX}"
|
11
|
+
end
|
12
|
+
end
|
6
13
|
|
7
14
|
def method_missing(method, *args, &block)
|
8
|
-
|
9
|
-
|
10
|
-
call_method_with_cache(uncached_method, args, &block)
|
15
|
+
if respond_to?(::EacRubyUtils::SimpleCache.uncached_method_name(method), true)
|
16
|
+
call_method_with_cache(method, args, &block)
|
11
17
|
else
|
12
18
|
super
|
13
19
|
end
|
@@ -35,10 +41,17 @@ module EacRubyUtils
|
|
35
41
|
raise 'Não é possível realizar o cache de métodos com bloco' if block
|
36
42
|
|
37
43
|
key = ([method] + args).join('@@@')
|
38
|
-
|
44
|
+
unless cache_keys.key?(key)
|
45
|
+
uncached_value = call_uncached_method(method, args)
|
46
|
+
cache_keys[key] = uncached_value
|
47
|
+
end
|
39
48
|
cache_keys[key]
|
40
49
|
end
|
41
50
|
|
51
|
+
def call_uncached_method(method, args)
|
52
|
+
send(::EacRubyUtils::SimpleCache.uncached_method_name(method), *args)
|
53
|
+
end
|
54
|
+
|
42
55
|
def cache_keys
|
43
56
|
@cache_keys ||= {}
|
44
57
|
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.64.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: 2021-
|
11
|
+
date: 2021-05-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -39,33 +39,19 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '2.6'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: filesize
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: 0.8.1
|
48
|
-
type: :runtime
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: 0.8.1
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: docopt
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - "~>"
|
45
|
+
- - ">="
|
60
46
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0
|
47
|
+
version: '0'
|
62
48
|
type: :runtime
|
63
49
|
prerelease: false
|
64
50
|
version_requirements: !ruby/object:Gem::Requirement
|
65
51
|
requirements:
|
66
|
-
- - "
|
52
|
+
- - ">="
|
67
53
|
- !ruby/object:Gem::Version
|
68
|
-
version: 0
|
54
|
+
version: '0'
|
69
55
|
- !ruby/object:Gem::Dependency
|
70
56
|
name: net-ssh
|
71
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -86,20 +72,14 @@ dependencies:
|
|
86
72
|
requirements:
|
87
73
|
- - "~>"
|
88
74
|
- !ruby/object:Gem::Version
|
89
|
-
version: '0.
|
90
|
-
- - ">="
|
91
|
-
- !ruby/object:Gem::Version
|
92
|
-
version: 0.1.1
|
75
|
+
version: '0.2'
|
93
76
|
type: :development
|
94
77
|
prerelease: false
|
95
78
|
version_requirements: !ruby/object:Gem::Requirement
|
96
79
|
requirements:
|
97
80
|
- - "~>"
|
98
81
|
- !ruby/object:Gem::Version
|
99
|
-
version: '0.
|
100
|
-
- - ">="
|
101
|
-
- !ruby/object:Gem::Version
|
102
|
-
version: 0.1.1
|
82
|
+
version: '0.2'
|
103
83
|
description:
|
104
84
|
email:
|
105
85
|
executables: []
|
@@ -120,25 +100,6 @@ files:
|
|
120
100
|
- lib/eac_ruby_utils/common_constructor/class_initialize.rb
|
121
101
|
- lib/eac_ruby_utils/common_constructor/instance_initialize.rb
|
122
102
|
- lib/eac_ruby_utils/common_constructor/super_args.rb
|
123
|
-
- lib/eac_ruby_utils/configs.rb
|
124
|
-
- lib/eac_ruby_utils/configs/base.rb
|
125
|
-
- lib/eac_ruby_utils/configs/file.rb
|
126
|
-
- lib/eac_ruby_utils/console.rb
|
127
|
-
- lib/eac_ruby_utils/console/configs.rb
|
128
|
-
- lib/eac_ruby_utils/console/configs/entry_reader.rb
|
129
|
-
- lib/eac_ruby_utils/console/configs/password_entry_reader.rb
|
130
|
-
- lib/eac_ruby_utils/console/configs/read_entry_options.rb
|
131
|
-
- lib/eac_ruby_utils/console/configs/store_passwords_entry_reader.rb
|
132
|
-
- lib/eac_ruby_utils/console/docopt_runner.rb
|
133
|
-
- lib/eac_ruby_utils/console/docopt_runner/_class_methods.rb
|
134
|
-
- lib/eac_ruby_utils/console/docopt_runner/_doc.rb
|
135
|
-
- lib/eac_ruby_utils/console/docopt_runner/_settings.rb
|
136
|
-
- lib/eac_ruby_utils/console/docopt_runner/_subcommands.rb
|
137
|
-
- lib/eac_ruby_utils/console/speaker.rb
|
138
|
-
- lib/eac_ruby_utils/console/speaker/_class_methods.rb
|
139
|
-
- lib/eac_ruby_utils/console/speaker/_constants.rb
|
140
|
-
- lib/eac_ruby_utils/console/speaker/list.rb
|
141
|
-
- lib/eac_ruby_utils/console/speaker/node.rb
|
142
103
|
- lib/eac_ruby_utils/contextualizable.rb
|
143
104
|
- lib/eac_ruby_utils/core_ext.rb
|
144
105
|
- lib/eac_ruby_utils/custom_format.rb
|
@@ -162,6 +123,7 @@ files:
|
|
162
123
|
- lib/eac_ruby_utils/fs.rb
|
163
124
|
- lib/eac_ruby_utils/fs/clearable_directory.rb
|
164
125
|
- lib/eac_ruby_utils/fs/extname.rb
|
126
|
+
- lib/eac_ruby_utils/fs/logs.rb
|
165
127
|
- lib/eac_ruby_utils/fs/temp.rb
|
166
128
|
- lib/eac_ruby_utils/fs/temp/directory.rb
|
167
129
|
- lib/eac_ruby_utils/fs/temp/file.rb
|
@@ -207,33 +169,28 @@ files:
|
|
207
169
|
- lib/eac_ruby_utils/patches/module.rb
|
208
170
|
- lib/eac_ruby_utils/patches/module/abstract_methods.rb
|
209
171
|
- lib/eac_ruby_utils/patches/module/common_concern.rb
|
210
|
-
- lib/eac_ruby_utils/patches/module/console_speaker.rb
|
211
172
|
- lib/eac_ruby_utils/patches/module/immutable.rb
|
212
173
|
- lib/eac_ruby_utils/patches/module/listable.rb
|
213
174
|
- lib/eac_ruby_utils/patches/module/patch.rb
|
214
175
|
- lib/eac_ruby_utils/patches/module/require_sub.rb
|
215
176
|
- lib/eac_ruby_utils/patches/module/simple_cache.rb
|
216
|
-
- lib/eac_ruby_utils/patches/module/template.rb
|
217
177
|
- lib/eac_ruby_utils/patches/object.rb
|
218
178
|
- lib/eac_ruby_utils/patches/object/asserts.rb
|
219
179
|
- lib/eac_ruby_utils/patches/object/debug.rb
|
220
180
|
- lib/eac_ruby_utils/patches/object/if_nil.rb
|
221
181
|
- lib/eac_ruby_utils/patches/object/if_present.rb
|
222
182
|
- lib/eac_ruby_utils/patches/object/if_respond.rb
|
223
|
-
- lib/eac_ruby_utils/patches/object/template.rb
|
224
183
|
- lib/eac_ruby_utils/patches/object/to_pathname.rb
|
225
184
|
- lib/eac_ruby_utils/patches/pathname.rb
|
226
185
|
- lib/eac_ruby_utils/patches/pathname/basename_sub.rb
|
227
186
|
- lib/eac_ruby_utils/patches/regexp.rb
|
228
187
|
- lib/eac_ruby_utils/patches/regexp/if_match.rb
|
188
|
+
- lib/eac_ruby_utils/patches/regexp/to_parser.rb
|
229
189
|
- lib/eac_ruby_utils/patches/string.rb
|
230
190
|
- lib/eac_ruby_utils/patches/string/inflector.rb
|
231
191
|
- lib/eac_ruby_utils/patches/time.rb
|
232
192
|
- lib/eac_ruby_utils/patches/time/required_zone.rb
|
233
|
-
- lib/eac_ruby_utils/
|
234
|
-
- lib/eac_ruby_utils/paths_hash/entry_key_error.rb
|
235
|
-
- lib/eac_ruby_utils/paths_hash/node.rb
|
236
|
-
- lib/eac_ruby_utils/paths_hash/path_search.rb
|
193
|
+
- lib/eac_ruby_utils/regexp_parser.rb
|
237
194
|
- lib/eac_ruby_utils/require_sub.rb
|
238
195
|
- lib/eac_ruby_utils/rspec.rb
|
239
196
|
- lib/eac_ruby_utils/rspec/conditional.rb
|
@@ -245,16 +202,6 @@ files:
|
|
245
202
|
- lib/eac_ruby_utils/settings_provider/setting_value.rb
|
246
203
|
- lib/eac_ruby_utils/simple_cache.rb
|
247
204
|
- lib/eac_ruby_utils/struct.rb
|
248
|
-
- lib/eac_ruby_utils/templates.rb
|
249
|
-
- lib/eac_ruby_utils/templates/directory.rb
|
250
|
-
- lib/eac_ruby_utils/templates/file.rb
|
251
|
-
- lib/eac_ruby_utils/templates/searcher.rb
|
252
|
-
- lib/eac_ruby_utils/templates/variable_not_found_error.rb
|
253
|
-
- lib/eac_ruby_utils/templates/variable_providers.rb
|
254
|
-
- lib/eac_ruby_utils/templates/variable_providers/base.rb
|
255
|
-
- lib/eac_ruby_utils/templates/variable_providers/entries_reader.rb
|
256
|
-
- lib/eac_ruby_utils/templates/variable_providers/generic.rb
|
257
|
-
- lib/eac_ruby_utils/templates/variable_providers/hash.rb
|
258
205
|
- lib/eac_ruby_utils/version.rb
|
259
206
|
- lib/eac_ruby_utils/yaml.rb
|
260
207
|
homepage:
|
@@ -276,7 +223,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
276
223
|
- !ruby/object:Gem::Version
|
277
224
|
version: '0'
|
278
225
|
requirements: []
|
279
|
-
rubygems_version: 3.0.
|
226
|
+
rubygems_version: 3.0.9
|
280
227
|
signing_key:
|
281
228
|
specification_version: 4
|
282
229
|
summary: Utilities for E.A.C.'s Ruby projects.
|