lutaml-model 0.8.8 → 0.8.9
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/lib/lutaml/model/version.rb +1 -1
- data/lib/lutaml/xml/schema/xsd/schema_validator.rb +3 -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: 002a96224c1367b179f30fe6c2f984b7ae80fa7a6c222d8866b10e26e8ee8c4c
|
|
4
|
+
data.tar.gz: 2677ff0aca481ae66bf7be4f47cb132417b8d59ddbbf5d266129e9e6c6017e57
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c28f9a50a50f742dc106fb34af4e620b8f12f036b5256e6e5b36bec7ed3ae0634294e078edeb48cef3983e82b266abdb214baa7dceab9e7bd865ad8858162bb5
|
|
7
|
+
data.tar.gz: 6ef9ffdf02e9e7497a717d082c77c4fce9de3350f1039c3073135fc5d1107ebd50c0024419c33839ff895c70f97aa5907c67455a19f29d4a56e3ca9815c08c79
|
data/lib/lutaml/model/version.rb
CHANGED
|
@@ -6,6 +6,9 @@ module Lutaml
|
|
|
6
6
|
module Xml
|
|
7
7
|
module Schema
|
|
8
8
|
module Xsd
|
|
9
|
+
# Ensure error classes are loaded before SchemaValidator references them
|
|
10
|
+
Error # trigger autoload
|
|
11
|
+
|
|
9
12
|
# Validates XSD schema documents before parsing
|
|
10
13
|
#
|
|
11
14
|
# This validator checks that XML content is a valid XSD schema document
|