glossarist 2.8.11 → 2.8.12
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/config.yml +28 -4
- data/lib/glossarist/concept_reference.rb +1 -1
- data/lib/glossarist/rdf/relationship_predicates.rb +7 -6
- data/lib/glossarist/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: 284d64ec4a9bac75c0639dd3254a715e881d46949240f430db9d6322cec09379
|
|
4
|
+
data.tar.gz: a349a57dba2f2e5b79c93561dcfa2fd54ee1627326d66b3cf2d6b66cbcca2f3c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 270a84779887cf795087a0fb56f923240b26c028bef18c6b436b5129cfcc0985a020e9ab5b2ce2b2b6e5f472f75de7c79546d56fe0a94465f068d3f5ee28617a
|
|
7
|
+
data.tar.gz: 1411213954c8fbbdb95bc9e5c4bc8455d55edf4df1944714dcd8a0ffac4733d64ed16bd32ae6c259691739dda04418fe9bcf91ba2af04451505a0b0d61168c55
|
data/config.yml
CHANGED
|
@@ -39,10 +39,17 @@ designation:
|
|
|
39
39
|
|
|
40
40
|
related_concept:
|
|
41
41
|
type:
|
|
42
|
-
# Lifecycle (ISO 10241-1)
|
|
42
|
+
# Lifecycle (ISO 10241-1 / ISO 19135)
|
|
43
43
|
- deprecates
|
|
44
|
+
- deprecated_by
|
|
44
45
|
- supersedes
|
|
45
46
|
- superseded_by
|
|
47
|
+
- replaces
|
|
48
|
+
- replaced_by
|
|
49
|
+
- invalidates
|
|
50
|
+
- invalidated_by
|
|
51
|
+
- retires
|
|
52
|
+
- retired_by
|
|
46
53
|
# Hierarchical (ISO 10241-1 / ISO 25964)
|
|
47
54
|
- narrower
|
|
48
55
|
- broader
|
|
@@ -52,9 +59,13 @@ related_concept:
|
|
|
52
59
|
# Hierarchical sub-types — ISO 25964 partitive (BTP/NTP)
|
|
53
60
|
- broader_partitive
|
|
54
61
|
- narrower_partitive
|
|
62
|
+
- has_part
|
|
63
|
+
- is_part_of
|
|
55
64
|
# Hierarchical sub-types — ISO 25964 instantial (BTI/NTI)
|
|
56
65
|
- broader_instantial
|
|
57
66
|
- narrower_instantial
|
|
67
|
+
- instance_of
|
|
68
|
+
- has_instance
|
|
58
69
|
# Equivalence (ISO 10241-1 / ISO 25964 exactMatch / SKOS)
|
|
59
70
|
- equivalent
|
|
60
71
|
- exact_match
|
|
@@ -69,17 +80,30 @@ related_concept:
|
|
|
69
80
|
- contrast
|
|
70
81
|
# Associative (ISO 10241-1 / ISO 25964 RT / TBX crossReference)
|
|
71
82
|
- see
|
|
83
|
+
- references
|
|
72
84
|
# Associative sub-types (ISO 25964 / TBX)
|
|
73
85
|
- related_concept
|
|
74
86
|
- related_concept_broader
|
|
75
87
|
- related_concept_narrower
|
|
76
88
|
# Associative — spatial/temporal (ISO 25964 / TBX)
|
|
77
|
-
-
|
|
78
|
-
-
|
|
79
|
-
-
|
|
89
|
+
- sequentially_related
|
|
90
|
+
- spatially_related
|
|
91
|
+
- temporally_related
|
|
80
92
|
# Lexical (ISO 12620 / TBX)
|
|
81
93
|
- homograph
|
|
82
94
|
- false_friend
|
|
95
|
+
# Register management (ISO 19135)
|
|
96
|
+
- has_concept
|
|
97
|
+
- is_concept_of
|
|
98
|
+
- has_definition
|
|
99
|
+
- definition_of
|
|
100
|
+
- inherits
|
|
101
|
+
- inherited_by
|
|
102
|
+
# Versioning / definitional (ISO 19135)
|
|
103
|
+
- has_version
|
|
104
|
+
- version_of
|
|
105
|
+
- current_version
|
|
106
|
+
- current_version_of
|
|
83
107
|
|
|
84
108
|
iso12620:
|
|
85
109
|
term_type:
|
|
@@ -27,16 +27,17 @@ module Glossarist
|
|
|
27
27
|
related_match: [Namespaces::SkosNamespace, :relatedMatch],
|
|
28
28
|
see: [Namespaces::SkosNamespace, :related],
|
|
29
29
|
deprecates: [Namespaces::GlossaristNamespace, :deprecates],
|
|
30
|
+
deprecated_by: [Namespaces::GlossaristNamespace, :deprecatedBy],
|
|
30
31
|
supersedes: [Namespaces::GlossaristNamespace, :supersedes],
|
|
31
32
|
superseded_by: [Namespaces::GlossaristNamespace, :supersededBy],
|
|
32
33
|
compare: [Namespaces::GlossaristNamespace, :compares],
|
|
33
34
|
contrast: [Namespaces::GlossaristNamespace, :contrasts],
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
35
|
+
sequentially_related: [Namespaces::GlossaristNamespace,
|
|
36
|
+
:sequentiallyRelated],
|
|
37
|
+
spatially_related: [Namespaces::GlossaristNamespace,
|
|
38
|
+
:spatiallyRelated],
|
|
39
|
+
temporally_related: [Namespaces::GlossaristNamespace,
|
|
40
|
+
:temporallyRelated],
|
|
40
41
|
related_concept_broader: [Namespaces::GlossaristNamespace,
|
|
41
42
|
:relatedConceptBroader],
|
|
42
43
|
related_concept_narrower: [Namespaces::GlossaristNamespace,
|
data/lib/glossarist/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: glossarist
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.8.
|
|
4
|
+
version: 2.8.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-06-
|
|
11
|
+
date: 2026-06-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: lutaml-model
|