kvx 1.0.1 → 1.0.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
- checksums.yaml.gz.sig +0 -0
- data/lib/kvx.rb +7 -3
- data.tar.gz.sig +0 -0
- metadata +6 -6
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 59fe7880fcbc6fb271deaa4a861cc59bfbc5c5066ad1ce3bcf8f5118500772da
|
|
4
|
+
data.tar.gz: 80add92b8de605c41f52b3d980c1dbef1e0ab36528967ee4afd01f6d489aa29b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c0c42b50055513832cd28efd095fd924359c396af986fc5769b28efb867bf64bcf1175653e1b414b5790184d9feba8500ff4b9a480128d3b38f6ada8e8db1bfa
|
|
7
|
+
data.tar.gz: cc230dcef1e3eeb604523676e1d335243706b86d691e210d2cc4fc82a81f14c33cefe1977fb1db1907d7634625b0f008748bdd118d30abfb5720fba0b2441ea0
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/lib/kvx.rb
CHANGED
|
@@ -311,11 +311,15 @@ s = "
|
|
|
311
311
|
buffer, type = RXFHelper.read(s)
|
|
312
312
|
puts ('buffer: ' + buffer.inspect).debug if @debug
|
|
313
313
|
|
|
314
|
-
if buffer.lstrip =~ /^<\?xml/ then
|
|
315
|
-
|
|
314
|
+
if buffer.force_encoding("UTF-8").lstrip =~ /^<\?xml/ then
|
|
315
|
+
|
|
316
|
+
s = buffer.force_encoding("UTF-8")
|
|
317
|
+
doc = Rexle.new(s)
|
|
316
318
|
@instructions = doc.instructions
|
|
317
319
|
puts '@instructions: ' + @instructions.inspect if @debug
|
|
320
|
+
|
|
318
321
|
xml_to_h(doc.root)
|
|
322
|
+
|
|
319
323
|
else
|
|
320
324
|
parse_to_h(buffer)
|
|
321
325
|
end
|
|
@@ -338,7 +342,7 @@ s = "
|
|
|
338
342
|
|
|
339
343
|
def parse_to_h(s, header_pattern: %r(^<\?kvx[\s\?]))
|
|
340
344
|
|
|
341
|
-
raw_txt, _ = RXFHelper.read(s)
|
|
345
|
+
raw_txt, _ = RXFHelper.read(s).force_encoding("UTF-8")
|
|
342
346
|
|
|
343
347
|
# does the raw_txt contain header information?
|
|
344
348
|
a = s.strip.lines
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kvx
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Robertson
|
|
@@ -35,7 +35,7 @@ cert_chain:
|
|
|
35
35
|
m/+jxdgFjKKGxeZqunu9cp5ca9wSjjtKh/VA/3xZtPwokCa7vCMB+ZxUP0jvd++u
|
|
36
36
|
OTXy8k/zqddw/VfD/It1UUK4
|
|
37
37
|
-----END CERTIFICATE-----
|
|
38
|
-
date: 2022-
|
|
38
|
+
date: 2022-02-18 00:00:00.000000000 Z
|
|
39
39
|
dependencies:
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: line-tree
|
|
@@ -63,20 +63,20 @@ dependencies:
|
|
|
63
63
|
requirements:
|
|
64
64
|
- - "~>"
|
|
65
65
|
- !ruby/object:Gem::Version
|
|
66
|
-
version: '1.
|
|
66
|
+
version: '1.3'
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: 1.
|
|
69
|
+
version: 1.3.3
|
|
70
70
|
type: :runtime
|
|
71
71
|
prerelease: false
|
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
|
73
73
|
requirements:
|
|
74
74
|
- - "~>"
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
|
-
version: '1.
|
|
76
|
+
version: '1.3'
|
|
77
77
|
- - ">="
|
|
78
78
|
- !ruby/object:Gem::Version
|
|
79
|
-
version: 1.
|
|
79
|
+
version: 1.3.3
|
|
80
80
|
description:
|
|
81
81
|
email: digital.robertson@gmail.com
|
|
82
82
|
executables: []
|
metadata.gz.sig
CHANGED
|
Binary file
|