relaton-3gpp 1.9.2 → 1.9.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/lib/relaton_3gpp/parser.rb +2 -2
- data/lib/relaton_3gpp/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: bd03b82770ff07a30f928c483e3958baacc4ea00724c2299c7ac276ae24380f3
|
4
|
+
data.tar.gz: 0dfd8ddc26d71306f93dce4591173c31387f74832717d625b2d94406c9094677
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19fdb0f33718616a0589472504b51fbcf207dbdc4003c7958e4d59347022b38501f306720403abe892883221546bda70bf02023ed5dcdf449c7f3f40ca226036
|
7
|
+
data.tar.gz: 95f0848300e19fd43ff189dedc64fdc4ae219354ae67ec79a1b2e6d8046825a33a7bade62832c230a4517d54f3ba1ce031ef53c731f122d34c6ca93cd0d5257a
|
data/.gitignore
CHANGED
data/lib/relaton_3gpp/parser.rb
CHANGED
@@ -151,10 +151,10 @@ module Relaton3gpp
|
|
151
151
|
#
|
152
152
|
# @return [RelatonBib::EditorialGroup] editorialgroups
|
153
153
|
#
|
154
|
-
def parse_editorialgroup # rubocop:disable Metrics/MethodLength
|
154
|
+
def parse_editorialgroup # rubocop:disable Metrics/MethodLength, Metrics/AbcSize
|
155
155
|
wgp = RelatonBib::WorkGroup.new(name: @spec[:"WG prime"], type: "prime")
|
156
156
|
eg = [RelatonBib::TechnicalCommittee.new(wgp)]
|
157
|
-
if @spec[:"WG other"]
|
157
|
+
if @spec[:"WG other"] && @spec[:"WG other"] != "-"
|
158
158
|
wgo = RelatonBib::WorkGroup.new(name: @spec[:"WG other"], type: "other")
|
159
159
|
eg << RelatonBib::TechnicalCommittee.new(wgo)
|
160
160
|
end
|
data/lib/relaton_3gpp/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: relaton-3gpp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.9.
|
4
|
+
version: 1.9.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-12-
|
11
|
+
date: 2021-12-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: equivalent-xml
|