savant-echo 2.1.1 → 2.1.2
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/src/Savant.rb +4 -0
- 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: a5a5d57cfe5c05153526c0de7f7c63bbcb48a957c98d7a5847d4211e1312ce03
|
|
4
|
+
data.tar.gz: '014483744a4552ed2f0e63bace4cfb9f6c83368828831c760d88b17fcbaafdeb'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a6053e16909951d393c4dd242c13104cc23bca7f40126754655433b405d4cebc7914dbbca1b9051df3cd2c759fc50d49f429bb214ef700e6449c98cafabb6f00
|
|
7
|
+
data.tar.gz: c6a1812a60eb2dcb69ba643f26b989314a5cca4ac872d8568c9f90e3abf4e141bebe85e396316b6756780721e9ab6b4424213f27105c1865ae1a975b11ebbf63
|
data/bin/src/Savant.rb
CHANGED
|
@@ -181,6 +181,10 @@ class Savant #< VR::ListView
|
|
|
181
181
|
tmpArray = @version.split("-")
|
|
182
182
|
@version = tmpArray[0].chomp
|
|
183
183
|
end
|
|
184
|
+
if @savantHostVersion.include?(":")
|
|
185
|
+
tmpArray = @savantHostVersion.split(":")
|
|
186
|
+
@savantHostVersion = tmpArray[0].chomp
|
|
187
|
+
end
|
|
184
188
|
if Gem::Version.new(@version) > Gem::Version.new('8.2.0') && !@version.empty?
|
|
185
189
|
return true
|
|
186
190
|
else
|