aggkit 0.2.9.8706 → 0.2.9.8711
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/Gemfile.lock +1 -1
- data/bin/aggstart +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 98d5c6bfe3432fcfaf653ced9b1f1f459a6e7075
|
|
4
|
+
data.tar.gz: 0a91f240d71e53a85c6d74a5481e2dbe3ed8f00b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fef770673c074aa3376c8d416b7dc3b3d3f2760da8a35539afe6457ebfe06279e63babff42f77442ba744a02ab99625902f5981752be4d218e27ddd3dab1e6fd
|
|
7
|
+
data.tar.gz: 5bac7bb03a03bd318428aec3c80c41ea908ba3cdb250be230408b476545cac73fc439d03124979ec44e0e10fe23da7d940957e9feea3e3e9a3a82fa5a2e40af7
|
data/Gemfile.lock
CHANGED
data/bin/aggstart
CHANGED
|
@@ -25,11 +25,11 @@ parser = OptionParser.new do |o|
|
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
o.on("--consulconf=list", 'set list of folders with consul configs') do |list|
|
|
28
|
-
@opts[:consulconf] = list.to_s.split(/[ ;,|]/).map(&:to_s).
|
|
28
|
+
@opts[:consulconf] = list.to_s.split(/[ ;,|]/).map(&:to_s).reject(&:empty?)
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
o.on("--depends=list", 'set list of services to wait for ready') do |list|
|
|
32
|
-
@opts[:depends] = list.to_s.split(/[ ;,|]/).map(&:to_s).
|
|
32
|
+
@opts[:depends] = list.to_s.split(/[ ;,|]/).map(&:to_s).reject(&:empty?)
|
|
33
33
|
end
|
|
34
34
|
|
|
35
35
|
o.on("--exec=file", 'set file to execute') do |file|
|