relaton-ieee 1.17.0 → 1.19.0
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 +1 -1
- data/.github/workflows/release.yml +1 -1
- data/README.adoc +6 -13
- data/grammars/basicdoc.rng +150 -52
- data/grammars/biblio-standoc.rng +44 -1
- data/grammars/biblio.rng +32 -0
- data/grammars/relaton-ieee.rng +8 -0
- data/lib/relaton_ieee/balloting_group.rb +1 -1
- data/lib/relaton_ieee/data_fetcher.rb +6 -8
- data/lib/relaton_ieee/document_type.rb +1 -2
- data/lib/relaton_ieee/ieee_bibliography.rb +3 -3
- data/lib/relaton_ieee/util.rb +1 -4
- data/lib/relaton_ieee/version.rb +1 -1
- data/lib/relaton_ieee/xml_parser.rb +4 -0
- data/lib/relaton_ieee.rb +0 -1
- data/relaton_ieee.gemspec +1 -1
- metadata +5 -6
- data/lib/relaton_ieee/config.rb +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e671fb3b9fe9adc6d69c46f8d5757dd73e35dd324df9516eda63452ca5c3e8d
|
4
|
+
data.tar.gz: aa265d86a448bfdd00b893f93b8008f3fb22794419f6ecf63bcf0932bb4af46e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f690ba8cc419d3065b62bc2a5cc3dfd195a3d892219a05bf644e5a5e6f7ad081ce4d5486e5e65ee872a3640e709c1c0f639d7abd604139af5f18fd715591e0f
|
7
|
+
data.tar.gz: 5774082f3f48195883cdba7fa4d5cb9e092049405513f69c790db981ff159234827d16d698e4c57cc953eec0d4c15fe96359880e350eff21872f48af69768590
|
data/.github/workflows/rake.yml
CHANGED
data/README.adoc
CHANGED
@@ -23,24 +23,13 @@ Or install it yourself as:
|
|
23
23
|
|
24
24
|
== Usage
|
25
25
|
|
26
|
-
===
|
27
|
-
|
28
|
-
Configuration is optional. The available option is `logger` which is a `Logger` instance. By default, the logger is `Logger.new($stderr)` with `Logger::WARN` level. To change the logger level, use `RelatonIeee.configure` block.
|
26
|
+
=== Search for a standard using keywords
|
29
27
|
|
30
28
|
[source,ruby]
|
31
29
|
----
|
32
30
|
require 'relaton_ieee'
|
33
31
|
=> true
|
34
32
|
|
35
|
-
RelatonIeee.configure do |config|
|
36
|
-
config.logger.level = Logger::DEBUG
|
37
|
-
end
|
38
|
-
----
|
39
|
-
|
40
|
-
=== Search for a standard using keywords
|
41
|
-
|
42
|
-
[source,ruby]
|
43
|
-
----
|
44
33
|
item = RelatonIeee::IeeeBibliography.search("IEEE 528-2019")
|
45
34
|
=> #<RelatonIeee::IeeeBibliographicItem:0x00007fe12ebc8cb8
|
46
35
|
...
|
@@ -71,7 +60,7 @@ item.to_xml bibdata: true
|
|
71
60
|
<uri type="src">https://ieeexplore.ieee.org/document/8863799</uri>
|
72
61
|
<docidentifier type="IEEE" primary="true">IEEE 528-2019</docidentifier>
|
73
62
|
...
|
74
|
-
<ext schema-version="v1.0.
|
63
|
+
<ext schema-version="v1.0.1">
|
75
64
|
<editorialgroup>
|
76
65
|
<committee>Gyro Accelerometer Panel of the IEEE Aerospace and Electronic Systems Society</committee>
|
77
66
|
</editorialgroup>
|
@@ -139,6 +128,10 @@ Done in: 143 sec.
|
|
139
128
|
=> nil
|
140
129
|
----
|
141
130
|
|
131
|
+
=== Logging
|
132
|
+
|
133
|
+
RelatonIeee uses the relaton-logger gem for logging. By default, it logs to STDOUT. To change the log levels and add other loggers, read the https://github.com/relaton/relaton-logger#usage[relaton-logger] documentation.
|
134
|
+
|
142
135
|
== Development
|
143
136
|
|
144
137
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/grammars/basicdoc.rng
CHANGED
@@ -95,8 +95,89 @@
|
|
95
95
|
<ref name="pagebreak"/>
|
96
96
|
<ref name="hr"/>
|
97
97
|
<ref name="bookmark"/>
|
98
|
+
<ref name="amend"/>
|
98
99
|
</choice>
|
99
100
|
</define>
|
101
|
+
<define name="amend">
|
102
|
+
<element name="amend">
|
103
|
+
<ref name="AmendType"/>
|
104
|
+
</element>
|
105
|
+
</define>
|
106
|
+
<define name="AmendType">
|
107
|
+
<optional>
|
108
|
+
<attribute name="id">
|
109
|
+
<data type="ID"/>
|
110
|
+
</attribute>
|
111
|
+
</optional>
|
112
|
+
<attribute name="change">
|
113
|
+
<choice>
|
114
|
+
<value>add</value>
|
115
|
+
<value>modify</value>
|
116
|
+
<value>delete</value>
|
117
|
+
<value>replace</value>
|
118
|
+
</choice>
|
119
|
+
</attribute>
|
120
|
+
<optional>
|
121
|
+
<attribute name="path"/>
|
122
|
+
</optional>
|
123
|
+
<optional>
|
124
|
+
<attribute name="path_end"/>
|
125
|
+
</optional>
|
126
|
+
<optional>
|
127
|
+
<attribute name="title"/>
|
128
|
+
</optional>
|
129
|
+
<optional>
|
130
|
+
<element name="location">
|
131
|
+
<zeroOrMore>
|
132
|
+
<choice>
|
133
|
+
<ref name="locality"/>
|
134
|
+
<ref name="localityStack"/>
|
135
|
+
</choice>
|
136
|
+
</zeroOrMore>
|
137
|
+
</element>
|
138
|
+
</optional>
|
139
|
+
<optional>
|
140
|
+
<element name="description">
|
141
|
+
<zeroOrMore>
|
142
|
+
<ref name="BasicBlock"/>
|
143
|
+
</zeroOrMore>
|
144
|
+
</element>
|
145
|
+
</optional>
|
146
|
+
<optional>
|
147
|
+
<element name="newcontent">
|
148
|
+
<optional>
|
149
|
+
<attribute name="id">
|
150
|
+
<data type="ID"/>
|
151
|
+
</attribute>
|
152
|
+
</optional>
|
153
|
+
<zeroOrMore>
|
154
|
+
<ref name="BasicBlock"/>
|
155
|
+
</zeroOrMore>
|
156
|
+
</element>
|
157
|
+
</optional>
|
158
|
+
<zeroOrMore>
|
159
|
+
<ref name="classification"/>
|
160
|
+
</zeroOrMore>
|
161
|
+
<zeroOrMore>
|
162
|
+
<ref name="contributor"/>
|
163
|
+
</zeroOrMore>
|
164
|
+
</define>
|
165
|
+
<define name="classification">
|
166
|
+
<element name="classification">
|
167
|
+
<ref name="classification_tag"/>
|
168
|
+
<ref name="classification_value"/>
|
169
|
+
</element>
|
170
|
+
</define>
|
171
|
+
<define name="classification_tag">
|
172
|
+
<element name="tag">
|
173
|
+
<text/>
|
174
|
+
</element>
|
175
|
+
</define>
|
176
|
+
<define name="classification_value">
|
177
|
+
<element name="value">
|
178
|
+
<text/>
|
179
|
+
</element>
|
180
|
+
</define>
|
100
181
|
<define name="paragraph">
|
101
182
|
<element name="p">
|
102
183
|
<ref name="ParagraphType"/>
|
@@ -163,6 +244,9 @@
|
|
163
244
|
<data type="ID"/>
|
164
245
|
</attribute>
|
165
246
|
<attribute name="reviewer"/>
|
247
|
+
<optional>
|
248
|
+
<attribute name="type"/>
|
249
|
+
</optional>
|
166
250
|
<optional>
|
167
251
|
<attribute name="date">
|
168
252
|
<data type="dateTime"/>
|
@@ -715,27 +799,36 @@
|
|
715
799
|
</define>
|
716
800
|
<define name="ruby">
|
717
801
|
<element name="ruby">
|
718
|
-
<
|
719
|
-
<
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
802
|
+
<choice>
|
803
|
+
<ref name="ruby_pronunciation"/>
|
804
|
+
<ref name="ruby_annotation"/>
|
805
|
+
</choice>
|
806
|
+
<choice>
|
807
|
+
<text/>
|
808
|
+
<ref name="ruby"/>
|
809
|
+
</choice>
|
725
810
|
</element>
|
726
811
|
</define>
|
727
|
-
<define name="
|
728
|
-
<element name="
|
729
|
-
<
|
730
|
-
|
731
|
-
|
812
|
+
<define name="ruby_pronunciation">
|
813
|
+
<element name="pronunciation">
|
814
|
+
<attribute name="value"/>
|
815
|
+
<optional>
|
816
|
+
<attribute name="script"/>
|
817
|
+
</optional>
|
818
|
+
<optional>
|
819
|
+
<attribute name="lang"/>
|
820
|
+
</optional>
|
732
821
|
</element>
|
733
822
|
</define>
|
734
|
-
<define name="
|
735
|
-
<element name="
|
736
|
-
<
|
737
|
-
|
738
|
-
|
823
|
+
<define name="ruby_annotation">
|
824
|
+
<element name="annotation">
|
825
|
+
<attribute name="value"/>
|
826
|
+
<optional>
|
827
|
+
<attribute name="script"/>
|
828
|
+
</optional>
|
829
|
+
<optional>
|
830
|
+
<attribute name="lang"/>
|
831
|
+
</optional>
|
739
832
|
</element>
|
740
833
|
</define>
|
741
834
|
<define name="br">
|
@@ -914,44 +1007,49 @@
|
|
914
1007
|
-->
|
915
1008
|
<define name="image">
|
916
1009
|
<element name="image">
|
917
|
-
<
|
918
|
-
|
1010
|
+
<ref name="Image"/>
|
1011
|
+
</element>
|
1012
|
+
</define>
|
1013
|
+
<define name="Image">
|
1014
|
+
<attribute name="id">
|
1015
|
+
<data type="ID"/>
|
1016
|
+
</attribute>
|
1017
|
+
<attribute name="src">
|
1018
|
+
<data type="anyURI"/>
|
1019
|
+
</attribute>
|
1020
|
+
<attribute name="mimetype"/>
|
1021
|
+
<optional>
|
1022
|
+
<attribute name="filename"/>
|
1023
|
+
</optional>
|
1024
|
+
<optional>
|
1025
|
+
<attribute name="width">
|
1026
|
+
<ref name="ImageSize"/>
|
919
1027
|
</attribute>
|
920
|
-
|
1028
|
+
</optional>
|
1029
|
+
<optional>
|
1030
|
+
<attribute name="height">
|
1031
|
+
<ref name="ImageSize"/>
|
1032
|
+
</attribute>
|
1033
|
+
</optional>
|
1034
|
+
<optional>
|
1035
|
+
<attribute name="alt"/>
|
1036
|
+
</optional>
|
1037
|
+
<optional>
|
1038
|
+
<attribute name="title"/>
|
1039
|
+
</optional>
|
1040
|
+
<optional>
|
1041
|
+
<attribute name="longdesc">
|
921
1042
|
<data type="anyURI"/>
|
922
1043
|
</attribute>
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
<
|
928
|
-
<
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
</choice>
|
933
|
-
</attribute>
|
934
|
-
</optional>
|
935
|
-
<optional>
|
936
|
-
<attribute name="height">
|
937
|
-
<choice>
|
938
|
-
<data type="int"/>
|
939
|
-
<value>auto</value>
|
940
|
-
</choice>
|
941
|
-
</attribute>
|
942
|
-
</optional>
|
943
|
-
<optional>
|
944
|
-
<attribute name="alt"/>
|
945
|
-
</optional>
|
946
|
-
<optional>
|
947
|
-
<attribute name="title"/>
|
948
|
-
</optional>
|
949
|
-
<optional>
|
950
|
-
<attribute name="longdesc">
|
951
|
-
<data type="anyURI"/>
|
952
|
-
</attribute>
|
953
|
-
</optional>
|
954
|
-
</element>
|
1044
|
+
</optional>
|
1045
|
+
</define>
|
1046
|
+
<define name="ImageSize">
|
1047
|
+
<choice>
|
1048
|
+
<data type="string">
|
1049
|
+
<param name="pattern">\d+([.]\d+)?(%?)</param>
|
1050
|
+
</data>
|
1051
|
+
<value>auto</value>
|
1052
|
+
</choice>
|
955
1053
|
</define>
|
956
1054
|
<define name="video">
|
957
1055
|
<element name="video">
|
data/grammars/biblio-standoc.rng
CHANGED
@@ -9,11 +9,42 @@
|
|
9
9
|
-->
|
10
10
|
<include href="biblio.rng">
|
11
11
|
<define name="BibData">
|
12
|
-
<ref name="
|
12
|
+
<ref name="StandardBibliographicItem"/>
|
13
13
|
<optional>
|
14
14
|
<ref name="ext"/>
|
15
15
|
</optional>
|
16
16
|
</define>
|
17
|
+
<define name="docrelation">
|
18
|
+
<element name="relation">
|
19
|
+
<attribute name="type">
|
20
|
+
<ref name="DocRelationType"/>
|
21
|
+
</attribute>
|
22
|
+
<optional>
|
23
|
+
<element name="description">
|
24
|
+
<ref name="FormattedString"/>
|
25
|
+
</element>
|
26
|
+
</optional>
|
27
|
+
<element name="bibitem">
|
28
|
+
<ref name="StandardReducedBibliographicItem"/>
|
29
|
+
</element>
|
30
|
+
<choice>
|
31
|
+
<zeroOrMore>
|
32
|
+
<ref name="locality"/>
|
33
|
+
</zeroOrMore>
|
34
|
+
<zeroOrMore>
|
35
|
+
<ref name="localityStack"/>
|
36
|
+
</zeroOrMore>
|
37
|
+
</choice>
|
38
|
+
<choice>
|
39
|
+
<zeroOrMore>
|
40
|
+
<ref name="sourceLocality"/>
|
41
|
+
</zeroOrMore>
|
42
|
+
<zeroOrMore>
|
43
|
+
<ref name="sourceLocalityStack"/>
|
44
|
+
</zeroOrMore>
|
45
|
+
</choice>
|
46
|
+
</element>
|
47
|
+
</define>
|
17
48
|
</include>
|
18
49
|
<define name="ext">
|
19
50
|
<element name="ext">
|
@@ -161,4 +192,16 @@
|
|
161
192
|
</optional>
|
162
193
|
</element>
|
163
194
|
</define>
|
195
|
+
<define name="StandardBibliographicItem">
|
196
|
+
<ref name="BibliographicItem"/>
|
197
|
+
<zeroOrMore>
|
198
|
+
<ref name="amend"/>
|
199
|
+
</zeroOrMore>
|
200
|
+
</define>
|
201
|
+
<define name="StandardReducedBibliographicItem">
|
202
|
+
<ref name="ReducedBibliographicItem"/>
|
203
|
+
<zeroOrMore>
|
204
|
+
<ref name="amend"/>
|
205
|
+
</zeroOrMore>
|
206
|
+
</define>
|
164
207
|
</grammar>
|
data/grammars/biblio.rng
CHANGED
@@ -241,6 +241,9 @@
|
|
241
241
|
</element>
|
242
242
|
</define>
|
243
243
|
<define name="FullNameType">
|
244
|
+
<optional>
|
245
|
+
<ref name="name_abbreviation"/>
|
246
|
+
</optional>
|
244
247
|
<choice>
|
245
248
|
<group>
|
246
249
|
<zeroOrMore>
|
@@ -266,6 +269,11 @@
|
|
266
269
|
<ref name="variantname"/>
|
267
270
|
</zeroOrMore>
|
268
271
|
</define>
|
272
|
+
<define name="name_abbreviation">
|
273
|
+
<element name="abbreviation">
|
274
|
+
<ref name="LocalizedString"/>
|
275
|
+
</element>
|
276
|
+
</define>
|
269
277
|
<define name="prefix">
|
270
278
|
<element name="prefix">
|
271
279
|
<ref name="LocalizedString"/>
|
@@ -348,6 +356,9 @@
|
|
348
356
|
<zeroOrMore>
|
349
357
|
<ref name="contact"/>
|
350
358
|
</zeroOrMore>
|
359
|
+
<optional>
|
360
|
+
<ref name="logo"/>
|
361
|
+
</optional>
|
351
362
|
</element>
|
352
363
|
</define>
|
353
364
|
<define name="orgname">
|
@@ -366,6 +377,21 @@
|
|
366
377
|
</choice>
|
367
378
|
</element>
|
368
379
|
</define>
|
380
|
+
<define name="logo">
|
381
|
+
<element name="logo">
|
382
|
+
<ref name="image"/>
|
383
|
+
</element>
|
384
|
+
</define>
|
385
|
+
<define name="depiction">
|
386
|
+
<element name="depiction">
|
387
|
+
<optional>
|
388
|
+
<attribute name="scope"/>
|
389
|
+
</optional>
|
390
|
+
<zeroOrMore>
|
391
|
+
<ref name="image"/>
|
392
|
+
</zeroOrMore>
|
393
|
+
</element>
|
394
|
+
</define>
|
369
395
|
<define name="NameWithVariants">
|
370
396
|
<element name="primary">
|
371
397
|
<ref name="LocalizedString"/>
|
@@ -752,6 +778,9 @@
|
|
752
778
|
<optional>
|
753
779
|
<ref name="validity"/>
|
754
780
|
</optional>
|
781
|
+
<optional>
|
782
|
+
<ref name="depiction"/>
|
783
|
+
</optional>
|
755
784
|
</define>
|
756
785
|
<define name="ReducedBibliographicItem">
|
757
786
|
<optional>
|
@@ -849,6 +878,9 @@
|
|
849
878
|
<optional>
|
850
879
|
<ref name="validity"/>
|
851
880
|
</optional>
|
881
|
+
<optional>
|
882
|
+
<ref name="depiction"/>
|
883
|
+
</optional>
|
852
884
|
</define>
|
853
885
|
<define name="btitle">
|
854
886
|
<element name="title">
|
data/grammars/relaton-ieee.rng
CHANGED
@@ -75,6 +75,9 @@
|
|
75
75
|
<optional>
|
76
76
|
<ref name="holdstatus"/>
|
77
77
|
</optional>
|
78
|
+
<optional>
|
79
|
+
<ref name="program"/>
|
80
|
+
</optional>
|
78
81
|
</define>
|
79
82
|
</include>
|
80
83
|
<define name="standard_status">
|
@@ -114,6 +117,11 @@
|
|
114
117
|
</choice>
|
115
118
|
</element>
|
116
119
|
</define>
|
120
|
+
<define name="program">
|
121
|
+
<element name="program">
|
122
|
+
<text/>
|
123
|
+
</element>
|
124
|
+
</define>
|
117
125
|
<define name="BibliographicDateType" combine="choice">
|
118
126
|
<value>feedback-ended</value>
|
119
127
|
</define>
|
@@ -13,7 +13,7 @@ module RelatonIeee
|
|
13
13
|
#
|
14
14
|
def initialize(type:, content:)
|
15
15
|
unless TYPES.include?(type)
|
16
|
-
Util.warn "
|
16
|
+
Util.warn "type of Balloting group must be one of `#{TYPES.join('`, `')}`"
|
17
17
|
end
|
18
18
|
|
19
19
|
@type = type
|
@@ -61,9 +61,7 @@ module RelatonIeee
|
|
61
61
|
end
|
62
62
|
fetch_doc xml, f
|
63
63
|
rescue StandardError => e
|
64
|
-
|
65
|
-
warn e.message
|
66
|
-
warn e.backtrace
|
64
|
+
Util.error "File: #{f}\n#{e.message}\n#{e.backtrace}"
|
67
65
|
end
|
68
66
|
# File.write "normtitles.txt", @normtitles.join("\n")
|
69
67
|
update_relations
|
@@ -92,7 +90,7 @@ module RelatonIeee
|
|
92
90
|
def fetch_doc(xml, filename) # rubocop:disable Metrics/AbcSize,Metrics/MethodLength,Metrics/CyclomaticComplexity,Metrics/PerceivedComplexity
|
93
91
|
doc = Nokogiri::XML(xml).at("/publication")
|
94
92
|
unless doc
|
95
|
-
warn "Empty file:
|
93
|
+
Util.warn "Empty file: `#{filename}`"
|
96
94
|
return
|
97
95
|
end
|
98
96
|
stdid = doc.at("./publicationinfo/standard_id")&.text
|
@@ -102,14 +100,14 @@ module RelatonIeee
|
|
102
100
|
bib = fetcher.parse
|
103
101
|
if bib.docnumber.nil?
|
104
102
|
nt = doc&.at("./normtitle")&.text
|
105
|
-
warn "PubID parse error. Normtitle:
|
103
|
+
Util.warn "PubID parse error. Normtitle: `#{nt}`, file: `#{filename}`"
|
106
104
|
return
|
107
105
|
end
|
108
106
|
amsid = doc.at("./publicationinfo/amsid").text
|
109
107
|
if backrefs.value?(bib.docidentifier[0].id) && /updates\.\d+/ !~ filename
|
110
108
|
oamsid = backrefs.key bib.docidentifier[0].id
|
111
|
-
warn "Document exists ID:
|
112
|
-
"
|
109
|
+
Util.warn "Document exists ID: `#{bib.docidentifier[0].id}` AMSID: " \
|
110
|
+
"`#{amsid}` source: `#{filename}`. Other AMSID: `#{oamsid}`"
|
113
111
|
if bib.docidentifier[0].id.include?(doc.at("./publicationinfo/stdnumber").text)
|
114
112
|
save_doc bib # rewrite file if the PubID matches to the stdnumber
|
115
113
|
backrefs[amsid] = bib.docidentifier[0].id
|
@@ -177,7 +175,7 @@ module RelatonIeee
|
|
177
175
|
save_doc bib
|
178
176
|
end
|
179
177
|
else
|
180
|
-
warn "Unresolved relation: '#{rf[:amsid]}' type: '#{rf[:type]}' for '#{dnum}'"
|
178
|
+
Util.warn "Unresolved relation: '#{rf[:amsid]}' type: '#{rf[:type]}' for '#{dnum}'"
|
181
179
|
end
|
182
180
|
end
|
183
181
|
end
|
@@ -9,8 +9,7 @@ module RelatonIeee
|
|
9
9
|
|
10
10
|
def check_type(type)
|
11
11
|
unless DOCTYPES.include? type
|
12
|
-
Util.warn "Invalid doctype: `#{type}`. "
|
13
|
-
"It should be one of: `#{DOCTYPES.join('`, `')}`."
|
12
|
+
Util.warn "Invalid doctype: `#{type}`. It should be one of: `#{DOCTYPES.join('`, `')}`."
|
14
13
|
end
|
15
14
|
end
|
16
15
|
end
|
@@ -38,13 +38,13 @@ module RelatonIeee
|
|
38
38
|
# if document is found else returns NilClass
|
39
39
|
#
|
40
40
|
def get(code, _year = nil, _opts = {}) # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
|
41
|
-
Util.
|
41
|
+
Util.info "Fetching from Relaton repository ...", key: code
|
42
42
|
item = search(code)
|
43
43
|
if item
|
44
|
-
Util.
|
44
|
+
Util.info "Found: `#{item.docidentifier.first.id}`", key: code
|
45
45
|
item
|
46
46
|
else
|
47
|
-
Util.
|
47
|
+
Util.info "Not found.", key: code
|
48
48
|
nil
|
49
49
|
end
|
50
50
|
end
|
data/lib/relaton_ieee/util.rb
CHANGED
data/lib/relaton_ieee/version.rb
CHANGED
data/lib/relaton_ieee.rb
CHANGED
data/relaton_ieee.gemspec
CHANGED
@@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
|
|
33
33
|
|
34
34
|
spec.add_dependency "faraday", "~> 2.7.0"
|
35
35
|
spec.add_dependency "mini_portile2", "~> 2.8.0"
|
36
|
-
spec.add_dependency "relaton-bib", "~> 1.
|
36
|
+
spec.add_dependency "relaton-bib", "~> 1.19.0"
|
37
37
|
spec.add_dependency "relaton-index", "~> 0.2.0"
|
38
38
|
spec.add_dependency "rubyzip", "~> 2.3.0"
|
39
39
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: relaton-ieee
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.19.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -44,14 +44,14 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 1.
|
47
|
+
version: 1.19.0
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 1.
|
54
|
+
version: 1.19.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: relaton-index
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -109,7 +109,6 @@ files:
|
|
109
109
|
- lib/relaton_ieee.rb
|
110
110
|
- lib/relaton_ieee/balloting_group.rb
|
111
111
|
- lib/relaton_ieee/bibxml_parser.rb
|
112
|
-
- lib/relaton_ieee/config.rb
|
113
112
|
- lib/relaton_ieee/data_fetcher.rb
|
114
113
|
- lib/relaton_ieee/data_parser.rb
|
115
114
|
- lib/relaton_ieee/document_status.rb
|
@@ -146,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
146
145
|
- !ruby/object:Gem::Version
|
147
146
|
version: '0'
|
148
147
|
requirements: []
|
149
|
-
rubygems_version: 3.3.
|
148
|
+
rubygems_version: 3.3.27
|
150
149
|
signing_key:
|
151
150
|
specification_version: 4
|
152
151
|
summary: 'RelatonIeee: retrieve IEEE Standards for bibliographic use using the IeeeBibliographicItem
|