relaton-3gpp 1.10.3 → 1.10.4
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_3gpp/parser.rb +6 -1
- data/lib/relaton_3gpp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 141136c7526afc99951c96b2b7f393d18c4e7a597e967657b7f5dabfc9c54450
|
|
4
|
+
data.tar.gz: 5d7977198895cec13a7b6205712f42e16f6e407b13a2ca30de6e3dafe8917f54
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f02c6ab9a9b0237935db773876c16d86d4cf47be05f8d1b7c016067d6588e2e5f8db6e747f1c3c1f1e7461f32b0098befd9d297ed154b488fe719517369ac1c
|
|
7
|
+
data.tar.gz: 89404e6346bfcdedfde1485b799fe392c0dc793fda39e0e104a81246e43fea6f5ddce5a243e3fa368366ccd4bc21f3b55df91a07c72540ed84775a28d4c874ab
|
data/lib/relaton_3gpp/parser.rb
CHANGED
|
@@ -64,6 +64,7 @@ module Relaton3gpp
|
|
|
64
64
|
# internal: @spec[:"For publication"] == "0",
|
|
65
65
|
release: parse_release,
|
|
66
66
|
contributor: parse_contributor,
|
|
67
|
+
place: ["Sophia Antipolis Cedex, France"],
|
|
67
68
|
)
|
|
68
69
|
end
|
|
69
70
|
|
|
@@ -240,8 +241,12 @@ module Relaton3gpp
|
|
|
240
241
|
# @return [Array<RelatonBib::ContributionInfo>] contributor
|
|
241
242
|
#
|
|
242
243
|
def parse_contributor # rubocop:disable Metrics/MethodLength, Metrics/AbcSize
|
|
244
|
+
address = RelatonBib::Address.new(
|
|
245
|
+
street: ["c/o ETSI 650, route des Lucioles", "3GPP Mobile Competence Centre"],
|
|
246
|
+
postcode: "06921", city: "Sophia Antipolis Cedex", country: "France"
|
|
247
|
+
)
|
|
243
248
|
org = RelatonBib::Organization.new(
|
|
244
|
-
name: "3rd Generation Partnership Project", abbreviation: "3GPP",
|
|
249
|
+
name: "3rd Generation Partnership Project", abbreviation: "3GPP", contact: [address],
|
|
245
250
|
)
|
|
246
251
|
contribs = [RelatonBib::ContributionInfo.new(entity: org, role: [type: "author"])]
|
|
247
252
|
return contribs unless @tstatus && @tstatus[:rapporteur]
|
data/lib/relaton_3gpp/version.rb
CHANGED