relaton-ietf 1.13.7 → 1.13.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: c90740b6cf7e4d175f4df9fc3ab1ddf9f68eb02473140f2467d63569364d8b2f
4
- data.tar.gz: a2dfa670a98de931ff50244a3b6f26b2cbee87482bd8ac93c843a3410479583d
3
+ metadata.gz: abf2e3b09f55866428d84a3259ef239b3c353b417b29ce7981081ff71f4814b6
4
+ data.tar.gz: ba9abf5de01ba76f23780a9bb04ab23c3260a748ba29768d3de30805eee95f30
5
5
  SHA512:
6
- metadata.gz: '06871e40bf40e9e4198c88c027220cc210f0f10e5f82c718f5f8e5124f38944f457fd5368205a0b212cc42492159c2609d36abe00bcb7f538b029c7439473e03'
7
- data.tar.gz: 442621f06f75dc0bf899053c84b25a5f17b34911484410f46b3752341146232bd9adbe2e057505f64367d1ff5589e954fcf28e353ece4b1a1ccc10d79e92a652
6
+ metadata.gz: dc0010239cb7b931520dd36ec7e6486501e650fe180b2f6990caed4ba3a691f57f11ea4e1100b913d950b3b09634b461fe2ab6dd95858c6a090f7e14d2a9cbed
7
+ data.tar.gz: 6423fa49cf9d50639b9ffbbefc2a919b49a00fa7a2445bb57b46fb116e44dcd4b439ed9933df25488f40ce0cfcf40a8077d47d718276babf78d4f06ccfa8d191
@@ -149,8 +149,8 @@ module RelatonIetf
149
149
  #
150
150
  # @return [Array<RelatonBib::ContributionInfo>] document contributors
151
151
  #
152
- def parse_contributor
153
- @doc.xpath("./xmlns:author").map do |contrib|
152
+ def parse_contributor # rubocop:disable Metrics/MethodLength
153
+ contribs = @doc.xpath("./xmlns:author").map do |contrib|
154
154
  name = contrib.at("./xmlns:name").text
155
155
  entity = BibXMLParser.full_name_org name
156
156
  unless entity
@@ -159,6 +159,13 @@ module RelatonIetf
159
159
  end
160
160
  RelatonBib::ContributionInfo.new(entity: entity, role: parse_role(contrib))
161
161
  end
162
+ contribs << create_org_contrib("RFC Publisher", "publisher")
163
+ contribs << create_org_contrib("RFC Series", "authorizer")
164
+ end
165
+
166
+ def create_org_contrib(org_name, role_type)
167
+ org = RelatonBib::Organization.new name: org_name
168
+ RelatonBib::ContributionInfo.new entity: org, role: [{ type: role_type }]
162
169
  end
163
170
 
164
171
  #
@@ -1,3 +1,3 @@
1
1
  module RelatonIetf
2
- VERSION = "1.13.7".freeze
2
+ VERSION = "1.13.8".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relaton-ietf
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.7
4
+ version: 1.13.8
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-11-09 00:00:00.000000000 Z
11
+ date: 2022-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: equivalent-xml