ZReviewTender 1.0.6 → 1.0.7
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/bin/ZReviewTender +19 -8
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b4e15499027773482cf0b32287e29bc453c00115dfa5816372a900ace9ba9ec2
|
4
|
+
data.tar.gz: b9b916a755ee4957f3183019e7fc7fefb7999f2572629f10506f55d5f0198cf8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37ecac4e478add72f532ad4c70937d9f36b142897cfbddadf1cbc20c0d98d3c6a706d1b43873ab3290a91998e532ce6274cf63b97971e12301114225b427d458
|
7
|
+
data.tar.gz: 63af7bf0f7b55db49f70ff277765e1049a61ee8f5b1e50cdf05776d1ce78732a15ac1670906ebe548cfd2c5041815cb4bc4d72e09e2f68a532a79e9773d73145
|
data/bin/ZReviewTender
CHANGED
@@ -22,10 +22,13 @@ class Main
|
|
22
22
|
opts.banner = "Usage: ZReviewTender [options]"
|
23
23
|
|
24
24
|
basePath = ENV['PWD'] || ::Dir.pwd
|
25
|
+
defaultConfigDirName = "config"
|
26
|
+
defaultAppleConfigFileName = "apple.yml"
|
27
|
+
defaultAndroidConfigFileName = "android.yml"
|
25
28
|
|
26
29
|
opts.on('-a', '--apple[=CONFIGYMLFILEPATH]', 'execute apple platform with config yml file') do |configYMLFilePath|
|
27
30
|
if configYMLFilePath.nil?
|
28
|
-
configYMLFilePath = "#{basePath}
|
31
|
+
configYMLFilePath = "#{basePath}/#{defaultConfigDirName}/#{defaultAppleConfigFileName}"
|
29
32
|
end
|
30
33
|
configFileCheck(configYMLFilePath, "--apple=CONFIG_YML_FILE_PATH")
|
31
34
|
|
@@ -33,9 +36,9 @@ class Main
|
|
33
36
|
fetcher.execute()
|
34
37
|
end
|
35
38
|
|
36
|
-
opts.on('-g', '--googleAndroid[=CONFIGYMLFILEPATH]', 'execute
|
39
|
+
opts.on('-g', '--googleAndroid[=CONFIGYMLFILEPATH]', 'execute android platform with config yml file') do |configYMLFilePath|
|
37
40
|
if configYMLFilePath.nil?
|
38
|
-
configYMLFilePath = "#{basePath}
|
41
|
+
configYMLFilePath = "#{basePath}/#{defaultConfigDirName}/#{defaultAndroidConfigFileName}"
|
39
42
|
end
|
40
43
|
configFileCheck(configYMLFilePath, "--googleAndroid=CONFIG_YML_FILE_PATH")
|
41
44
|
|
@@ -43,8 +46,11 @@ class Main
|
|
43
46
|
fetcher.execute()
|
44
47
|
end
|
45
48
|
|
46
|
-
opts.on('-r', '--run', 'execute
|
47
|
-
|
49
|
+
opts.on('-r', '--run=[=CONFIGFOLDERNAME]', 'execute both android and apple, specify an /config folder name') do |configFolderName|
|
50
|
+
if configFolderName.nil?
|
51
|
+
configFolderName = defaultConfigDirName
|
52
|
+
end
|
53
|
+
androidConfigFilePath = "#{basePath}/#{configFolderName}/#{defaultAndroidConfigFileName}"
|
48
54
|
configFileCheck(androidConfigFilePath, "--googleAndroid=CONFIG_YML_FILE_PATH")
|
49
55
|
|
50
56
|
fetcher = parseConfigYMLFile(androidConfigFilePath)
|
@@ -52,7 +58,7 @@ class Main
|
|
52
58
|
|
53
59
|
#
|
54
60
|
|
55
|
-
appleConfigFilePath = "#{basePath}
|
61
|
+
appleConfigFilePath = "#{basePath}/#{configFolderName}/#{defaultAppleConfigFileName}"
|
56
62
|
configFileCheck(appleConfigFilePath, "--apple=CONFIG_YML_FILE_PATH")
|
57
63
|
|
58
64
|
fetcher = parseConfigYMLFile(appleConfigFilePath)
|
@@ -86,9 +92,14 @@ class Main
|
|
86
92
|
end
|
87
93
|
|
88
94
|
processors = Helper.unwrapRequiredParameter(configYMLObj, 'processors')
|
89
|
-
|
95
|
+
if processors.nil?
|
96
|
+
processors = []
|
97
|
+
else
|
98
|
+
processors = processors.select{ |processor| processor.select{ |key, value| value["enable"] == true }}
|
99
|
+
end
|
100
|
+
|
90
101
|
if processors.length < 1
|
91
|
-
raise "must specify at least one processor."
|
102
|
+
raise "must specify/enable at least one processor."
|
92
103
|
end
|
93
104
|
|
94
105
|
processors.each do |processor|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ZReviewTender
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ZhgChgLi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-08-
|
11
|
+
date: 2022-08-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: net-http
|