glossarist 2.0.8 → 2.0.9
Sign up to get free protection for your applications and to get access to all the features.
- 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: b513e776c8273441505b742e4ab559ecf887d994f0242943ac139483b4945749
|
4
|
+
data.tar.gz: 3ee9b5ec607d2ca40f7b7b6bec0f05dd2a4dc0c89d1ca44371c2737ff97b9082
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d229ebe8d4a08abe267a13afc67d2eb04b00dfee2e1c2d4c9d6441f7f42d35441effddf48716693778fbcd65095791ee9f1690fc1d064220e74bcabca563807
|
7
|
+
data.tar.gz: 85555a89c34a7894b6354fcb3fda79d0170f94c295dc557a0917cdaabcf4e3b4ea80e88812799108b5a3c8117aba9c4256a69a0b901488efca4e2a90302ae937
|
data/lib/glossarist/concept.rb
CHANGED
@@ -90,7 +90,6 @@ module Glossarist
|
|
90
90
|
# removed.
|
91
91
|
# @return [Array<ConceptSource>]
|
92
92
|
attr_reader :sources
|
93
|
-
alias :authoritative_source :sources
|
94
93
|
|
95
94
|
# return [Array<ConceptDate>]
|
96
95
|
attr_reader :dates
|
@@ -132,9 +131,13 @@ module Glossarist
|
|
132
131
|
sources&.each { |source| @sources << source }
|
133
132
|
end
|
134
133
|
|
134
|
+
def authoritative_source
|
135
|
+
@sources.select { |source| source.authoritative? }
|
136
|
+
end
|
137
|
+
|
135
138
|
def authoritative_source=(sources)
|
136
|
-
|
137
|
-
source.merge({ "type" => "authoritative" })
|
139
|
+
sources&.each do |source|
|
140
|
+
@sources << source.merge({ "type" => "authoritative" })
|
138
141
|
end
|
139
142
|
end
|
140
143
|
|
@@ -205,6 +208,7 @@ module Glossarist
|
|
205
208
|
data = arg.delete("data")
|
206
209
|
|
207
210
|
arg.merge!(data) if data
|
211
|
+
arg.delete("authoritative_source") if arg["sources"]
|
208
212
|
end
|
209
213
|
end
|
210
214
|
end
|
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.9
|
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-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: relaton
|