relaton-3gpp 1.14.0 → 1.14.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/rake.yml +0 -1
- data/README.adoc +3 -3
- data/lib/relaton_3gpp/data_fetcher.rb +1 -0
- 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: 8c370da51e60205972942b3d8567a6f8d1b74b22b6efde4812976f83850e2059
|
4
|
+
data.tar.gz: 909ac4c1e51f580233af81c3b874fcaaa29b928b11ca93a3bb844f4d82b95391
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab35c2f45c7be11762d5a851cba16e8cfe030ad8c57fc0aeae469f035c1be12a4faae7ff777b731eb83daea13e3c14c8f4ed2573cbe9c5324e53ba24f5f40469
|
7
|
+
data.tar.gz: 802c5f0df1e473b26ccbd87c1947f2227af41aadabf3db5dfbb254e1b8a0707cfff953261ec9908dada636a613718e6ac6c0fb1d1d7e58e8704e881ec5a85f69
|
data/.github/workflows/rake.yml
CHANGED
data/README.adoc
CHANGED
@@ -52,7 +52,7 @@ item.to_xml
|
|
52
52
|
</bibitem>"
|
53
53
|
----
|
54
54
|
|
55
|
-
With argument `bibdata: true` it
|
55
|
+
With argument `bibdata: true` it outputs XML wrapped by `bibdata` element and adds flavor `ext` element.
|
56
56
|
|
57
57
|
[source,ruby]
|
58
58
|
----
|
@@ -88,7 +88,7 @@ item.to_xml bibdata: true
|
|
88
88
|
|
89
89
|
=== Typed links
|
90
90
|
|
91
|
-
Some
|
91
|
+
Some 3GPP documents have `src` type link.
|
92
92
|
|
93
93
|
[source,ruby]
|
94
94
|
----
|
@@ -133,7 +133,7 @@ The method `Relaton3GPP::DataFetcher.fetch(output: "data", format: "yaml")` conv
|
|
133
133
|
Arguments:
|
134
134
|
|
135
135
|
- `output` - folder to save documents (default './data').
|
136
|
-
- `format` - format in which the documents are saved.
|
136
|
+
- `format` - a format in which the documents are saved. Possible formats are: `yaml`, `xml`, `bibxml` (default `yaml`).
|
137
137
|
|
138
138
|
[source,ruby]
|
139
139
|
----
|
@@ -53,6 +53,7 @@ module Relaton3gpp
|
|
53
53
|
specrels = dbs["Specs_GSM+3G_release-info"]
|
54
54
|
releases = dbs["Releases"]
|
55
55
|
tstatus = dbs["temp-status"]
|
56
|
+
FileUtils.rm_f File.join(@output, "/*") if dbs["2001-04-25_schedule"].any?
|
56
57
|
dbs["2001-04-25_schedule"].each do |row|
|
57
58
|
fetch_doc row, specs, specrels, releases, tstatus
|
58
59
|
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.14.
|
4
|
+
version: 1.14.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-12-
|
11
|
+
date: 2022-12-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: equivalent-xml
|