ox 2.14.3 → 2.14.4
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/CHANGELOG.md +7 -1
- data/ext/ox/gen_load.c +3 -3
- data/lib/ox/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8bef5b070b17c09cb705e4a6f9b89f7de94c32d426057261cc2c763f10217fa8
|
4
|
+
data.tar.gz: e79898f9f7100fe30c99bbb111d52098316e19422afe47f91721f1de36aa5c0b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1079d0bd17806632a2eea08ec38e78baba5262af6b5ec58c434bf1bc2520fad6850680a6cb53a1e1dac67b175de3487f639d75e19b76cbeb9960bdd1db5e4b9
|
7
|
+
data.tar.gz: 941904c648314466f078c72a8004cb0f5da2e39ca5883485f1af8b4daf698d6bf528f38e4c84bc056ad01e7fa6c5333ff26a8665acf3af932c51ede5ef40c0f6
|
data/CHANGELOG.md
CHANGED
@@ -2,7 +2,13 @@
|
|
2
2
|
|
3
3
|
All changes to the Ox gem are documented here. Releases follow semantic versioning.
|
4
4
|
|
5
|
-
## [2.14.
|
5
|
+
## [2.14.4] - 2021-03-19
|
6
|
+
|
7
|
+
### Fixed
|
8
|
+
|
9
|
+
- Really fixed code issue around HAVE_RB_ENC_ASSOCIATE.
|
10
|
+
|
11
|
+
## [2.14.3] - 2021-03-12
|
6
12
|
|
7
13
|
### Fixed
|
8
14
|
|
data/ext/ox/gen_load.c
CHANGED
@@ -123,11 +123,11 @@ create_prolog_doc(PInfo pi, const char *target, Attr attrs) {
|
|
123
123
|
rb_enc_associate(rstr, pi->options->rb_enc);
|
124
124
|
}
|
125
125
|
rb_hash_aset(ah, rstr, rb_str_new2(attrs->value));
|
126
|
-
if (0 == strcmp("encoding", attrs->name)) {
|
127
|
-
pi->options->rb_enc = rb_enc_find(attrs->value);
|
128
|
-
}
|
129
126
|
#endif
|
130
127
|
}
|
128
|
+
if (0 == strcmp("encoding", attrs->name)) {
|
129
|
+
pi->options->rb_enc = rb_enc_find(attrs->value);
|
130
|
+
}
|
131
131
|
}
|
132
132
|
nodes = rb_ary_new();
|
133
133
|
rb_ivar_set(doc, ox_attributes_id, ah);
|
data/lib/ox/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.14.
|
4
|
+
version: 2.14.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Ohler
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-03-
|
11
|
+
date: 2021-03-19 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: "A fast XML parser and object serializer that uses only standard C lib.\n\nOptimized
|
14
14
|
XML (Ox), as the name implies was written to provide speed optimized\nXML handling.
|