moxml 0.5.69 → 0.5.70
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/README.adoc +11 -3
- data/lib/moxml/version.rb +1 -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: 5b329e431ed88f56890e49f855af38ed25c7ac216cbb35fe91dfc1377deeb44a
|
|
4
|
+
data.tar.gz: 113f2b97ceae1f8fcd3bb557ada4205c693ce8e603078ca2b749f5cbb91f0f86
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b7de514485b6b9bb2393f61584b6f02d474bcd351ed2dc049aebc29ed31c4f8d2220b80facb9757df43fcac0bf8a0a46023c09af7c987ad06b22eaceea181bad
|
|
7
|
+
data.tar.gz: c3cd5913e50a4b700609cee9729e1eeb1b2eddcd98292a83764268319f2dcd0f8c79092459f58deba10f9a9eeec4de6a467422316b11496148fc0ab26edcee7c
|
data/README.adoc
CHANGED
|
@@ -51,7 +51,10 @@ Leptris:: https://github.com/leptris/leptris[Leptris], a pure-C99 XML 1.0
|
|
|
51
51
|
parser with a W3C-conformant XPath 1.0 engine, consumed through the
|
|
52
52
|
https://github.com/leptris/leptris-ruby[leptris-ruby] FFI binding
|
|
53
53
|
(precompiled platform gems — no compilation at install). Fastest on
|
|
54
|
-
every measured operation
|
|
54
|
+
every measured bulk operation — parse, XPath, serialization, SAX, and
|
|
55
|
+
the compiled Moxml::Plan / Moxml::StructPlan materialization paths
|
|
56
|
+
(StructPlan runs 2.3-2.6x raw Nokogiri on the benchmark shape);
|
|
57
|
+
requires leptris >= 1.9.32 (see version table below).
|
|
55
58
|
|
|
56
59
|
=== Underlying library versions
|
|
57
60
|
|
|
@@ -93,8 +96,13 @@ moxml's customized generator and decoder overrides.
|
|
|
93
96
|
Newer bindings unlock more native surface automatically:
|
|
94
97
|
1.9.163.7+ single-result XPath seams, 1.9.174.4+ C-minted identity
|
|
95
98
|
wrappers, 1.9.174.6+ one-dispatch subtree walks, 1.9.177+ first-class
|
|
96
|
-
entity references (`entity_mode: :keep`).
|
|
97
|
-
|
|
99
|
+
entity references (`entity_mode: :keep`), 1.9.193.4+ native plan rows
|
|
100
|
+
(`Moxml::Plan`), 1.9.194.1+ hot-read aliases, 1.9.201.1+ the C struct
|
|
101
|
+
executor (`Moxml::StructPlan`; the floor is the varargs-mint fix),
|
|
102
|
+
1.9.204+ native document-level parts (created DOCTYPEs as native
|
|
103
|
+
nodes, document-PI removal, declaration clear). Current
|
|
104
|
+
recommendation: 1.9.208+ (carries the iterparse all-nil fix,
|
|
105
|
+
leptris/leptris#1242).
|
|
98
106
|
|===
|
|
99
107
|
|
|
100
108
|
NOTE: moxml's dev Gemfile pins `leptris ~> 1.9.174`, `nokogiri ~> 1.18`,
|
data/lib/moxml/version.rb
CHANGED