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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/bin/ZReviewTender +22 -3
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7aa2c137be0a68444622a08d3ab704b221900d1b9a7ea924431647f79f4aba13
4
- data.tar.gz: 571f7acf138712cf7128565ed6810b0504b39b370009556a25603d963c40a3b4
3
+ metadata.gz: d7424669fd10f388ab510a8e2dd5883fcf1341d008d3eb373935354f401bb02a
4
+ data.tar.gz: c71871531e5e011ae609b6fd42220a25350e7791882862f2c52329f8e3c9169e
5
5
  SHA512:
6
- metadata.gz: ccf6b17d95cca68d1bdd9c6f2f49ce4556a9884eccbd161e0ec9cea2ab5e44360d563d6a40181d4b796cf15e11dd238a8a48cb280291e8a3c192b9e314331ff4
7
- data.tar.gz: 8a28b397e178f3ecdc67ee80e01e6e3d405c4d17cf5749ba93898365b51fee7534c8e22d2f5ae2a33df22761240a37524e1618c022dc8dc2f016f146dbbef95a
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
- appleConfigFilePath = "#{basePath}/config/android.yml"
44
- fetcher = parseConfigYMLFile(appleConfigFilePath)
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)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ZReviewTender
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - ZhgChgLi