ZReviewTender 1.2.2 → 1.2.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/.version +1 -1
- data/bin/ZReviewTender +15 -1
- 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: c197ecf59b28ef67df11ec8795a6cd740e206211b072325dec5b02b9c1bec232
|
4
|
+
data.tar.gz: bd8ecd956b8e2c528a5a6d19dbf1f6c60be0be6e9fe0ccfeab2a3e6f840b2f2c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a761827f14d965bf732955a2df5aad4efc8ab3f6d7a2045c212cbecce8479192415f1f47ef4ffcad306fabc45854ab56eed43422425025ed43cfcd2a2768ee2
|
7
|
+
data.tar.gz: df78adf8c930f754031658063b8f8e8a8d7adb3aa56697c7e8e9fe8e3ea23efc2a12e12f5e05773741e408627d6167740f468399c40b0577a01fb16156703713
|
data/.version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.2.
|
1
|
+
1.2.5
|
data/bin/ZReviewTender
CHANGED
@@ -91,6 +91,10 @@ class Main
|
|
91
91
|
appleDestExampleYML = "#{basePath}/#{defaultConfigDirName}/#{defaultAppleConfigFileName}"
|
92
92
|
androidDestExampleYML = "#{basePath}/#{defaultConfigDirName}/#{defaultAndroidConfigFileName}"
|
93
93
|
|
94
|
+
if !File.exists?("#{basePath}/latestCheckTimestamp/.keep")
|
95
|
+
File.open("#{basePath}/latestCheckTimestamp/.keep", 'w') { |file| file.write("") }
|
96
|
+
end
|
97
|
+
#
|
94
98
|
if File.exists?(appleSourceExampleYML)
|
95
99
|
if File.exists?(appleDestExampleYML)
|
96
100
|
puts "Failed! Config YML File Exists: #{appleDestExampleYML}"
|
@@ -122,7 +126,17 @@ class Main
|
|
122
126
|
end
|
123
127
|
end
|
124
128
|
|
125
|
-
opts.on('-
|
129
|
+
opts.on('-d', '--delete', 'delete latest check timestamp log file.(factory reset)') do
|
130
|
+
FileUtils.rm_rf("#{basePath}/latestCheckTimestamp/")
|
131
|
+
Helper.createDirIfNotExist("#{basePath}/latestCheckTimestamp/")
|
132
|
+
if !File.exists?("#{basePath}/latestCheckTimestamp/.keep")
|
133
|
+
File.open("#{basePath}/latestCheckTimestamp/.keep", 'w') { |file| file.write("") }
|
134
|
+
end
|
135
|
+
|
136
|
+
puts "Clean all latest check timestamp log file in /latestCheckTimestamp success."
|
137
|
+
end
|
138
|
+
|
139
|
+
opts.on('-v', '--version', 'show current version of ZReivewTender') do
|
126
140
|
version = Version.new
|
127
141
|
puts "Current ZReviewTender Version: #{version.getLocalVersion()}"
|
128
142
|
|