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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/bin/ZReviewTender +19 -8
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db501e3c9cd98014ed5ffac3c12c9eab4da8a6da03f441497322209a9e61e25f
4
- data.tar.gz: 70cd96094bebe92db74f05662ee442b5b0e006f0e8a93b3b564cbf9003fe640b
3
+ metadata.gz: b4e15499027773482cf0b32287e29bc453c00115dfa5816372a900ace9ba9ec2
4
+ data.tar.gz: b9b916a755ee4957f3183019e7fc7fefb7999f2572629f10506f55d5f0198cf8
5
5
  SHA512:
6
- metadata.gz: 8611b44db056e78d816a48bc495910939ea9a717fb5b248d89f4d99075dd8eed5e9e2f924ea15d26e27800d2f19c72c6b2851621d72caae4741b7d23dc768112
7
- data.tar.gz: 88c4a1da0571745066e43b4ae23cfa9b3181b46f704617d22fe2e71b2e1004ce5a4226227e0abe2699feca857b71480d4841f4f1527095b0c26ef23a5b000484
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}/config/apple.yml"
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 apple platform with config yml file') do |configYMLFilePath|
39
+ opts.on('-g', '--googleAndroid[=CONFIGYMLFILEPATH]', 'execute android platform with config yml file') do |configYMLFilePath|
37
40
  if configYMLFilePath.nil?
38
- configYMLFilePath = "#{basePath}/config/android.yml"
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 with config yml file') do
47
- androidConfigFilePath = "#{basePath}/config/android.yml"
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}/config/apple.yml"
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.6
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-08 00:00:00.000000000 Z
11
+ date: 2022-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: net-http