glossarist 2.0.7 → 2.0.8
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 +7 -3
- 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: f77e7dd57f654204563b26dc3ebbe3aa742472f871580386d1931315972d9ac5
|
4
|
+
data.tar.gz: d846cff8cadef8a4589adba11b969404250ca83d4888e27e824827c023b90900
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9256800dc5d3057726c809d14e32c800a7a50599ab39702f876e4e5572fa0d466c3be3150fe32d4401d4462a608297aa76d3de6fad354d1398e1ec29c101cf2b
|
7
|
+
data.tar.gz: c3a9c06cc620dd67df6c24a1c25fe459f861d23052948f77e4f9f6b13a0a0b026de1ec8125a73102d6e6afa4bcb1e1c22a7ba6935192714d6dfe4b2f8ddf6aea
|
data/lib/glossarist/concept.rb
CHANGED
@@ -74,9 +74,13 @@ module Glossarist
|
|
74
74
|
end
|
75
75
|
|
76
76
|
def id=(id)
|
77
|
-
|
78
|
-
|
79
|
-
|
77
|
+
# Some of the glossaries that are not generated using glossarist, contains ids that are integers
|
78
|
+
# so adding a temporary check until every glossary is updated using glossarist.
|
79
|
+
if !id.nil? && (id.is_a?(String) || id.is_a?(Integer))
|
80
|
+
@id = id
|
81
|
+
else
|
82
|
+
raise(Glossarist::Error, "Expect id to be a String or Integer, Got #{id.class} (#{id})")
|
83
|
+
end
|
80
84
|
end
|
81
85
|
alias :termid= :id=
|
82
86
|
alias :identifier= :id=
|
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.0.
|
4
|
+
version: 2.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-03-
|
11
|
+
date: 2024-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: relaton
|