relaton-bib 1.10.1 → 1.10.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/lib/relaton_bib/bibxml_parser.rb +1 -1
- data/lib/relaton_bib/document_relation.rb +1 -1
- data/lib/relaton_bib/person.rb +6 -7
- data/lib/relaton_bib/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: 4b28d437689d9d1a6d8e354677100412885d35532b08b8fd62d67b356594ce56
|
4
|
+
data.tar.gz: 8bd4cbc416dbbb143736a0c73a0679cfaa3e219de96c12f70018b2b626571fd8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ebaf2a67d28cd7fc4b2a1c06ae29af2f28f5c422c4313aaa17c067857e7171ed0af1a4173ccc0a5d7df77a8f3e7a1b8eed5e70b13f149eec5ad67af5be911ab
|
7
|
+
data.tar.gz: a0bade6608af304ec6062405df7b4e3103fd4e7411aa659294c3863d4cd8de71b1dd81ae719ac2c6cdca0feee6d4836a2c3909a76939773fb7df497901fc0cf9
|
@@ -42,7 +42,7 @@ module RelatonBib
|
|
42
42
|
# @param locality [Array<RelatonBib::Locality, RelatonBib::LocalityStack>]
|
43
43
|
# @param source_locality [Array<RelatonBib::SourceLocality,
|
44
44
|
# RelatonBib::SourceLocalityStack>]
|
45
|
-
def initialize(type:, description: nil,
|
45
|
+
def initialize(type:, bibitem:, description: nil, locality: [],
|
46
46
|
source_locality: [])
|
47
47
|
type = "obsoletes" if type == "Now withdrawn"
|
48
48
|
unless self.class::TYPES.include? type
|
data/lib/relaton_bib/person.rb
CHANGED
@@ -13,8 +13,8 @@ module RelatonBib
|
|
13
13
|
# @return [Array<RelatonBib::LocalizedString>]
|
14
14
|
attr_accessor :initial
|
15
15
|
|
16
|
-
# @return [RelatonBib::LocalizedString]
|
17
|
-
attr_accessor :surname
|
16
|
+
# @return [RelatonBib::LocalizedString, nil]
|
17
|
+
attr_accessor :surname, :completename
|
18
18
|
|
19
19
|
# @return [Array<RelatonBib::LocalizedString>]
|
20
20
|
attr_accessor :addition
|
@@ -22,15 +22,14 @@ module RelatonBib
|
|
22
22
|
# @return [Array<RelatonBib::LocalizedString>]
|
23
23
|
attr_accessor :prefix
|
24
24
|
|
25
|
-
# @
|
26
|
-
|
27
|
-
|
28
|
-
# @param surname [RelatonBib::LocalizedString]
|
25
|
+
# @param surname [RelatonBib::LocalizedString, nil] surname or completename
|
26
|
+
# should be present
|
29
27
|
# @param forename [Array<RelatonBib::LocalizedString>]
|
30
28
|
# @param initial [Array<RelatonBib::LocalizedString>]
|
31
29
|
# @param addition [Array<RelatonBib::LocalizedString>]
|
32
30
|
# @param prefix [Array<RelatonBib::LocalizedString>]
|
33
|
-
# @param completename [RelatonBib::LocalizedString]
|
31
|
+
# @param completename [RelatonBib::LocalizedString, nil] completename or
|
32
|
+
# surname should be present
|
34
33
|
def initialize(**args)
|
35
34
|
unless args[:surname] || args[:completename]
|
36
35
|
raise ArgumentError, "Should be given :surname or :completename"
|
data/lib/relaton_bib/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: relaton-bib
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.10.
|
4
|
+
version: 1.10.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-02-
|
11
|
+
date: 2022-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: byebug
|