glossarist 2.9.1 → 2.9.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/data/concept-model/README.md +4 -2
- data/data/concept-model/SOURCE.json +2 -2
- data/lib/glossarist/tasks/sync_model.rb +1 -0
- 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: c1b00e7f214346a1df82300439a80e6e1888609c7b981b2a9f8460a2bd5bd37b
|
|
4
|
+
data.tar.gz: 0f91a052ae1c913e9ff52daf0f3835900eb0847fd41c0bfe287c2782ae829af8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1325227b2a204a4ebbf09331f8e57705176b985dadb03d1bd100d9d4856ed93a8850b21df06eb7d2498e61d01631517aa6284182b400d145f52eeccb0f7c7030
|
|
7
|
+
data.tar.gz: 07e6e35d730702809b30265bb50ba8b56555cbb3bd2eedf27f14fa3f36bdb40001c551195980f04cd2d23fafbd2bfc22c29fb4ff48fc042ee49a6d4e187110f0
|
|
@@ -12,6 +12,7 @@ concept-model.
|
|
|
12
12
|
|
|
13
13
|
| File | Purpose |
|
|
14
14
|
|------|---------|
|
|
15
|
+
| `prefixes.ttl` | Canonical prefix bindings SSOT — consumed verbatim by every Turtle/JSON-LD serializer in the ecosystem |
|
|
15
16
|
| `glossarist.context.jsonld` | JSON-LD term map — reference |
|
|
16
17
|
| `glossarist.ttl` | OWL ontology (reference; not currently read at runtime) |
|
|
17
18
|
| `shapes/glossarist.shacl.ttl` | SHACL shapes — loaded by `Glossarist::Validation::ShaclValidator` at runtime |
|
|
@@ -21,8 +22,9 @@ concept-model.
|
|
|
21
22
|
Update these files from the latest concept-model tag:
|
|
22
23
|
|
|
23
24
|
```bash
|
|
24
|
-
rake glossarist:sync:model # fetches latest
|
|
25
|
-
rake glossarist:sync:model[v3.
|
|
25
|
+
rake glossarist:sync:model # fetches latest released tag
|
|
26
|
+
rake glossarist:sync:model[v3.1.0] # pin to a specific tag
|
|
27
|
+
rake glossarist:sync:model[main] # tracking upstream main (uncommon)
|
|
26
28
|
```
|
|
27
29
|
|
|
28
30
|
The sync task fetches via the GitHub raw endpoint (no clone needed).
|
data/lib/glossarist/version.rb
CHANGED