relaton-ieee 1.3.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.adoc +30 -24
- data/grammars/isodoc.rng +130 -21
- data/lib/relaton_ieee/hit_collection.rb +4 -4
- data/lib/relaton_ieee/scrapper.rb +12 -8
- data/lib/relaton_ieee/version.rb +1 -1
- data/relaton_ieee.gemspec +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aaf06375726fbbc3787de633d801af3b3d0b9a5eb034db2bcfee5a73f82d9f9e
|
4
|
+
data.tar.gz: 941f57105265f5c195a031ba2514299ec50f09439f35f00a2801543e9e906691
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e00b76917329c4cfc1d2d5952cefc7776d5c33540087c84e20dddd7dec55ffb2e1ce48e2ab9289e1a0543ef3ad39db6a0ba399aeef93fc32536e4756906271b
|
7
|
+
data.tar.gz: 0acfdc0b3f0bab3a84605520761db7b21dc8167ea1b0c27255f4362f323593ccc82f95978ecbdb99b693050bab008aa0782c14e4f3203471451ac17e2fd93edc
|
data/README.adoc
CHANGED
@@ -8,7 +8,7 @@ You can use it to retrieve metadata of IEEE Standards from standards.ieee.org, a
|
|
8
8
|
|
9
9
|
Add this line to your application's Gemfile:
|
10
10
|
|
11
|
-
[
|
11
|
+
[source,ruby]
|
12
12
|
----
|
13
13
|
gem 'relaton-ieee'
|
14
14
|
----
|
@@ -25,35 +25,37 @@ Or install it yourself as:
|
|
25
25
|
|
26
26
|
=== Search for a standard using keywords
|
27
27
|
|
28
|
+
[source,ruby]
|
28
29
|
----
|
29
|
-
|
30
|
+
require 'relaton_ieee'
|
30
31
|
=> true
|
31
32
|
|
32
|
-
|
33
|
+
hits = RelatonIeee::IeeeBibliography.search("IEEE 528-2019")
|
33
34
|
=> <RelatonIeee::HitCollection:0x007f84c0085308 @ref=IEEE 528-2019 @fetched=false>
|
34
35
|
|
35
|
-
|
36
|
+
item = hits[0].fetch
|
36
37
|
=> #<RelatonIeee::IeeeBibliographicItem:0x007f84bf839c30
|
37
38
|
...
|
38
39
|
----
|
39
40
|
|
40
41
|
=== XML serialization
|
41
42
|
|
43
|
+
[source,ruby]
|
42
44
|
----
|
43
|
-
|
44
|
-
=> "<bibitem id
|
45
|
+
item.to_xml
|
46
|
+
=> "<bibitem id="IEEE528-2019">
|
45
47
|
<fetched>2020-06-01</fetched>
|
46
|
-
<title type
|
47
|
-
<uri type
|
48
|
-
<docidentifier type
|
49
|
-
<date type
|
48
|
+
<title type="main" format="text/plain" language="en" script="Latn">IEEE 528-2019 - IEEE Standard for Inertial Sensor Terminology</title>
|
49
|
+
<uri type="src">https://standards.ieee.org/content/ieee-standards/en/standard/528-2019.html</uri>
|
50
|
+
<docidentifier type="IEEE">IEEE 528-2019</docidentifier>
|
51
|
+
<date type="issued">
|
50
52
|
<on>2019</on>
|
51
53
|
</date>
|
52
|
-
<date type
|
54
|
+
<date type="published">
|
53
55
|
<on>2019</on>
|
54
56
|
</date>
|
55
57
|
<contributor>
|
56
|
-
<role type
|
58
|
+
<role type="author"/>
|
57
59
|
<person>
|
58
60
|
<name>
|
59
61
|
<completename>Ashley Moran</completename>
|
@@ -62,7 +64,7 @@ Or install it yourself as:
|
|
62
64
|
</contributor>
|
63
65
|
<language>en</language>
|
64
66
|
<script>Latn</script>
|
65
|
-
<abstract format
|
67
|
+
<abstract format="text/plain" language="en" script="Latn">Terms and definitions relating to inertial sensors are presented in this standard. Usage as understood by the inertial sensor community is given preference over general technical usage of the terms herein. The criterion for inclusion of a term and its definition in this standard is usefulness as related to inertial sensor technology.</abstract>
|
66
68
|
<status>
|
67
69
|
<stage>Active</stage>
|
68
70
|
</status>
|
@@ -71,13 +73,14 @@ Or install it yourself as:
|
|
71
73
|
|
72
74
|
With argument `bibdata: true` it ouputs XML wrapped by `bibdata` element and adds flavour `ext` element.
|
73
75
|
|
76
|
+
[source,ruby]
|
74
77
|
----
|
75
|
-
|
78
|
+
item.to_xml bibdata: true
|
76
79
|
=> "<bibdata>
|
77
80
|
<fetched>2020-06-01</fetched>
|
78
|
-
<title type="main" format="text/plain" language="en" script="Latn">528-2019 - IEEE Standard for Inertial Sensor Terminology</title>
|
81
|
+
<title type="main" format="text/plain" language="en" script="Latn">IEEE 528-2019 - IEEE Standard for Inertial Sensor Terminology</title>
|
79
82
|
<uri type="src">https://standards.ieee.org/content/ieee-standards/en/standard/528-2019.html</uri>
|
80
|
-
<docidentifier type="IEEE">528-2019</docidentifier>
|
83
|
+
<docidentifier type="IEEE">IEEE 528-2019</docidentifier>
|
81
84
|
<date type="issued">
|
82
85
|
<on>2019</on>
|
83
86
|
</date>
|
@@ -99,7 +102,7 @@ With argument `bibdata: true` it ouputs XML wrapped by `bibdata` element and add
|
|
99
102
|
<stage>Active</stage>
|
100
103
|
</status>
|
101
104
|
<ext>
|
102
|
-
<committee type="
|
105
|
+
<committee type="standard">
|
103
106
|
<name>AES/GA - Gyro Accelerometer Panel</name>
|
104
107
|
</committee>
|
105
108
|
<committee type="working">
|
@@ -114,20 +117,21 @@ With argument `bibdata: true` it ouputs XML wrapped by `bibdata` element and add
|
|
114
117
|
----
|
115
118
|
|
116
119
|
=== Get document by reference
|
120
|
+
[source,ruby]
|
117
121
|
----
|
118
|
-
|
122
|
+
RelatonIeee::IeeeBibliography.get("IEEE 528-2019")
|
119
123
|
[relaton-ieee] ("IEEE 528-2019") fetching...
|
120
124
|
[relaton-ieee] ("IEEE 528-2019") found 528-2019
|
121
125
|
=> #<RelatonIeee::IeeeBibliographicItem:0x007fceb52a6e40
|
122
126
|
...
|
123
127
|
|
124
|
-
|
128
|
+
RelatonIeee::IeeeBibliography.get("IEEE 528", "2019")
|
125
129
|
[relaton-ieee] ("IEEE 528") fetching...
|
126
130
|
[relaton-ieee] ("IEEE 528") found 528-2019
|
127
131
|
=> #<RelatonIeee::IeeeBibliographicItem:0x007fceb54af7f0
|
128
132
|
...
|
129
133
|
|
130
|
-
|
134
|
+
RelatonIeee::IeeeBibliography.get("IEEE 528")
|
131
135
|
[relaton-ieee] ("IEEE 528") fetching...
|
132
136
|
[relaton-ieee] ("IEEE 528") found 528-2019
|
133
137
|
=> #<RelatonIeee::IeeeBibliographicItem:0x007fceb512c510
|
@@ -135,23 +139,25 @@ With argument `bibdata: true` it ouputs XML wrapped by `bibdata` element and add
|
|
135
139
|
----
|
136
140
|
|
137
141
|
=== Create bibliographic item from XML
|
142
|
+
[source,ruby]
|
138
143
|
----
|
139
|
-
|
144
|
+
RelatonIeee::XMLParser.from_xml File.read "spec/fixtures/ieee_528_2019.xml"
|
140
145
|
=> #<RelatonIeee::IeeeBibliographicItem:0x007fceb550c978
|
141
146
|
...
|
142
147
|
----
|
143
148
|
|
144
149
|
=== Create bibliographic item from YAML
|
150
|
+
[source,ruby]
|
145
151
|
----
|
146
|
-
|
152
|
+
hash = YAML.load_file 'spec/fixtures/ieee_528_2019.yaml'
|
147
153
|
=> {"id"=>"528-2019", "title"=>{
|
148
154
|
...
|
149
155
|
|
150
|
-
|
156
|
+
bib_hash = RelatonIeee::HashConverter.hash_to_bib hash
|
151
157
|
=> {:id=>"528-2019", :title=>[{
|
152
158
|
...
|
153
159
|
|
154
|
-
|
160
|
+
RelatonIeee::IeeeBibliographicItem.new bib_hash
|
155
161
|
=> #<RelatonIeee::IeeeBibliographicItem:0x007fce940b3eb0
|
156
162
|
...
|
157
163
|
----
|
data/grammars/isodoc.rng
CHANGED
@@ -42,8 +42,11 @@
|
|
42
42
|
</define>
|
43
43
|
<define name="xref">
|
44
44
|
<element name="xref">
|
45
|
+
<!-- attribute target { xsd:IDREF }, -->
|
45
46
|
<attribute name="target">
|
46
|
-
<data type="
|
47
|
+
<data type="string">
|
48
|
+
<param name="pattern">\i\c*|\c+#\c+</param>
|
49
|
+
</data>
|
47
50
|
</attribute>
|
48
51
|
<optional>
|
49
52
|
<attribute name="type">
|
@@ -61,6 +64,11 @@
|
|
61
64
|
</choice>
|
62
65
|
</attribute>
|
63
66
|
</optional>
|
67
|
+
<optional>
|
68
|
+
<attribute name="droploc">
|
69
|
+
<data type="boolean"/>
|
70
|
+
</attribute>
|
71
|
+
</optional>
|
64
72
|
<text/>
|
65
73
|
</element>
|
66
74
|
</define>
|
@@ -578,6 +586,8 @@
|
|
578
586
|
<ref name="ol"/>
|
579
587
|
<ref name="dl"/>
|
580
588
|
<ref name="formula"/>
|
589
|
+
<ref name="quote"/>
|
590
|
+
<ref name="sourcecode"/>
|
581
591
|
</choice>
|
582
592
|
</oneOrMore>
|
583
593
|
</element>
|
@@ -661,6 +671,16 @@
|
|
661
671
|
</choice>
|
662
672
|
</attribute>
|
663
673
|
</optional>
|
674
|
+
<optional>
|
675
|
+
<attribute name="valign">
|
676
|
+
<choice>
|
677
|
+
<value>top</value>
|
678
|
+
<value>middle</value>
|
679
|
+
<value>bottom</value>
|
680
|
+
<value>baseline</value>
|
681
|
+
</choice>
|
682
|
+
</attribute>
|
683
|
+
</optional>
|
664
684
|
<choice>
|
665
685
|
<zeroOrMore>
|
666
686
|
<choice>
|
@@ -697,6 +717,16 @@
|
|
697
717
|
</choice>
|
698
718
|
</attribute>
|
699
719
|
</optional>
|
720
|
+
<optional>
|
721
|
+
<attribute name="valign">
|
722
|
+
<choice>
|
723
|
+
<value>top</value>
|
724
|
+
<value>middle</value>
|
725
|
+
<value>bottom</value>
|
726
|
+
<value>baseline</value>
|
727
|
+
</choice>
|
728
|
+
</attribute>
|
729
|
+
</optional>
|
700
730
|
<choice>
|
701
731
|
<zeroOrMore>
|
702
732
|
<choice>
|
@@ -855,7 +885,7 @@
|
|
855
885
|
<oneOrMore>
|
856
886
|
<choice>
|
857
887
|
<ref name="content"/>
|
858
|
-
<ref name="
|
888
|
+
<ref name="abstract"/>
|
859
889
|
<ref name="foreword"/>
|
860
890
|
<ref name="introduction"/>
|
861
891
|
<ref name="acknowledgements"/>
|
@@ -922,6 +952,9 @@
|
|
922
952
|
<optional>
|
923
953
|
<attribute name="script"/>
|
924
954
|
</optional>
|
955
|
+
<optional>
|
956
|
+
<attribute name="type"/>
|
957
|
+
</optional>
|
925
958
|
<optional>
|
926
959
|
<attribute name="obligation">
|
927
960
|
<choice>
|
@@ -961,9 +994,6 @@
|
|
961
994
|
</define>
|
962
995
|
<define name="content-subsection">
|
963
996
|
<element name="clause">
|
964
|
-
<optional>
|
965
|
-
<attribute name="type"/>
|
966
|
-
</optional>
|
967
997
|
<ref name="Content-Section"/>
|
968
998
|
</element>
|
969
999
|
</define>
|
@@ -992,6 +1022,9 @@
|
|
992
1022
|
</choice>
|
993
1023
|
</attribute>
|
994
1024
|
</optional>
|
1025
|
+
<optional>
|
1026
|
+
<attribute name="type"/>
|
1027
|
+
</optional>
|
995
1028
|
<optional>
|
996
1029
|
<ref name="section-title"/>
|
997
1030
|
</optional>
|
@@ -1011,9 +1044,6 @@
|
|
1011
1044
|
</define>
|
1012
1045
|
<define name="clause">
|
1013
1046
|
<element name="clause">
|
1014
|
-
<optional>
|
1015
|
-
<attribute name="type"/>
|
1016
|
-
</optional>
|
1017
1047
|
<ref name="Clause-Section"/>
|
1018
1048
|
</element>
|
1019
1049
|
</define>
|
@@ -1042,18 +1072,24 @@
|
|
1042
1072
|
</choice>
|
1043
1073
|
</attribute>
|
1044
1074
|
</optional>
|
1075
|
+
<optional>
|
1076
|
+
<attribute name="type"/>
|
1077
|
+
</optional>
|
1045
1078
|
<optional>
|
1046
1079
|
<ref name="section-title"/>
|
1047
1080
|
</optional>
|
1048
1081
|
<group>
|
1049
|
-
<
|
1050
|
-
<
|
1051
|
-
<
|
1052
|
-
|
1053
|
-
|
1054
|
-
<
|
1055
|
-
|
1056
|
-
|
1082
|
+
<choice>
|
1083
|
+
<group>
|
1084
|
+
<zeroOrMore>
|
1085
|
+
<ref name="BasicBlock"/>
|
1086
|
+
</zeroOrMore>
|
1087
|
+
<zeroOrMore>
|
1088
|
+
<ref name="note"/>
|
1089
|
+
</zeroOrMore>
|
1090
|
+
</group>
|
1091
|
+
<ref name="amend"/>
|
1092
|
+
</choice>
|
1057
1093
|
<zeroOrMore>
|
1058
1094
|
<choice>
|
1059
1095
|
<ref name="clause-subsection"/>
|
@@ -1180,6 +1216,9 @@
|
|
1180
1216
|
<optional>
|
1181
1217
|
<attribute name="script"/>
|
1182
1218
|
</optional>
|
1219
|
+
<optional>
|
1220
|
+
<attribute name="type"/>
|
1221
|
+
</optional>
|
1183
1222
|
<optional>
|
1184
1223
|
<attribute name="obligation">
|
1185
1224
|
<choice>
|
@@ -1447,11 +1486,6 @@
|
|
1447
1486
|
</optional>
|
1448
1487
|
</element>
|
1449
1488
|
</define>
|
1450
|
-
<define name="preface_abstract">
|
1451
|
-
<element name="abstract">
|
1452
|
-
<ref name="Basic-Section"/>
|
1453
|
-
</element>
|
1454
|
-
</define>
|
1455
1489
|
<define name="term-clause">
|
1456
1490
|
<element name="clause">
|
1457
1491
|
<optional>
|
@@ -1501,4 +1535,79 @@
|
|
1501
1535
|
<ref name="CitationType"/>
|
1502
1536
|
</element>
|
1503
1537
|
</define>
|
1538
|
+
<define name="amend">
|
1539
|
+
<element name="amend">
|
1540
|
+
<optional>
|
1541
|
+
<attribute name="id">
|
1542
|
+
<data type="ID"/>
|
1543
|
+
</attribute>
|
1544
|
+
</optional>
|
1545
|
+
<attribute name="change">
|
1546
|
+
<choice>
|
1547
|
+
<value>add</value>
|
1548
|
+
<value>modify</value>
|
1549
|
+
<value>delete</value>
|
1550
|
+
</choice>
|
1551
|
+
</attribute>
|
1552
|
+
<optional>
|
1553
|
+
<attribute name="path"/>
|
1554
|
+
</optional>
|
1555
|
+
<optional>
|
1556
|
+
<attribute name="path_end"/>
|
1557
|
+
</optional>
|
1558
|
+
<optional>
|
1559
|
+
<attribute name="title"/>
|
1560
|
+
</optional>
|
1561
|
+
<optional>
|
1562
|
+
<element name="location">
|
1563
|
+
<zeroOrMore>
|
1564
|
+
<ref name="locality"/>
|
1565
|
+
</zeroOrMore>
|
1566
|
+
</element>
|
1567
|
+
</optional>
|
1568
|
+
<zeroOrMore>
|
1569
|
+
<ref name="autonumber"/>
|
1570
|
+
</zeroOrMore>
|
1571
|
+
<optional>
|
1572
|
+
<element name="description">
|
1573
|
+
<zeroOrMore>
|
1574
|
+
<ref name="BasicBlock"/>
|
1575
|
+
</zeroOrMore>
|
1576
|
+
</element>
|
1577
|
+
</optional>
|
1578
|
+
<optional>
|
1579
|
+
<element name="newcontent">
|
1580
|
+
<zeroOrMore>
|
1581
|
+
<ref name="BasicBlock"/>
|
1582
|
+
</zeroOrMore>
|
1583
|
+
</element>
|
1584
|
+
</optional>
|
1585
|
+
<optional>
|
1586
|
+
<element name="description">
|
1587
|
+
<zeroOrMore>
|
1588
|
+
<ref name="BasicBlock"/>
|
1589
|
+
</zeroOrMore>
|
1590
|
+
</element>
|
1591
|
+
</optional>
|
1592
|
+
</element>
|
1593
|
+
</define>
|
1594
|
+
<define name="autonumber">
|
1595
|
+
<element name="autonumber">
|
1596
|
+
<attribute name="type">
|
1597
|
+
<choice>
|
1598
|
+
<value>requirement</value>
|
1599
|
+
<value>recommendation</value>
|
1600
|
+
<value>permission</value>
|
1601
|
+
<value>table</value>
|
1602
|
+
<value>figure</value>
|
1603
|
+
<value>admonition</value>
|
1604
|
+
<value>formula</value>
|
1605
|
+
<value>sourcecode</value>
|
1606
|
+
<value>example</value>
|
1607
|
+
<value>note</value>
|
1608
|
+
</choice>
|
1609
|
+
</attribute>
|
1610
|
+
<text/>
|
1611
|
+
</element>
|
1612
|
+
</define>
|
1504
1613
|
</grammar>
|
@@ -13,7 +13,7 @@ module RelatonIeee
|
|
13
13
|
|
14
14
|
# @param ref [Strig]
|
15
15
|
# @param opts [Hash]
|
16
|
-
def initialize(ref)
|
16
|
+
def initialize(ref) # rubocop:disable Metrics/MethodLength
|
17
17
|
super
|
18
18
|
code = ref.sub /^IEEE\s/, ""
|
19
19
|
search = CGI.escape({ data: { searchTerm: code } }.to_json)
|
@@ -21,9 +21,9 @@ module RelatonIeee
|
|
21
21
|
resp = Faraday.get url
|
22
22
|
resp_json = JSON.parse resp.body
|
23
23
|
json = JSON.parse resp_json["message"]
|
24
|
-
@array = json["response"]["searchResults"]["resultsMapList"]
|
25
|
-
reduce([]) do |s, hit|
|
26
|
-
/^(?<id>\d+)-(?<year>\d{4})/ =~ hit["record"]["recordTitle"]
|
24
|
+
@array = json["response"]["searchResults"]["resultsMapList"]
|
25
|
+
.reduce([]) do |s, hit|
|
26
|
+
/^(?:\w+\s)?(?<id>\d+)-(?<year>\d{4})/ =~ hit["record"]["recordTitle"]
|
27
27
|
next s unless id && code =~ %r{^#{id}}
|
28
28
|
|
29
29
|
s << Hit.new(hit["record"].merge(code: id, year: year.to_i), self)
|
@@ -18,7 +18,7 @@ module RelatonIeee
|
|
18
18
|
language: ["en"],
|
19
19
|
script: ["Latn"],
|
20
20
|
date: fetch_date(doc),
|
21
|
-
committee: fetch_committee(doc)
|
21
|
+
committee: fetch_committee(doc)
|
22
22
|
)
|
23
23
|
end
|
24
24
|
# rubocop:enable Metrics/MethodLength, Metrics/AbcSize
|
@@ -30,7 +30,7 @@ module RelatonIeee
|
|
30
30
|
def fetch_title(title)
|
31
31
|
[
|
32
32
|
RelatonBib::TypedTitleString.new(
|
33
|
-
type: "main", content: title, language: "en", script: "Latn"
|
33
|
+
type: "main", content: title, language: "en", script: "Latn"
|
34
34
|
),
|
35
35
|
]
|
36
36
|
end
|
@@ -38,7 +38,7 @@ module RelatonIeee
|
|
38
38
|
# @param title [String]
|
39
39
|
# @return [Array<RelatonBib::DocumentIdentifier>]
|
40
40
|
def fetch_docid(title)
|
41
|
-
/^(?<identifier
|
41
|
+
/^(?<identifier>(?:\w+\s)?\S+)/ =~ title
|
42
42
|
[RelatonBib::DocumentIdentifier.new(id: identifier, type: "IEEE")]
|
43
43
|
end
|
44
44
|
|
@@ -78,7 +78,7 @@ module RelatonIeee
|
|
78
78
|
# @return [Array<RelatonBib::ContributionInfo>]
|
79
79
|
def fetch_contributor(doc)
|
80
80
|
name = doc.at(
|
81
|
-
"//td[.='IEEE Program Manager']/following-sibling::td/div/a"
|
81
|
+
"//td[.='IEEE Program Manager']/following-sibling::td/div/a"
|
82
82
|
)
|
83
83
|
return [] unless name
|
84
84
|
|
@@ -89,11 +89,11 @@ module RelatonIeee
|
|
89
89
|
# @return [RelatonBib::ContributionInfo]
|
90
90
|
def personn_contrib(name)
|
91
91
|
fname = RelatonBib::FullName.new(
|
92
|
-
completename: RelatonBib::LocalizedString.new(name)
|
92
|
+
completename: RelatonBib::LocalizedString.new(name)
|
93
93
|
)
|
94
94
|
entity = RelatonBib::Person.new(name: fname)
|
95
95
|
RelatonBib::ContributionInfo.new(
|
96
|
-
entity: entity, role: [type: "author"]
|
96
|
+
entity: entity, role: [type: "author"]
|
97
97
|
)
|
98
98
|
end
|
99
99
|
|
@@ -117,8 +117,8 @@ module RelatonIeee
|
|
117
117
|
dates << RelatonBib::BibliographicDate.new(type: "issued",
|
118
118
|
on: issued.text)
|
119
119
|
end
|
120
|
-
published = doc.at("//td[.='History']/following-sibling::td/div")
|
121
|
-
text&.match(/(?<=Published Date:)[\d-]+/)&.to_s
|
120
|
+
published = doc.at("//td[.='History']/following-sibling::td/div")
|
121
|
+
&.text&.match(/(?<=Published Date:)[\d-]+/)&.to_s
|
122
122
|
if published
|
123
123
|
dates << RelatonBib::BibliographicDate.new(type: "published",
|
124
124
|
on: published)
|
@@ -136,6 +136,10 @@ module RelatonIeee
|
|
136
136
|
if sponsor
|
137
137
|
committees << Committee.new(type: "sponsor", name: sponsor.text)
|
138
138
|
end
|
139
|
+
sponsor = doc.at "//td[.='Standards Committee']/following-sibling::td/div/a"
|
140
|
+
if sponsor
|
141
|
+
committees << Committee.new(type: "standard", name: sponsor.text)
|
142
|
+
end
|
139
143
|
working = doc.at "//td[.='Working Group']/following-sibling::td/div"
|
140
144
|
chair = doc.at "//td[.='Working Group Chair']/following-sibling::td/div"
|
141
145
|
if working
|
data/lib/relaton_ieee/version.rb
CHANGED
data/relaton_ieee.gemspec
CHANGED
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.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: debase
|
@@ -142,14 +142,14 @@ dependencies:
|
|
142
142
|
requirements:
|
143
143
|
- - "~>"
|
144
144
|
- !ruby/object:Gem::Version
|
145
|
-
version: 1.
|
145
|
+
version: 1.4.0
|
146
146
|
type: :runtime
|
147
147
|
prerelease: false
|
148
148
|
version_requirements: !ruby/object:Gem::Requirement
|
149
149
|
requirements:
|
150
150
|
- - "~>"
|
151
151
|
- !ruby/object:Gem::Version
|
152
|
-
version: 1.
|
152
|
+
version: 1.4.0
|
153
153
|
description: 'RelatonIeee: retrieve IEEE Standards for bibliographic use using the
|
154
154
|
IeeeBibliographicItem model'
|
155
155
|
email:
|
@@ -193,7 +193,7 @@ licenses:
|
|
193
193
|
metadata:
|
194
194
|
homepage_uri: https://github.com/relaton/relaton-ieee
|
195
195
|
source_code_uri: https://github.com/relaton/relaton-ieee
|
196
|
-
post_install_message:
|
196
|
+
post_install_message:
|
197
197
|
rdoc_options: []
|
198
198
|
require_paths:
|
199
199
|
- lib
|
@@ -209,7 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
209
209
|
version: '0'
|
210
210
|
requirements: []
|
211
211
|
rubygems_version: 3.0.6
|
212
|
-
signing_key:
|
212
|
+
signing_key:
|
213
213
|
specification_version: 4
|
214
214
|
summary: 'RelatonIeee: retrieve IEEE Standards for bibliographic use using the IeeeBibliographicItem
|
215
215
|
model'
|