ZReviewTender 1.0.1 → 1.0.5
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 +22 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d7424669fd10f388ab510a8e2dd5883fcf1341d008d3eb373935354f401bb02a
|
4
|
+
data.tar.gz: c71871531e5e011ae609b6fd42220a25350e7791882862f2c52329f8e3c9169e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7306096441bcf8f3bdd47f4b00a5449ff3a1baaaf045159699eff5bfcde01d9876b333ca55894b976e0919061c678df3453e463f9e7a5d6fe7242f242bdaa561
|
7
|
+
data.tar.gz: 2f0544786b27029a3a745553a729e1f65aa7758f69cf8a917e0da26e6c7f15d96fd22039e195c09f765a4093f54f2bbd193b997a6d37af2d2ca80bac1fa080a4
|
data/bin/ZReviewTender
CHANGED
@@ -27,6 +27,8 @@ class Main
|
|
27
27
|
if configYMLFilePath.nil?
|
28
28
|
configYMLFilePath = "#{basePath}/config/apple.yml"
|
29
29
|
end
|
30
|
+
configFileCheck(configYMLFilePath, "--apple=CONFIG_YML_FILE_PATH")
|
31
|
+
|
30
32
|
fetcher = parseConfigYMLFile(configYMLFilePath)
|
31
33
|
fetcher.execute()
|
32
34
|
end
|
@@ -35,22 +37,39 @@ class Main
|
|
35
37
|
if configYMLFilePath.nil?
|
36
38
|
configYMLFilePath = "#{basePath}/config/android.yml"
|
37
39
|
end
|
40
|
+
configFileCheck(configYMLFilePath, "--googleAndroid=CONFIG_YML_FILE_PATH")
|
41
|
+
|
38
42
|
fetcher = parseConfigYMLFile(configYMLFilePath)
|
39
43
|
fetcher.execute()
|
40
44
|
end
|
41
45
|
|
42
46
|
opts.on('-r', '--run', 'execute with config yml file') do
|
43
|
-
|
44
|
-
|
47
|
+
androidConfigFilePath = "#{basePath}/config/android.yml"
|
48
|
+
configFileCheck(androidConfigFilePath, "--googleAndroid=CONFIG_YML_FILE_PATH")
|
49
|
+
|
50
|
+
fetcher = parseConfigYMLFile(androidConfigFilePath)
|
45
51
|
fetcher.execute()
|
46
|
-
|
52
|
+
|
53
|
+
#
|
54
|
+
|
47
55
|
appleConfigFilePath = "#{basePath}/config/apple.yml"
|
56
|
+
configFileCheck(appleConfigFilePath, "--apple=CONFIG_YML_FILE_PATH")
|
57
|
+
|
48
58
|
fetcher = parseConfigYMLFile(appleConfigFilePath)
|
49
59
|
fetcher.execute()
|
50
60
|
end
|
51
61
|
end.parse!
|
52
62
|
end
|
53
63
|
|
64
|
+
private
|
65
|
+
def configFileCheck(path, command)
|
66
|
+
if !File.exists? path
|
67
|
+
puts "Make sure you have vaild config file at #{path}"
|
68
|
+
puts "Or use ZReviewTender #{command} specify config.yml file path"
|
69
|
+
raise "Config file not found: #{path}"
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
54
73
|
private
|
55
74
|
def parseConfigYMLFile(configFilePath)
|
56
75
|
configYMLObj = YAML.load_file(configFilePath)
|