glossarist 2.8.13 → 2.8.14
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/glossarist/concept.rb +0 -3
- 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: 411f9be5f441296d22581729529924c738bdee6538d99c9085c7b1dc0bbaacc7
|
|
4
|
+
data.tar.gz: a36be3a51a93fe075f00caec109a80d293edcd18031d85f04eaed4ce9224872f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37cc79709b04222aa05297f68dfbcde6b1f087027d9e8b7e6fd5c7894b7b6c629a42a4a02f26e8b388fcbedeccf07b23ad3b4bad42290ad8ba4c1d7715f01847
|
|
7
|
+
data.tar.gz: 1f71874261f1e5e610314106fe5afb08a34f0612cea7aaae6618476e8b743eab4491f8ee01a3393d3463e794e97dc491e18385c482363270ae6c7791867d8c40
|
data/lib/glossarist/concept.rb
CHANGED
|
@@ -5,7 +5,6 @@ module Glossarist
|
|
|
5
5
|
attribute :uuid, :string
|
|
6
6
|
attribute :subject, :string
|
|
7
7
|
attribute :non_verb_rep, NonVerbRep, collection: true
|
|
8
|
-
attribute :extension_attributes, :string
|
|
9
8
|
attribute :lineage_source, :string
|
|
10
9
|
attribute :localizations, :hash
|
|
11
10
|
attribute :extension_attributes, :hash
|
|
@@ -16,8 +15,6 @@ module Glossarist
|
|
|
16
15
|
map :termid, to: :termid
|
|
17
16
|
map :subject, to: :subject
|
|
18
17
|
map %i[non_verb_rep nonVerbRep], to: :non_verb_rep
|
|
19
|
-
map %i[extension_attributes extensionAttributes],
|
|
20
|
-
to: :extension_attributes
|
|
21
18
|
map %i[lineage_source lineageSource], to: :lineage_source
|
|
22
19
|
map :localizations, to: :localizations
|
|
23
20
|
map %i[extension_attributes extensionAttributes],
|
data/lib/glossarist/version.rb
CHANGED