rexle 1.5.13 → 1.5.14
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/rexle.rb +4 -1
- data.tar.gz.sig +0 -0
- metadata +2 -2
- 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: '059fdfda400e750d0bcfe9e88c6b6140251b4d61c450f7daacf86c174aa7b691'
|
|
4
|
+
data.tar.gz: 934e357f812c5b12d46a988b8a2ac54ea3852f588996dad77d5e00c8c5b841f1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7b4453a204f3d70bb23e025912f9d378b21899452b63a3800ed79f4b31d11c2c6a23ad6f566dbeeded755de045e0c47d20b294910556467a7489d3d7d617200f
|
|
7
|
+
data.tar.gz: c19d966fa4b8ecd47c64ec934db1f817eeb5038b3ad8318fbc90b6f57b16424bbd35f6e3573b4ac7d6842cb808f328f4c45fa50bf9da34989a577157b17e8a7d
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/lib/rexle.rb
CHANGED
|
@@ -13,6 +13,9 @@ require 'backtrack-xpath'
|
|
|
13
13
|
|
|
14
14
|
# modifications:
|
|
15
15
|
|
|
16
|
+
# 15-Jan-2022: bug fix: Related to previous bug fix; Detecting
|
|
17
|
+
# Attributes::Value is now performed instead of
|
|
18
|
+
# a String object
|
|
16
19
|
# 14-Jan-2022: bug fix: Related to previous bug fix; Unescape is
|
|
17
20
|
# now only applied to objects of type Attributes::Value
|
|
18
21
|
# 01-Jan-2022: bug fix: Attribute values are no longer unescaped when
|
|
@@ -61,7 +64,7 @@ module XMLhelper
|
|
|
61
64
|
val = if v.is_a?(Array) then
|
|
62
65
|
v.join(' ')
|
|
63
66
|
else
|
|
64
|
-
v.is_a?(
|
|
67
|
+
v.is_a?(Attributes::Value) ? v.to_s(unescape: false) : v
|
|
65
68
|
end
|
|
66
69
|
|
|
67
70
|
"%s='%s'" % [k, val]
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rexle
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.14
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Robertson
|
|
@@ -35,7 +35,7 @@ cert_chain:
|
|
|
35
35
|
7GC2GlG9BZ9Re4sfu0pwhOe4qFiGyJciH9BWM8DpSRJPbEmLeoNUdU23JgQPhhkO
|
|
36
36
|
Kiffp9M4EsB/3/3SNM/RVklK
|
|
37
37
|
-----END CERTIFICATE-----
|
|
38
|
-
date: 2022-01-
|
|
38
|
+
date: 2022-01-15 00:00:00.000000000 Z
|
|
39
39
|
dependencies:
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: c32
|
metadata.gz.sig
CHANGED
|
Binary file
|