lutaml-model 0.8.3 → 0.8.5
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/.github/workflows/dependent-tests.yml +3 -1
- data/.rubocop.yml +18 -0
- data/.rubocop_todo.yml +16 -22
- data/Gemfile +2 -0
- data/README.adoc +327 -3
- data/docs/_guides/document-validation.adoc +303 -0
- data/docs/_guides/index.adoc +19 -0
- data/docs/_guides/jsonld-serialization.adoc +217 -0
- data/docs/_guides/rdf-serialization.adoc +344 -0
- data/docs/_guides/turtle-serialization.adoc +224 -0
- data/docs/_guides/xml-mapping.adoc +9 -1
- data/docs/_guides/xml_mappings/07_best_practices.adoc +36 -0
- data/docs/_guides/xml_mappings/08_troubleshooting.adoc +89 -0
- data/docs/_pages/serialization_adapters.adoc +31 -0
- data/docs/_references/index.adoc +1 -0
- data/docs/_references/rdf-namespaces.adoc +243 -0
- data/docs/_tutorials/lutaml-xml-architecture.adoc +6 -1
- data/docs/index.adoc +3 -2
- data/lib/lutaml/jsonld/adapter.rb +23 -0
- data/lib/lutaml/jsonld/context.rb +69 -0
- data/lib/lutaml/jsonld/term_definition.rb +39 -0
- data/lib/lutaml/jsonld/transform.rb +174 -0
- data/lib/lutaml/jsonld.rb +23 -0
- data/lib/lutaml/model/attribute.rb +19 -1
- data/lib/lutaml/model/error/liquid_drop_already_registered_error.rb +11 -0
- data/lib/lutaml/model/error/ordered_content_mapping_error.rb +17 -0
- data/lib/lutaml/model/format_registry.rb +10 -1
- data/lib/lutaml/model/global_context.rb +1 -0
- data/lib/lutaml/model/liquefiable.rb +12 -15
- data/lib/lutaml/model/mapping/mapping_rule.rb +10 -2
- data/lib/lutaml/model/mapping_hash.rb +1 -1
- data/lib/lutaml/model/serialize/format_conversion.rb +17 -1
- data/lib/lutaml/model/services/transformer.rb +67 -32
- data/lib/lutaml/model/transform.rb +41 -4
- data/lib/lutaml/model/uninitialized_class.rb +11 -5
- data/lib/lutaml/model/validation/concerns/has_issues.rb +27 -0
- data/lib/lutaml/model/validation/context.rb +36 -0
- data/lib/lutaml/model/validation/issue.rb +62 -0
- data/lib/lutaml/model/validation/layer_result.rb +34 -0
- data/lib/lutaml/model/validation/profile.rb +66 -0
- data/lib/lutaml/model/validation/registry.rb +60 -0
- data/lib/lutaml/model/validation/remediation.rb +33 -0
- data/lib/lutaml/model/validation/remediation_result.rb +20 -0
- data/lib/lutaml/model/validation/report.rb +39 -0
- data/lib/lutaml/model/validation/rule.rb +59 -0
- data/lib/lutaml/model/validation.rb +2 -1
- data/lib/lutaml/model/validation_framework.rb +77 -0
- data/lib/lutaml/model/version.rb +1 -1
- data/lib/lutaml/model.rb +10 -0
- data/lib/lutaml/rdf/error.rb +7 -0
- data/lib/lutaml/rdf/iri.rb +44 -0
- data/lib/lutaml/rdf/language_tagged.rb +11 -0
- data/lib/lutaml/rdf/literal.rb +62 -0
- data/lib/lutaml/rdf/mapping.rb +71 -0
- data/lib/lutaml/rdf/mapping_rule.rb +35 -0
- data/lib/lutaml/rdf/member_rule.rb +13 -0
- data/lib/lutaml/rdf/namespace.rb +58 -0
- data/lib/lutaml/rdf/namespace_set.rb +69 -0
- data/lib/lutaml/rdf/namespaces/dcterms_namespace.rb +12 -0
- data/lib/lutaml/rdf/namespaces/owl_namespace.rb +12 -0
- data/lib/lutaml/rdf/namespaces/rdf_namespace.rb +14 -0
- data/lib/lutaml/rdf/namespaces/rdfs_namespace.rb +12 -0
- data/lib/lutaml/rdf/namespaces/skos_namespace.rb +12 -0
- data/lib/lutaml/rdf/namespaces/xsd_namespace.rb +12 -0
- data/lib/lutaml/rdf/namespaces.rb +14 -0
- data/lib/lutaml/rdf/transform.rb +36 -0
- data/lib/lutaml/rdf.rb +19 -0
- data/lib/lutaml/turtle/adapter.rb +35 -0
- data/lib/lutaml/turtle/mapping.rb +7 -0
- data/lib/lutaml/turtle/transform.rb +158 -0
- data/lib/lutaml/turtle.rb +22 -0
- data/lib/lutaml/xml/adapter/nokogiri_adapter.rb +9 -2
- data/lib/lutaml/xml/adapter/oga_adapter.rb +11 -3
- data/lib/lutaml/xml/adapter/ox_adapter.rb +5 -2
- data/lib/lutaml/xml/adapter/rexml_adapter.rb +10 -3
- data/lib/lutaml/xml/adapter_element.rb +26 -2
- data/lib/lutaml/xml/data_model.rb +14 -0
- data/lib/lutaml/xml/document.rb +3 -0
- data/lib/lutaml/xml/element.rb +8 -2
- data/lib/lutaml/xml/mapping.rb +9 -0
- data/lib/lutaml/xml/model_transform.rb +42 -0
- data/lib/lutaml/xml/schema/xsd/base.rb +4 -1
- data/lib/lutaml/xml/serialization/instance_methods.rb +3 -1
- data/lib/lutaml/xml/transformation/ordered_applier.rb +46 -2
- data/lib/lutaml/xml/transformation.rb +40 -1
- data/lib/lutaml/xml/xml_element.rb +8 -7
- data/lutaml-model.gemspec +1 -1
- data/spec/lutaml/integration/edge_cases_spec.rb +109 -0
- data/spec/lutaml/integration/multi_format_spec.rb +106 -0
- data/spec/lutaml/integration/round_trip_spec.rb +170 -0
- data/spec/lutaml/jsonld/adapter_spec.rb +46 -0
- data/spec/lutaml/jsonld/context_spec.rb +114 -0
- data/spec/lutaml/jsonld/term_definition_spec.rb +55 -0
- data/spec/lutaml/jsonld/transform_spec.rb +211 -0
- data/spec/lutaml/model/attribute_default_cache_spec.rb +58 -0
- data/spec/lutaml/model/liquefiable_spec.rb +22 -6
- data/spec/lutaml/model/liquid_compatibility_spec.rb +442 -0
- data/spec/lutaml/model/ordered_content_spec.rb +5 -5
- data/spec/lutaml/model/services/transformer_spec.rb +43 -0
- data/spec/lutaml/model/transform_cache_spec.rb +62 -0
- data/spec/lutaml/model/transform_dynamic_attributes_spec.rb +41 -0
- data/spec/lutaml/model/uninitialized_class_deep_dup_spec.rb +39 -0
- data/spec/lutaml/model/uninitialized_class_spec.rb +14 -2
- data/spec/lutaml/model/validation/concerns/has_issues_spec.rb +76 -0
- data/spec/lutaml/model/validation/context_spec.rb +60 -0
- data/spec/lutaml/model/validation/issue_spec.rb +77 -0
- data/spec/lutaml/model/validation/layer_result_spec.rb +66 -0
- data/spec/lutaml/model/validation/profile_spec.rb +134 -0
- data/spec/lutaml/model/validation/registry_spec.rb +94 -0
- data/spec/lutaml/model/validation/remediation_result_spec.rb +23 -0
- data/spec/lutaml/model/validation/remediation_spec.rb +72 -0
- data/spec/lutaml/model/validation/report_spec.rb +58 -0
- data/spec/lutaml/model/validation/rule_spec.rb +134 -0
- data/spec/lutaml/model/validation/uninitialized_class_validate_spec.rb +29 -0
- data/spec/lutaml/model/validation/validation_error_spec.rb +29 -0
- data/spec/lutaml/model/validation/validation_framework_spec.rb +110 -0
- data/spec/lutaml/rdf/graph_serialization_spec.rb +137 -0
- data/spec/lutaml/rdf/iri_spec.rb +73 -0
- data/spec/lutaml/rdf/literal_spec.rb +98 -0
- data/spec/lutaml/rdf/mapping_spec.rb +164 -0
- data/spec/lutaml/rdf/member_rule_spec.rb +17 -0
- data/spec/lutaml/rdf/namespace_set_spec.rb +115 -0
- data/spec/lutaml/rdf/namespace_spec.rb +241 -0
- data/spec/lutaml/rdf/rdf_transform_spec.rb +82 -0
- data/spec/lutaml/turtle/adapter_spec.rb +47 -0
- data/spec/lutaml/turtle/mapping_spec.rb +123 -0
- data/spec/lutaml/turtle/transform_spec.rb +273 -0
- data/spec/lutaml/xml/content_model_validation_spec.rb +157 -0
- data/spec/lutaml/xml/mapping_spec.rb +12 -7
- metadata +95 -7
- data/spec/fixtures/liquid_templates/_ceramics.liquid +0 -3
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lutaml-model
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-05-
|
|
11
|
+
date: 2026-05-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|
|
@@ -70,16 +70,22 @@ dependencies:
|
|
|
70
70
|
name: liquid
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
|
-
- - "
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '4.0'
|
|
76
|
+
- - "<"
|
|
74
77
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: '
|
|
78
|
+
version: '6.0'
|
|
76
79
|
type: :runtime
|
|
77
80
|
prerelease: false
|
|
78
81
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
82
|
requirements:
|
|
80
|
-
- - "
|
|
83
|
+
- - ">="
|
|
84
|
+
- !ruby/object:Gem::Version
|
|
85
|
+
version: '4.0'
|
|
86
|
+
- - "<"
|
|
81
87
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: '
|
|
88
|
+
version: '6.0'
|
|
83
89
|
- !ruby/object:Gem::Dependency
|
|
84
90
|
name: moxml
|
|
85
91
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -190,13 +196,17 @@ files:
|
|
|
190
196
|
- docs/_guides/character-encoding.adoc
|
|
191
197
|
- docs/_guides/collection-serialization.adoc
|
|
192
198
|
- docs/_guides/creating-xsd.adoc
|
|
199
|
+
- docs/_guides/document-validation.adoc
|
|
193
200
|
- docs/_guides/index.adoc
|
|
201
|
+
- docs/_guides/jsonld-serialization.adoc
|
|
194
202
|
- docs/_guides/keyvalue-serialization.adoc
|
|
195
203
|
- docs/_guides/liquid-templates.adoc
|
|
196
204
|
- docs/_guides/missing-values-handling.adoc
|
|
197
205
|
- docs/_guides/ooxml-examples.adoc
|
|
206
|
+
- docs/_guides/rdf-serialization.adoc
|
|
198
207
|
- docs/_guides/schema-generation.adoc
|
|
199
208
|
- docs/_guides/schema-import.adoc
|
|
209
|
+
- docs/_guides/turtle-serialization.adoc
|
|
200
210
|
- docs/_guides/value-transformations.adoc
|
|
201
211
|
- docs/_guides/xml-mapping.adoc
|
|
202
212
|
- docs/_guides/xml-mappings-guide.adoc
|
|
@@ -246,6 +256,7 @@ files:
|
|
|
246
256
|
- docs/_references/instance-serialization.adoc
|
|
247
257
|
- docs/_references/lutaml-namespace-planning.md
|
|
248
258
|
- docs/_references/parent-root-context.adoc
|
|
259
|
+
- docs/_references/rdf-namespaces.adoc
|
|
249
260
|
- docs/_references/reference_type.adoc
|
|
250
261
|
- docs/_references/serialization-model-mappings.adoc
|
|
251
262
|
- docs/_references/three-phase-namespace-architecture.adoc
|
|
@@ -306,6 +317,11 @@ files:
|
|
|
306
317
|
- lib/lutaml/jsonl/adapter/mapping_rule.rb
|
|
307
318
|
- lib/lutaml/jsonl/adapter/standard_adapter.rb
|
|
308
319
|
- lib/lutaml/jsonl/adapter/transform.rb
|
|
320
|
+
- lib/lutaml/jsonld.rb
|
|
321
|
+
- lib/lutaml/jsonld/adapter.rb
|
|
322
|
+
- lib/lutaml/jsonld/context.rb
|
|
323
|
+
- lib/lutaml/jsonld/term_definition.rb
|
|
324
|
+
- lib/lutaml/jsonld/transform.rb
|
|
309
325
|
- lib/lutaml/key_value.rb
|
|
310
326
|
- lib/lutaml/key_value/adapter.rb
|
|
311
327
|
- lib/lutaml/key_value/adapter/hash.rb
|
|
@@ -405,6 +421,7 @@ files:
|
|
|
405
421
|
- lib/lutaml/model/error/invalid_format_error.rb
|
|
406
422
|
- lib/lutaml/model/error/invalid_value_error.rb
|
|
407
423
|
- lib/lutaml/model/error/liquid_class_not_found_error.rb
|
|
424
|
+
- lib/lutaml/model/error/liquid_drop_already_registered_error.rb
|
|
408
425
|
- lib/lutaml/model/error/liquid_not_enabled_error.rb
|
|
409
426
|
- lib/lutaml/model/error/mapping_already_exists_error.rb
|
|
410
427
|
- lib/lutaml/model/error/mapping_attribute_missing_error.rb
|
|
@@ -415,6 +432,7 @@ files:
|
|
|
415
432
|
- lib/lutaml/model/error/no_mapping_found_error.rb
|
|
416
433
|
- lib/lutaml/model/error/no_root_mapping_error.rb
|
|
417
434
|
- lib/lutaml/model/error/no_root_namespace_error.rb
|
|
435
|
+
- lib/lutaml/model/error/ordered_content_mapping_error.rb
|
|
418
436
|
- lib/lutaml/model/error/pattern_not_matched_error.rb
|
|
419
437
|
- lib/lutaml/model/error/polymorphic_error.rb
|
|
420
438
|
- lib/lutaml/model/error/register/not_registrable_class_error.rb
|
|
@@ -565,10 +583,39 @@ files:
|
|
|
565
583
|
- lib/lutaml/model/uninitialized_class.rb
|
|
566
584
|
- lib/lutaml/model/utils.rb
|
|
567
585
|
- lib/lutaml/model/validation.rb
|
|
586
|
+
- lib/lutaml/model/validation/concerns/has_issues.rb
|
|
587
|
+
- lib/lutaml/model/validation/context.rb
|
|
588
|
+
- lib/lutaml/model/validation/issue.rb
|
|
589
|
+
- lib/lutaml/model/validation/layer_result.rb
|
|
590
|
+
- lib/lutaml/model/validation/profile.rb
|
|
591
|
+
- lib/lutaml/model/validation/registry.rb
|
|
592
|
+
- lib/lutaml/model/validation/remediation.rb
|
|
593
|
+
- lib/lutaml/model/validation/remediation_result.rb
|
|
594
|
+
- lib/lutaml/model/validation/report.rb
|
|
595
|
+
- lib/lutaml/model/validation/rule.rb
|
|
596
|
+
- lib/lutaml/model/validation_framework.rb
|
|
568
597
|
- lib/lutaml/model/value_transformer.rb
|
|
569
598
|
- lib/lutaml/model/version.rb
|
|
570
599
|
- lib/lutaml/model/yaml.rb
|
|
571
600
|
- lib/lutaml/model/yamls.rb
|
|
601
|
+
- lib/lutaml/rdf.rb
|
|
602
|
+
- lib/lutaml/rdf/error.rb
|
|
603
|
+
- lib/lutaml/rdf/iri.rb
|
|
604
|
+
- lib/lutaml/rdf/language_tagged.rb
|
|
605
|
+
- lib/lutaml/rdf/literal.rb
|
|
606
|
+
- lib/lutaml/rdf/mapping.rb
|
|
607
|
+
- lib/lutaml/rdf/mapping_rule.rb
|
|
608
|
+
- lib/lutaml/rdf/member_rule.rb
|
|
609
|
+
- lib/lutaml/rdf/namespace.rb
|
|
610
|
+
- lib/lutaml/rdf/namespace_set.rb
|
|
611
|
+
- lib/lutaml/rdf/namespaces.rb
|
|
612
|
+
- lib/lutaml/rdf/namespaces/dcterms_namespace.rb
|
|
613
|
+
- lib/lutaml/rdf/namespaces/owl_namespace.rb
|
|
614
|
+
- lib/lutaml/rdf/namespaces/rdf_namespace.rb
|
|
615
|
+
- lib/lutaml/rdf/namespaces/rdfs_namespace.rb
|
|
616
|
+
- lib/lutaml/rdf/namespaces/skos_namespace.rb
|
|
617
|
+
- lib/lutaml/rdf/namespaces/xsd_namespace.rb
|
|
618
|
+
- lib/lutaml/rdf/transform.rb
|
|
572
619
|
- lib/lutaml/toml.rb
|
|
573
620
|
- lib/lutaml/toml/adapter.rb
|
|
574
621
|
- lib/lutaml/toml/adapter/document.rb
|
|
@@ -578,6 +625,10 @@ files:
|
|
|
578
625
|
- lib/lutaml/toml/adapter/tomlib_adapter.rb
|
|
579
626
|
- lib/lutaml/toml/adapter/transform.rb
|
|
580
627
|
- lib/lutaml/toml/type/serializers.rb
|
|
628
|
+
- lib/lutaml/turtle.rb
|
|
629
|
+
- lib/lutaml/turtle/adapter.rb
|
|
630
|
+
- lib/lutaml/turtle/mapping.rb
|
|
631
|
+
- lib/lutaml/turtle/transform.rb
|
|
581
632
|
- lib/lutaml/xml.rb
|
|
582
633
|
- lib/lutaml/xml/adapter.rb
|
|
583
634
|
- lib/lutaml/xml/adapter/adapter_helpers.rb
|
|
@@ -821,7 +872,6 @@ files:
|
|
|
821
872
|
- spec/fixtures/geolexica_v2_sample.yaml
|
|
822
873
|
- spec/fixtures/geolexica_v2_sample2.yaml
|
|
823
874
|
- spec/fixtures/liquid_templates/_ceramic.liquid
|
|
824
|
-
- spec/fixtures/liquid_templates/_ceramics.liquid
|
|
825
875
|
- spec/fixtures/liquid_templates/_ceramics_in_one.liquid
|
|
826
876
|
- spec/fixtures/person.rb
|
|
827
877
|
- spec/fixtures/sample_model.rb
|
|
@@ -1494,11 +1544,19 @@ files:
|
|
|
1494
1544
|
- spec/fixtures/xml/user.xsd
|
|
1495
1545
|
- spec/fixtures/xml/valid_math_document.xml
|
|
1496
1546
|
- spec/fixtures/yamls_range_concept.rb
|
|
1547
|
+
- spec/lutaml/integration/edge_cases_spec.rb
|
|
1548
|
+
- spec/lutaml/integration/multi_format_spec.rb
|
|
1549
|
+
- spec/lutaml/integration/round_trip_spec.rb
|
|
1550
|
+
- spec/lutaml/jsonld/adapter_spec.rb
|
|
1551
|
+
- spec/lutaml/jsonld/context_spec.rb
|
|
1552
|
+
- spec/lutaml/jsonld/term_definition_spec.rb
|
|
1553
|
+
- spec/lutaml/jsonld/transform_spec.rb
|
|
1497
1554
|
- spec/lutaml/key_value/transformation/collection_serializer_spec.rb
|
|
1498
1555
|
- spec/lutaml/key_value/transformation/rule_compiler_spec.rb
|
|
1499
1556
|
- spec/lutaml/key_value/transformation/value_serializer_spec.rb
|
|
1500
1557
|
- spec/lutaml/key_value/transformation_spec.rb
|
|
1501
1558
|
- spec/lutaml/model/attribute_collection_spec.rb
|
|
1559
|
+
- spec/lutaml/model/attribute_default_cache_spec.rb
|
|
1502
1560
|
- spec/lutaml/model/attribute_form_default_spec.rb
|
|
1503
1561
|
- spec/lutaml/model/attribute_spec.rb
|
|
1504
1562
|
- spec/lutaml/model/cached_type_resolver_spec.rb
|
|
@@ -1542,6 +1600,7 @@ files:
|
|
|
1542
1600
|
- spec/lutaml/model/key_value_mapping_spec.rb
|
|
1543
1601
|
- spec/lutaml/model/lazy_collection_spec.rb
|
|
1544
1602
|
- spec/lutaml/model/liquefiable_spec.rb
|
|
1603
|
+
- spec/lutaml/model/liquid_compatibility_spec.rb
|
|
1545
1604
|
- spec/lutaml/model/logger_spec.rb
|
|
1546
1605
|
- spec/lutaml/model/map_all_spec.rb
|
|
1547
1606
|
- spec/lutaml/model/map_content_spec.rb
|
|
@@ -1573,9 +1632,12 @@ files:
|
|
|
1573
1632
|
- spec/lutaml/model/serializable_validation_spec.rb
|
|
1574
1633
|
- spec/lutaml/model/serialize_perf_guard_spec.rb
|
|
1575
1634
|
- spec/lutaml/model/services/default_value_resolver_spec.rb
|
|
1635
|
+
- spec/lutaml/model/services/transformer_spec.rb
|
|
1576
1636
|
- spec/lutaml/model/simple_model_spec.rb
|
|
1577
1637
|
- spec/lutaml/model/toml_adapter_spec.rb
|
|
1578
1638
|
- spec/lutaml/model/toml_spec.rb
|
|
1639
|
+
- spec/lutaml/model/transform_cache_spec.rb
|
|
1640
|
+
- spec/lutaml/model/transform_dynamic_attributes_spec.rb
|
|
1579
1641
|
- spec/lutaml/model/transformation_builder_spec.rb
|
|
1580
1642
|
- spec/lutaml/model/transformation_spec.rb
|
|
1581
1643
|
- spec/lutaml/model/type/base64_binary_spec.rb
|
|
@@ -1603,8 +1665,22 @@ files:
|
|
|
1603
1665
|
- spec/lutaml/model/type_resolver_spec.rb
|
|
1604
1666
|
- spec/lutaml/model/type_spec.rb
|
|
1605
1667
|
- spec/lutaml/model/type_substitution_spec.rb
|
|
1668
|
+
- spec/lutaml/model/uninitialized_class_deep_dup_spec.rb
|
|
1606
1669
|
- spec/lutaml/model/uninitialized_class_spec.rb
|
|
1607
1670
|
- spec/lutaml/model/utils_spec.rb
|
|
1671
|
+
- spec/lutaml/model/validation/concerns/has_issues_spec.rb
|
|
1672
|
+
- spec/lutaml/model/validation/context_spec.rb
|
|
1673
|
+
- spec/lutaml/model/validation/issue_spec.rb
|
|
1674
|
+
- spec/lutaml/model/validation/layer_result_spec.rb
|
|
1675
|
+
- spec/lutaml/model/validation/profile_spec.rb
|
|
1676
|
+
- spec/lutaml/model/validation/registry_spec.rb
|
|
1677
|
+
- spec/lutaml/model/validation/remediation_result_spec.rb
|
|
1678
|
+
- spec/lutaml/model/validation/remediation_spec.rb
|
|
1679
|
+
- spec/lutaml/model/validation/report_spec.rb
|
|
1680
|
+
- spec/lutaml/model/validation/rule_spec.rb
|
|
1681
|
+
- spec/lutaml/model/validation/uninitialized_class_validate_spec.rb
|
|
1682
|
+
- spec/lutaml/model/validation/validation_error_spec.rb
|
|
1683
|
+
- spec/lutaml/model/validation/validation_framework_spec.rb
|
|
1608
1684
|
- spec/lutaml/model/validation_spec.rb
|
|
1609
1685
|
- spec/lutaml/model/value_map_spec.rb
|
|
1610
1686
|
- spec/lutaml/model/value_transformation_comprehensive_spec.rb
|
|
@@ -1620,6 +1696,17 @@ files:
|
|
|
1620
1696
|
- spec/lutaml/model/yamls_sequence_spec.rb
|
|
1621
1697
|
- spec/lutaml/model/yamls_spec.rb
|
|
1622
1698
|
- spec/lutaml/model_spec.rb
|
|
1699
|
+
- spec/lutaml/rdf/graph_serialization_spec.rb
|
|
1700
|
+
- spec/lutaml/rdf/iri_spec.rb
|
|
1701
|
+
- spec/lutaml/rdf/literal_spec.rb
|
|
1702
|
+
- spec/lutaml/rdf/mapping_spec.rb
|
|
1703
|
+
- spec/lutaml/rdf/member_rule_spec.rb
|
|
1704
|
+
- spec/lutaml/rdf/namespace_set_spec.rb
|
|
1705
|
+
- spec/lutaml/rdf/namespace_spec.rb
|
|
1706
|
+
- spec/lutaml/rdf/rdf_transform_spec.rb
|
|
1707
|
+
- spec/lutaml/turtle/adapter_spec.rb
|
|
1708
|
+
- spec/lutaml/turtle/mapping_spec.rb
|
|
1709
|
+
- spec/lutaml/turtle/transform_spec.rb
|
|
1623
1710
|
- spec/lutaml/xml/adapter/nokogiri_adapter_spec.rb
|
|
1624
1711
|
- spec/lutaml/xml/adapter/oga_adapter_spec.rb
|
|
1625
1712
|
- spec/lutaml/xml/adapter/ox_adapter_spec.rb
|
|
@@ -1629,6 +1716,7 @@ files:
|
|
|
1629
1716
|
- spec/lutaml/xml/compiled_rule_namespace_spec.rb
|
|
1630
1717
|
- spec/lutaml/xml/conformance/xml_namespaces_spec.rb
|
|
1631
1718
|
- spec/lutaml/xml/conformance/xml_schema_instance_spec.rb
|
|
1719
|
+
- spec/lutaml/xml/content_model_validation_spec.rb
|
|
1632
1720
|
- spec/lutaml/xml/data_model_spec.rb
|
|
1633
1721
|
- spec/lutaml/xml/decisions/decision_engine_spec.rb
|
|
1634
1722
|
- spec/lutaml/xml/decisions/decision_spec.rb
|