eac_ruby_utils 0.37.0 → 0.38.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5fc852bc0ba01d1706a2f6c6dc7a0a09b1725b3dc3e54741abbf4c1d2022cac0
|
4
|
+
data.tar.gz: 288360947e10bbef4f1b4cf100306e8bfcb7b5e146adead41184c96e4c66c2d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 579594be75a7160855c0b530cd4b5d9bf8f918f065b5e2d4938274d2395dd47f14ee7b827c8461fa6775a7962936ae729d90320124398d3f8220eb0c914243eb
|
7
|
+
data.tar.gz: d287cd78c95da6e3d28c628c6059af23b3710d70f150672cbe13c47e80caa2989b3c93b084292e253380ef342128f780cc9b302cc09dfd36d9a0142ebf9a564b
|
@@ -16,6 +16,10 @@ module EacRubyUtils
|
|
16
16
|
duplicate_by_extra_options(envvars: envvars.merge(name => value))
|
17
17
|
end
|
18
18
|
|
19
|
+
def status_result(status_code, result)
|
20
|
+
duplicate_by_extra_options(status_results: status_results.merge(status_code => result))
|
21
|
+
end
|
22
|
+
|
19
23
|
def pipe(other_command)
|
20
24
|
duplicate_by_extra_options(pipe: other_command)
|
21
25
|
end
|
@@ -28,6 +32,10 @@ module EacRubyUtils
|
|
28
32
|
extra_options[:envvars] ||= {}.with_indifferent_access
|
29
33
|
end
|
30
34
|
|
35
|
+
def status_results
|
36
|
+
extra_options[:status_results] ||= {}.with_indifferent_access
|
37
|
+
end
|
38
|
+
|
31
39
|
def append_envvars(command)
|
32
40
|
e = envvars.map { |k, v| "#{Shellwords.escape(k)}=#{Shellwords.escape(v)}" }.join(' ')
|
33
41
|
e.present? ? "#{e} #{command}" : command
|
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.38.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-
|
11
|
+
date: 2020-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|