glossarist 2.13.1 → 2.13.2
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/CLAUDE.md +1 -1
- data/config.yml +2 -2
- data/lib/glossarist/v3/partitive_member.rb +1 -1
- data/lib/glossarist/v3/partitive_relation.rb +1 -1
- data/lib/glossarist/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: bff178304ceb50c9e4f73bd22a66686ed7ae759786cf0abb4405e6594357dc49
|
|
4
|
+
data.tar.gz: f972e9d4a1b876577803285142ac3edb13f6b1a1b240ed416199340982db4e51
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0515fbecf5fac714751b7c6ae23168eb2371fdfc3359a26cf91a6a14efeb5c1700a1080dbe4418c254a601a05a2d734343c5f2ecf2c0dede871bb82cdd1d740f
|
|
7
|
+
data.tar.gz: 8fefaa9978f3ebe78ae5a03414e395dba36fa8c3887e0d40ff91889c3e6e36e7d2d22a627038478bc6491988c3849c4147420c4e0e6e5851231240ea9b82bac0
|
data/CLAUDE.md
CHANGED
|
@@ -55,7 +55,7 @@ Each PartitiveRelation carries:
|
|
|
55
55
|
|
|
56
56
|
- `comprehensive` — ConceptRef to the superordinate concept partitive (the whole)
|
|
57
57
|
- `partitives` — `PartitiveMember [2..*]` (ISO 704 "two or more"). Each member wraps a ConceptRef plus ISO 704:2022 notation metadata:
|
|
58
|
-
- `multiplicity` — one of `compulsory` (1 solid line, default), `optional` (1 dashed line), `compulsory_multiple` (2 solid lines), `optional_multiple` (2 dashed lines), `
|
|
58
|
+
- `multiplicity` — one of `compulsory` (1 solid line, default), `optional` (1 dashed line), `compulsory_multiple` (2 solid lines), `optional_multiple` (2 dashed lines), `compulsory_at_least_one` (1 solid + 1 dashed line)
|
|
59
59
|
- `is_delimiting` — boolean (default false). A delimiting part behaves like a delimiting characteristic: it distinguishes the comprehensive from coordinate concepts. Rendered as a bold 3x-width line in the diagram. Orthogonal to multiplicity.
|
|
60
60
|
- `completeness` — `complete` (default; the encoded partitives constitute the whole) or `partial` (others exist beyond those encoded). ISO 704 rake backline notation.
|
|
61
61
|
- `criterion` — optional localized string hash (`{ "eng" => "physical structure" }`). ISO 12620 coordinate-concept coherence: partitives within one relation share the comprehensive AND the criterion.
|
data/config.yml
CHANGED
|
@@ -218,11 +218,11 @@ multiplicity:
|
|
|
218
218
|
# optional — 1 dashed line (exists in some instances only)
|
|
219
219
|
# compulsory_multiple — 2 solid lines (multiple must exist)
|
|
220
220
|
# optional_multiple — 2 dashed lines (multiple may exist)
|
|
221
|
-
#
|
|
221
|
+
# compulsory_at_least_one — 1 solid + 1 dashed line (at least one must exist)
|
|
222
222
|
# Default: compulsory.
|
|
223
223
|
value:
|
|
224
224
|
- compulsory
|
|
225
225
|
- optional
|
|
226
226
|
- compulsory_multiple
|
|
227
227
|
- optional_multiple
|
|
228
|
-
-
|
|
228
|
+
- compulsory_at_least_one
|
|
@@ -13,7 +13,7 @@ module Glossarist
|
|
|
13
13
|
# optional — 1 dashed line (exists in some instances only)
|
|
14
14
|
# compulsory_multiple — 2 solid lines (multiple must exist)
|
|
15
15
|
# optional_multiple — 2 dashed lines (multiple may exist)
|
|
16
|
-
#
|
|
16
|
+
# compulsory_at_least_one — 1 solid + 1 dashed line (≥1 must exist)
|
|
17
17
|
#
|
|
18
18
|
# is_delimiting (orthogonal, bold 3x-width line in diagram):
|
|
19
19
|
# A delimiting part behaves like a delimiting characteristic:
|
|
@@ -14,7 +14,7 @@ module Glossarist
|
|
|
14
14
|
#
|
|
15
15
|
# Per-partitive metadata (ISO 704:2022):
|
|
16
16
|
# - multiplicity (compulsory, optional, compulsory_multiple,
|
|
17
|
-
# optional_multiple,
|
|
17
|
+
# optional_multiple, compulsory_at_least_one) — encodes the diagram
|
|
18
18
|
# line notation as data
|
|
19
19
|
# - is_delimiting — orthogonal flag; a delimiting part behaves
|
|
20
20
|
# like a delimiting characteristic (distinguishes the
|
data/lib/glossarist/version.rb
CHANGED