glossarist 2.0.7 → 2.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9b7d2e4e796d699bcd2a070de356c16c832b0bc7373cb26688acfb8f8ee978ef
4
- data.tar.gz: 957eb00bd6372a5f2f03967c119e65722d80374be6bc5886deef03d2189eed6a
3
+ metadata.gz: f77e7dd57f654204563b26dc3ebbe3aa742472f871580386d1931315972d9ac5
4
+ data.tar.gz: d846cff8cadef8a4589adba11b969404250ca83d4888e27e824827c023b90900
5
5
  SHA512:
6
- metadata.gz: 355dc4c998d68cf812144e99a06e9be2a25996bc9070ef62640245a8c3a62f1b6160f768eb890d1320b6e640d8e7de47bc9bc4a70d9d767cdfeaab6e48b02c29
7
- data.tar.gz: e40bc60aba8fa2f4a9232e9eadda853d0bc8894612be3f6bdbf28d6c9cc1503509ad6da9a0663dd83e170c9fcf8bc7a431b9c50d39bd083c90ccaf449a59fc41
6
+ metadata.gz: 9256800dc5d3057726c809d14e32c800a7a50599ab39702f876e4e5572fa0d466c3be3150fe32d4401d4462a608297aa76d3de6fad354d1398e1ec29c101cf2b
7
+ data.tar.gz: c3a9c06cc620dd67df6c24a1c25fe459f861d23052948f77e4f9f6b13a0a0b026de1ec8125a73102d6e6afa4bcb1e1c22a7ba6935192714d6dfe4b2f8ddf6aea
@@ -74,9 +74,13 @@ module Glossarist
74
74
  end
75
75
 
76
76
  def id=(id)
77
- raise(Glossarist::Error, "Expect id to be a string, Got #{id.class} (#{id})") unless id.is_a?(String) || id.nil?
78
-
79
- @id = id
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=
@@ -4,5 +4,5 @@
4
4
  #
5
5
 
6
6
  module Glossarist
7
- VERSION = "2.0.7"
7
+ VERSION = "2.0.8"
8
8
  end
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.7
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-18 00:00:00.000000000 Z
11
+ date: 2024-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: relaton