metanorma-standoc 1.3.11 → 1.3.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/macos.yml +2 -2
- data/.github/workflows/ubuntu.yml +3 -2
- data/.github/workflows/windows.yml +2 -2
- data/lib/asciidoctor/standoc/biblio.rng +2 -2
- data/lib/asciidoctor/standoc/cleanup.rb +9 -1
- data/lib/asciidoctor/standoc/front.rb +2 -0
- data/lib/asciidoctor/standoc/reqt.rb +3 -1
- data/lib/asciidoctor/standoc/reqt.rng +6 -0
- data/lib/asciidoctor/standoc/utils.rb +9 -2
- data/lib/metanorma/standoc/version.rb +1 -1
- data/metanorma-standoc.gemspec +0 -1
- data/spec/asciidoctor-standoc/base_spec.rb +4 -0
- data/spec/asciidoctor-standoc/blocks_spec.rb +2 -2
- data/spec/asciidoctor-standoc/cleanup_spec.rb +21 -7
- data/spec/asciidoctor-standoc/inline_spec.rb +1 -1
- data/spec/asciidoctor-standoc/refs_dl_spec.rb +1 -1
- data/spec/asciidoctor-standoc/refs_spec.rb +10 -8
- metadata +2 -17
- data/Gemfile.lock +0 -226
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f17b9d80c9fe9a016f0dced0181c202a17b3d65848de1a401e6846f05f5480ff
|
4
|
+
data.tar.gz: 3694f890d3e4105990a9524c76d91297969559811eecc5d61cc95ca41e3ea10d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b80958ff2c0334efa5a18973eb5f062ba95cb8ab59c5e824a5f985ad9d5a1681678699374b98bf416778c3dea2263e59b374d378d252dcbaa6ce703f764eea8
|
7
|
+
data.tar.gz: b9ff4c933d9b598a4b95741023ffe6a69e890524f030ff123cf5519c4849581885e8490b35bd433dd5e917daa83c0b7abbfaa54b7d9e049f9374e1159f534ae5
|
data/.github/workflows/macos.yml
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
# use ci-master https://github.com/metanorma/metanorma-build-scripts
|
3
3
|
name: macos
|
4
4
|
|
5
|
-
on: [push]
|
5
|
+
on: [push, pull_request]
|
6
6
|
|
7
7
|
jobs:
|
8
8
|
test-macos:
|
@@ -35,7 +35,7 @@ jobs:
|
|
35
35
|
npm -g i puppeteer
|
36
36
|
- name: Update gems
|
37
37
|
run: |
|
38
|
-
sudo gem install bundler
|
38
|
+
sudo gem install bundler --force
|
39
39
|
bundle install --jobs 4 --retry 3
|
40
40
|
- name: Run specs
|
41
41
|
run: |
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# use ci-master https://github.com/metanorma/metanorma-build-scripts
|
3
3
|
name: ubuntu
|
4
4
|
|
5
|
-
on: [push]
|
5
|
+
on: [push, pull_request]
|
6
6
|
|
7
7
|
jobs:
|
8
8
|
test-linux:
|
@@ -24,11 +24,12 @@ jobs:
|
|
24
24
|
node-version: '10.x'
|
25
25
|
- name: Update gems
|
26
26
|
run: |
|
27
|
-
gem install bundler
|
27
|
+
gem install bundler
|
28
28
|
bundle install --jobs 4 --retry 3
|
29
29
|
- name: Install LaTeXML
|
30
30
|
run: |
|
31
31
|
sudo snap install latexml
|
32
|
+
sudo snap alias latexml.math latexmlmath
|
32
33
|
- name: Install PlantUML
|
33
34
|
run: |
|
34
35
|
curl -L https://raw.githubusercontent.com/metanorma/plantuml-install/master/ubuntu.sh | sudo bash
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# use ci-master https://github.com/metanorma/metanorma-build-scripts
|
3
3
|
name: windows
|
4
4
|
|
5
|
-
on: [push]
|
5
|
+
on: [push, pull_request]
|
6
6
|
|
7
7
|
jobs:
|
8
8
|
test-windows:
|
@@ -29,7 +29,7 @@ jobs:
|
|
29
29
|
- name: Update gems
|
30
30
|
shell: pwsh
|
31
31
|
run: |
|
32
|
-
gem install bundler
|
32
|
+
gem install bundler
|
33
33
|
bundle config --local path vendor/bundle
|
34
34
|
bundle update
|
35
35
|
bundle install --jobs 4 --retry 3
|
@@ -63,6 +63,7 @@ module Asciidoctor
|
|
63
63
|
end
|
64
64
|
|
65
65
|
def smartquotes_cleanup(xmldoc)
|
66
|
+
xmldoc.xpath("//date").each { |d| Utils::endash_date(d) }
|
66
67
|
xmldoc.traverse do |n|
|
67
68
|
next unless n.text?
|
68
69
|
if @smartquotes
|
@@ -73,7 +74,6 @@ module Asciidoctor
|
|
73
74
|
n.replace(n.text.gsub(/(?<=\p{Alnum})\u2019(?=\p{Alpha})/, "'"))
|
74
75
|
end
|
75
76
|
end
|
76
|
-
xmldoc
|
77
77
|
end
|
78
78
|
|
79
79
|
def docidentifier_cleanup(xmldoc)
|
@@ -149,6 +149,13 @@ module Asciidoctor
|
|
149
149
|
end
|
150
150
|
end
|
151
151
|
|
152
|
+
def termdomain1_cleanup(xmldoc)
|
153
|
+
xmldoc.xpath("//domain").each do |d|
|
154
|
+
defn = d.at("../definition") and
|
155
|
+
defn.previous = d.remove
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
152
159
|
def termdefinition_cleanup(xmldoc)
|
153
160
|
xmldoc.xpath("//term").each do |d|
|
154
161
|
first_child = d.at("./p | ./figure | ./formula") || return
|
@@ -196,6 +203,7 @@ module Asciidoctor
|
|
196
203
|
termdef_stem_cleanup(xmldoc)
|
197
204
|
termdomain_cleanup(xmldoc)
|
198
205
|
termdefinition_cleanup(xmldoc)
|
206
|
+
termdomain1_cleanup(xmldoc)
|
199
207
|
termdef_boilerplate_cleanup(xmldoc)
|
200
208
|
termdef_subclause_cleanup(xmldoc)
|
201
209
|
term_children_cleanup(xmldoc)
|
@@ -93,6 +93,8 @@ module Asciidoctor
|
|
93
93
|
node.attr("affiliation#{suffix}") and p.affiliation do |a|
|
94
94
|
a.organization do |o|
|
95
95
|
o.name node.attr("affiliation#{suffix}")
|
96
|
+
abbr = node.attr("affiliation_abbrev#{suffix}") and
|
97
|
+
o.abbreviation abbr
|
96
98
|
node.attr("address#{suffix}") and o.address do |ad|
|
97
99
|
ad.formattedAddress node.attr("address#{suffix}")
|
98
100
|
end
|
@@ -41,7 +41,9 @@ module Asciidoctor
|
|
41
41
|
unnumbered: node.option?("unnumbered") ? "true" : nil,
|
42
42
|
subsequence: node.attr("subsequence"),
|
43
43
|
obligation: node.attr("obligation"),
|
44
|
-
filename: node.attr("filename")
|
44
|
+
filename: node.attr("filename"),
|
45
|
+
type: node.attr("type"),
|
46
|
+
model: node.attr("model"),
|
45
47
|
}
|
46
48
|
end
|
47
49
|
|
@@ -47,8 +47,8 @@ module Asciidoctor
|
|
47
47
|
end
|
48
48
|
|
49
49
|
def smartformat(n)
|
50
|
-
n.gsub(/ --? /, " &#
|
51
|
-
gsub(/--/, "&#
|
50
|
+
n.gsub(/ --? /, " — ").
|
51
|
+
gsub(/--/, "—").smart_format.gsub(/</, "<").gsub(/>/, ">")
|
52
52
|
end
|
53
53
|
|
54
54
|
# Set hash value using keys path
|
@@ -87,10 +87,17 @@ module Asciidoctor
|
|
87
87
|
end
|
88
88
|
end
|
89
89
|
|
90
|
+
def endash_date(elem)
|
91
|
+
elem.traverse do |n|
|
92
|
+
n.text? and n.replace(n.text.gsub(/\s+--?\s+/, "–").gsub(/--/, "–"))
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
90
96
|
def smart_render_xml(x, code, title)
|
91
97
|
xstr = x.to_xml if x.respond_to? :to_xml
|
92
98
|
xml = Nokogiri::XML(xstr)
|
93
99
|
emend_biblio(xml, code, title)
|
100
|
+
xml.xpath("//date").each { |d| endash_date(d) }
|
94
101
|
xml.traverse do |n|
|
95
102
|
n.text? and n.replace(smartformat(n.text))
|
96
103
|
end
|
data/metanorma-standoc.gemspec
CHANGED
@@ -38,7 +38,6 @@ Gem::Specification.new do |spec|
|
|
38
38
|
spec.add_dependency "unicode2latex", "~> 0.0.1"
|
39
39
|
spec.add_dependency "mimemagic"
|
40
40
|
|
41
|
-
spec.add_development_dependency "bundler", "~> 2.0.1"
|
42
41
|
spec.add_development_dependency "byebug"
|
43
42
|
spec.add_development_dependency "equivalent-xml", "~> 0.6"
|
44
43
|
spec.add_development_dependency "guard", "~> 2.14"
|
@@ -85,6 +85,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
85
85
|
:fullname: Fred Flintstone
|
86
86
|
:role: author
|
87
87
|
:affiliation: Slate Rock and Gravel Company
|
88
|
+
:affiliation_abbrev: SRG
|
88
89
|
:address: 6 Rubble Way, Bedrock
|
89
90
|
:contributor-uri: http://slate.example.com
|
90
91
|
:phone: 123
|
@@ -94,6 +95,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
94
95
|
:initials_2: B. X.
|
95
96
|
:role_2: editor
|
96
97
|
:affiliation_2: Rockhead and Quarry Cave Construction Company
|
98
|
+
:affiliation_abbrev_2: RQCCC
|
97
99
|
:address_2: 6A Rubble Way, Bedrock
|
98
100
|
:email_2: barney@rockhead.example.com
|
99
101
|
:phone_2: 789
|
@@ -166,6 +168,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
166
168
|
<affiliation>
|
167
169
|
<organization>
|
168
170
|
<name>Slate Rock and Gravel Company</name>
|
171
|
+
<abbreviation>SRG</abbreviation>
|
169
172
|
<address>
|
170
173
|
<formattedAddress>6 Rubble Way, Bedrock</formattedAddress>
|
171
174
|
</address>
|
@@ -187,6 +190,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
187
190
|
<affiliation>
|
188
191
|
<organization>
|
189
192
|
<name>Rockhead and Quarry Cave Construction Company</name>
|
193
|
+
<abbreviation>RQCCC</abbreviation>
|
190
194
|
<address>
|
191
195
|
<formattedAddress>6A Rubble Way, Bedrock</formattedAddress>
|
192
196
|
</address>
|
@@ -958,7 +958,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
958
958
|
it "processes recommendation" do
|
959
959
|
input = <<~"INPUT"
|
960
960
|
#{ASCIIDOC_BLANK_HDR}
|
961
|
-
[.recommendation,label="/ogc/recommendation/wfs/2",subject="user",inherit="/ss/584/2015/level/1",options="unnumbered"]
|
961
|
+
[.recommendation,label="/ogc/recommendation/wfs/2",subject="user",inherit="/ss/584/2015/level/1",options="unnumbered",type=verification,model=ogc]
|
962
962
|
====
|
963
963
|
I recommend this
|
964
964
|
====
|
@@ -966,7 +966,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
966
966
|
output = <<~"OUTPUT"
|
967
967
|
#{BLANK_HDR}
|
968
968
|
<sections>
|
969
|
-
<recommendation id="_" unnumbered="true">
|
969
|
+
<recommendation id="_" unnumbered="true" type="verification" model="ogc">
|
970
970
|
<label>/ogc/recommendation/wfs/2</label>
|
971
971
|
<subject>user</subject>
|
972
972
|
<inherit>/ss/584/2015/level/1</inherit>
|
@@ -174,6 +174,12 @@ RSpec.describe Asciidoctor::Standoc do
|
|
174
174
|
=== Tempus
|
175
175
|
|
176
176
|
domain:[relativity] Time
|
177
|
+
|
178
|
+
=== Tempus1
|
179
|
+
|
180
|
+
Time2
|
181
|
+
|
182
|
+
domain:[relativity2]
|
177
183
|
INPUT
|
178
184
|
#{BLANK_HDR}
|
179
185
|
<sections>
|
@@ -184,6 +190,14 @@ RSpec.describe Asciidoctor::Standoc do
|
|
184
190
|
<preferred>Tempus</preferred>
|
185
191
|
<domain>relativity</domain><definition><p id="_"> Time</p></definition>
|
186
192
|
</term>
|
193
|
+
<term id='_'>
|
194
|
+
<preferred>Tempus1</preferred>
|
195
|
+
<domain>relativity2</domain>
|
196
|
+
<definition>
|
197
|
+
<p id='_'>Time2</p>
|
198
|
+
<p id='_'> </p>
|
199
|
+
</definition>
|
200
|
+
</term>
|
187
201
|
</terms>
|
188
202
|
</sections>
|
189
203
|
</standard-document>
|
@@ -789,9 +803,9 @@ RSpec.describe Asciidoctor::Standoc do
|
|
789
803
|
#{NORM_REF_BOILERPLATE}
|
790
804
|
<bibitem id="iso123" type="standard">
|
791
805
|
<title format="text/plain">Standard</title>
|
792
|
-
<docidentifier>ISO 123
|
806
|
+
<docidentifier>ISO 123:—</docidentifier>
|
793
807
|
<date type="published">
|
794
|
-
<on
|
808
|
+
<on>–</on>
|
795
809
|
</date>
|
796
810
|
<contributor>
|
797
811
|
<role type="publisher"/>
|
@@ -1004,8 +1018,8 @@ RSpec.describe Asciidoctor::Standoc do
|
|
1004
1018
|
<bibitem type="standard" id="IEC60050-102">
|
1005
1019
|
<fetched>#{Date.today}</fetched>
|
1006
1020
|
<title type="title-main" format="text/plain" language="en" script="Latn">International Electrotechnical Vocabulary (IEV)</title>
|
1007
|
-
<title type="title-part" format="text/plain" language="en" script="Latn">Part 102: Mathematics
|
1008
|
-
<title type="main" format="text/plain" language="en" script="Latn">International Electrotechnical Vocabulary (IEV) – Part 102: Mathematics
|
1021
|
+
<title type="title-part" format="text/plain" language="en" script="Latn">Part 102: Mathematics — General concepts and linear algebra</title>
|
1022
|
+
<title type="main" format="text/plain" language="en" script="Latn">International Electrotechnical Vocabulary (IEV) – Part 102: Mathematics — General concepts and linear algebra</title>
|
1009
1023
|
<uri type="src">https://webstore.iec.ch/publication/160</uri>
|
1010
1024
|
<uri type="obp">/preview/info_iec60050-102%7Bed1.0%7Db.pdf</uri>
|
1011
1025
|
<docidentifier type="IEC">IEC 60050-102:2007</docidentifier>
|
@@ -1041,8 +1055,8 @@ RSpec.describe Asciidoctor::Standoc do
|
|
1041
1055
|
</bibitem><bibitem type="standard" id="IEC60050-103">
|
1042
1056
|
<fetched>#{Date.today}</fetched>
|
1043
1057
|
<title type="title-main" format="text/plain" language="en" script="Latn">International Electrotechnical Vocabulary (IEV)</title>
|
1044
|
-
<title type="title-part" format="text/plain" language="en" script="Latn">Part 103: Mathematics
|
1045
|
-
<title type="main" format="text/plain" language="en" script="Latn">International Electrotechnical Vocabulary (IEV) – Part 103: Mathematics
|
1058
|
+
<title type="title-part" format="text/plain" language="en" script="Latn">Part 103: Mathematics — Functions</title>
|
1059
|
+
<title type="main" format="text/plain" language="en" script="Latn">International Electrotechnical Vocabulary (IEV) – Part 103: Mathematics — Functions</title>
|
1046
1060
|
<uri type="src">https://webstore.iec.ch/publication/161</uri>
|
1047
1061
|
<uri type="obp">/preview/info_iec60050-103%7Bed1.0%7Db.pdf</uri>
|
1048
1062
|
<docidentifier type="IEC">IEC 60050-103:2009</docidentifier>
|
@@ -1395,7 +1409,7 @@ it "removes bibdata bibitem IDs" do
|
|
1395
1409
|
<stage>published</stage>
|
1396
1410
|
</status>
|
1397
1411
|
<copyright>
|
1398
|
-
<from
|
1412
|
+
<from>#{Date.today.year}</from>
|
1399
1413
|
</copyright>
|
1400
1414
|
<relation type='translatedFrom'>
|
1401
1415
|
<bibitem>
|
@@ -326,7 +326,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
326
326
|
<language>en</language>
|
327
327
|
<language>fr</language>
|
328
328
|
<script>Latn</script>
|
329
|
-
<abstract format="text/plain" language="en" script="Latn">Contains a permuted index of all terms included in the parts 1
|
329
|
+
<abstract format="text/plain" language="en" script="Latn">Contains a permuted index of all terms included in the parts 1 — 28 of ISO 2382. If any of these parts has been revised, the present TR refers to the revision.</abstract>
|
330
330
|
<status>
|
331
331
|
<stage>90</stage>
|
332
332
|
<substage>93</substage>
|
@@ -489,9 +489,9 @@ OUTPUT
|
|
489
489
|
#{NORM_REF_BOILERPLATE}
|
490
490
|
<bibitem id="iso123" type="standard">
|
491
491
|
<title format="text/plain">Standard</title>
|
492
|
-
<docidentifier>ISO 123
|
492
|
+
<docidentifier>ISO 123:—</docidentifier>
|
493
493
|
<date type="published">
|
494
|
-
<on
|
494
|
+
<on>–</on>
|
495
495
|
</date>
|
496
496
|
<contributor>
|
497
497
|
<role type="publisher"/>
|
@@ -502,9 +502,9 @@ OUTPUT
|
|
502
502
|
</bibitem>
|
503
503
|
<bibitem id="iso124" type="standard">
|
504
504
|
<title format="text/plain">Standard</title>
|
505
|
-
<docidentifier>ISO 124
|
505
|
+
<docidentifier>ISO 124:—</docidentifier>
|
506
506
|
<date type="published">
|
507
|
-
<on
|
507
|
+
<on>–</on>
|
508
508
|
</date>
|
509
509
|
<contributor>
|
510
510
|
<role type="publisher"/>
|
@@ -516,9 +516,9 @@ OUTPUT
|
|
516
516
|
</bibitem>
|
517
517
|
<bibitem id="iso125" type="standard">
|
518
518
|
<title format="text/plain">Standard</title>
|
519
|
-
<docidentifier>ISO 125
|
519
|
+
<docidentifier>ISO 125:—</docidentifier>
|
520
520
|
<date type="published">
|
521
|
-
<on
|
521
|
+
<on>–</on>
|
522
522
|
</date>
|
523
523
|
<contributor>
|
524
524
|
<role type="publisher"/>
|
@@ -602,6 +602,7 @@ OUTPUT
|
|
602
602
|
<uri type='xml'>https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8341.xml</uri>
|
603
603
|
<uri type="src">https://www.rfc-editor.org/info/rfc8341</uri>
|
604
604
|
<docidentifier type="IETF">RFC 8341</docidentifier>
|
605
|
+
<docidentifier type='rfc-anchor'>RFC8341</docidentifier>
|
605
606
|
<docidentifier type="DOI">10.17487/RFC8341</docidentifier>
|
606
607
|
<date type="published">
|
607
608
|
<on>2018-03</on>
|
@@ -645,6 +646,7 @@ OUTPUT
|
|
645
646
|
<title format="text/plain" language="en" script="Latn">RFC</title>
|
646
647
|
<number>8341</number>
|
647
648
|
</series>
|
649
|
+
<place>Fremont, CA</place>
|
648
650
|
</bibitem>
|
649
651
|
</references>
|
650
652
|
</bibliography>
|
@@ -870,7 +872,7 @@ OUTPUT
|
|
870
872
|
<language>en</language>
|
871
873
|
<language>fr</language>
|
872
874
|
<script>Latn</script>
|
873
|
-
<abstract format="text/plain" language="en" script="Latn">Contains a permuted index of all terms included in the parts 1
|
875
|
+
<abstract format="text/plain" language="en" script="Latn">Contains a permuted index of all terms included in the parts 1 — 28 of ISO 2382. If any of these parts has been revised, the present TR refers to the revision.</abstract>
|
874
876
|
<status>Published</status>
|
875
877
|
<copyright>
|
876
878
|
<from>1992</from>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metanorma-standoc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-01-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: asciidoctor
|
@@ -164,20 +164,6 @@ dependencies:
|
|
164
164
|
- - ">="
|
165
165
|
- !ruby/object:Gem::Version
|
166
166
|
version: '0'
|
167
|
-
- !ruby/object:Gem::Dependency
|
168
|
-
name: bundler
|
169
|
-
requirement: !ruby/object:Gem::Requirement
|
170
|
-
requirements:
|
171
|
-
- - "~>"
|
172
|
-
- !ruby/object:Gem::Version
|
173
|
-
version: 2.0.1
|
174
|
-
type: :development
|
175
|
-
prerelease: false
|
176
|
-
version_requirements: !ruby/object:Gem::Requirement
|
177
|
-
requirements:
|
178
|
-
- - "~>"
|
179
|
-
- !ruby/object:Gem::Version
|
180
|
-
version: 2.0.1
|
181
167
|
- !ruby/object:Gem::Dependency
|
182
168
|
name: byebug
|
183
169
|
requirement: !ruby/object:Gem::Requirement
|
@@ -369,7 +355,6 @@ files:
|
|
369
355
|
- ".tex"
|
370
356
|
- CODE_OF_CONDUCT.md
|
371
357
|
- Gemfile
|
372
|
-
- Gemfile.lock
|
373
358
|
- LICENSE
|
374
359
|
- Makefile
|
375
360
|
- README.adoc
|
data/Gemfile.lock
DELETED
@@ -1,226 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
metanorma-standoc (1.3.11)
|
5
|
-
asciidoctor (~> 2.0.0)
|
6
|
-
concurrent-ruby
|
7
|
-
html2doc (~> 0.9.0)
|
8
|
-
iev (~> 0.2.1)
|
9
|
-
isodoc (~> 1.0.0)
|
10
|
-
mimemagic
|
11
|
-
relaton (~> 0.6.0)
|
12
|
-
relaton-iev (~> 0.1.0)
|
13
|
-
ruby-jing
|
14
|
-
sterile (~> 1.0.14)
|
15
|
-
unicode2latex (~> 0.0.1)
|
16
|
-
|
17
|
-
GEM
|
18
|
-
remote: https://rubygems.org/
|
19
|
-
specs:
|
20
|
-
addressable (2.7.0)
|
21
|
-
public_suffix (>= 2.0.2, < 5.0)
|
22
|
-
asciidoctor (2.0.10)
|
23
|
-
asciimath (1.0.9)
|
24
|
-
ast (2.4.0)
|
25
|
-
byebug (11.0.1)
|
26
|
-
cnccs (0.1.5)
|
27
|
-
coderay (1.1.2)
|
28
|
-
concurrent-ruby (1.1.5)
|
29
|
-
crack (0.4.3)
|
30
|
-
safe_yaml (~> 1.0.0)
|
31
|
-
diff-lcs (1.3)
|
32
|
-
docile (1.3.2)
|
33
|
-
equivalent-xml (0.6.0)
|
34
|
-
nokogiri (>= 1.4.3)
|
35
|
-
faraday (0.17.1)
|
36
|
-
multipart-post (>= 1.2, < 3)
|
37
|
-
ffi (1.11.3)
|
38
|
-
formatador (0.2.5)
|
39
|
-
gb-agencies (0.0.6)
|
40
|
-
guard (2.16.1)
|
41
|
-
formatador (>= 0.2.4)
|
42
|
-
listen (>= 2.7, < 4.0)
|
43
|
-
lumberjack (>= 1.0.12, < 2.0)
|
44
|
-
nenv (~> 0.1)
|
45
|
-
notiffany (~> 0.0)
|
46
|
-
pry (>= 0.9.12)
|
47
|
-
shellany (~> 0.0)
|
48
|
-
thor (>= 0.18.1)
|
49
|
-
guard-compat (1.2.1)
|
50
|
-
guard-rspec (4.7.3)
|
51
|
-
guard (~> 2.1)
|
52
|
-
guard-compat (~> 1.1)
|
53
|
-
rspec (>= 2.99.0, < 4.0)
|
54
|
-
hashdiff (1.0.0)
|
55
|
-
html2doc (0.9.2)
|
56
|
-
asciimath (~> 1.0.9)
|
57
|
-
htmlentities (~> 4.3.4)
|
58
|
-
image_size
|
59
|
-
mime-types
|
60
|
-
nokogiri (>= 1.10.4)
|
61
|
-
thread_safe
|
62
|
-
uuidtools
|
63
|
-
htmlentities (4.3.4)
|
64
|
-
iev (0.2.3)
|
65
|
-
nokogiri (>= 1.10.4)
|
66
|
-
image_size (2.0.2)
|
67
|
-
isodoc (1.0.11)
|
68
|
-
asciimath
|
69
|
-
html2doc (~> 0.9.0)
|
70
|
-
htmlentities (~> 4.3.4)
|
71
|
-
liquid
|
72
|
-
metanorma (~> 0.3.0)
|
73
|
-
nokogiri (>= 1.10.4)
|
74
|
-
rake (~> 12.0)
|
75
|
-
roman-numerals
|
76
|
-
sassc (~> 2.2.1)
|
77
|
-
thread_safe
|
78
|
-
uuidtools
|
79
|
-
isoics (0.1.8)
|
80
|
-
json (2.3.0)
|
81
|
-
liquid (4.0.3)
|
82
|
-
listen (3.2.1)
|
83
|
-
rb-fsevent (~> 0.10, >= 0.10.3)
|
84
|
-
rb-inotify (~> 0.9, >= 0.9.10)
|
85
|
-
lumberjack (1.0.13)
|
86
|
-
metanorma (0.3.18)
|
87
|
-
asciidoctor
|
88
|
-
htmlentities
|
89
|
-
method_source (0.9.2)
|
90
|
-
mime-types (3.3)
|
91
|
-
mime-types-data (~> 3.2015)
|
92
|
-
mime-types-data (3.2019.1009)
|
93
|
-
mimemagic (0.3.3)
|
94
|
-
mini_portile2 (2.4.0)
|
95
|
-
multipart-post (2.1.1)
|
96
|
-
nenv (0.3.0)
|
97
|
-
nokogiri (1.10.7)
|
98
|
-
mini_portile2 (~> 2.4.0)
|
99
|
-
notiffany (0.1.3)
|
100
|
-
nenv (~> 0.1)
|
101
|
-
shellany (~> 0.0)
|
102
|
-
optout (0.0.2)
|
103
|
-
parallel (1.19.1)
|
104
|
-
parser (2.6.5.0)
|
105
|
-
ast (~> 2.4.0)
|
106
|
-
powerpack (0.1.2)
|
107
|
-
pry (0.12.2)
|
108
|
-
coderay (~> 1.1.0)
|
109
|
-
method_source (~> 0.9.0)
|
110
|
-
public_suffix (4.0.1)
|
111
|
-
rainbow (3.0.0)
|
112
|
-
rake (12.3.3)
|
113
|
-
rb-fsevent (0.10.3)
|
114
|
-
rb-inotify (0.10.0)
|
115
|
-
ffi (~> 1.0)
|
116
|
-
relaton (0.6.3)
|
117
|
-
relaton-calconnect (~> 0.2.0)
|
118
|
-
relaton-gb (~> 0.7.0)
|
119
|
-
relaton-iec (~> 0.5.0)
|
120
|
-
relaton-ietf (~> 0.7.0)
|
121
|
-
relaton-iso (~> 0.7.0)
|
122
|
-
relaton-itu (~> 0.4.0)
|
123
|
-
relaton-nist (~> 0.4.0)
|
124
|
-
relaton-ogc (~> 0.2.0)
|
125
|
-
relaton-bib (0.4.1)
|
126
|
-
addressable
|
127
|
-
nokogiri
|
128
|
-
relaton-calconnect (0.2.1)
|
129
|
-
faraday
|
130
|
-
relaton-iso-bib (~> 0.4.0)
|
131
|
-
relaton-gb (0.7.1)
|
132
|
-
cnccs (~> 0.1.1)
|
133
|
-
gb-agencies (~> 0.0.1)
|
134
|
-
relaton-iso-bib (~> 0.4.0)
|
135
|
-
relaton-iec (0.5.1)
|
136
|
-
addressable
|
137
|
-
relaton-iso-bib (~> 0.4.0)
|
138
|
-
relaton-ietf (0.7.2)
|
139
|
-
relaton-bib (~> 0.4.0)
|
140
|
-
relaton-iev (0.1.2)
|
141
|
-
relaton (~> 0.6.0)
|
142
|
-
relaton-iso (0.7.1)
|
143
|
-
relaton-iec (~> 0.5.0)
|
144
|
-
relaton-iso-bib (~> 0.4.0)
|
145
|
-
relaton-iso-bib (0.4.1)
|
146
|
-
isoics (~> 0.1.6)
|
147
|
-
relaton-bib (~> 0.4.0)
|
148
|
-
ruby_deep_clone (~> 0.8.0)
|
149
|
-
relaton-itu (0.4.1)
|
150
|
-
relaton-iso-bib (~> 0.4.0)
|
151
|
-
relaton-nist (0.4.1)
|
152
|
-
relaton-bib (~> 0.4.0)
|
153
|
-
rubyzip
|
154
|
-
relaton-ogc (0.2.1)
|
155
|
-
faraday
|
156
|
-
relaton-iso-bib (~> 0.4.0)
|
157
|
-
roman-numerals (0.3.0)
|
158
|
-
rspec (3.9.0)
|
159
|
-
rspec-core (~> 3.9.0)
|
160
|
-
rspec-expectations (~> 3.9.0)
|
161
|
-
rspec-mocks (~> 3.9.0)
|
162
|
-
rspec-core (3.9.0)
|
163
|
-
rspec-support (~> 3.9.0)
|
164
|
-
rspec-expectations (3.9.0)
|
165
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
166
|
-
rspec-support (~> 3.9.0)
|
167
|
-
rspec-mocks (3.9.0)
|
168
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
169
|
-
rspec-support (~> 3.9.0)
|
170
|
-
rspec-support (3.9.0)
|
171
|
-
rubocop (0.54.0)
|
172
|
-
parallel (~> 1.10)
|
173
|
-
parser (>= 2.5)
|
174
|
-
powerpack (~> 0.1)
|
175
|
-
rainbow (>= 2.2.2, < 4.0)
|
176
|
-
ruby-progressbar (~> 1.7)
|
177
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
178
|
-
ruby-jing (0.0.1)
|
179
|
-
optout (>= 0.0.2)
|
180
|
-
ruby-progressbar (1.10.1)
|
181
|
-
ruby_deep_clone (0.8.0)
|
182
|
-
rubyzip (2.0.0)
|
183
|
-
safe_yaml (1.0.5)
|
184
|
-
sassc (2.2.1)
|
185
|
-
ffi (~> 1.9)
|
186
|
-
shellany (0.0.1)
|
187
|
-
simplecov (0.17.1)
|
188
|
-
docile (~> 1.1)
|
189
|
-
json (>= 1.8, < 3)
|
190
|
-
simplecov-html (~> 0.10.0)
|
191
|
-
simplecov-html (0.10.2)
|
192
|
-
sterile (1.0.14)
|
193
|
-
nokogiri
|
194
|
-
thor (1.0.1)
|
195
|
-
thread_safe (0.3.6)
|
196
|
-
timecop (0.9.1)
|
197
|
-
unicode-display_width (1.6.0)
|
198
|
-
unicode2latex (0.0.3)
|
199
|
-
uuidtools (2.1.5)
|
200
|
-
vcr (5.0.0)
|
201
|
-
webmock (3.7.6)
|
202
|
-
addressable (>= 2.3.6)
|
203
|
-
crack (>= 0.3.2)
|
204
|
-
hashdiff (>= 0.4.0, < 2.0.0)
|
205
|
-
|
206
|
-
PLATFORMS
|
207
|
-
ruby
|
208
|
-
|
209
|
-
DEPENDENCIES
|
210
|
-
bundler (~> 2.0.1)
|
211
|
-
byebug
|
212
|
-
equivalent-xml (~> 0.6)
|
213
|
-
guard (~> 2.14)
|
214
|
-
guard-rspec (~> 4.7)
|
215
|
-
metanorma (~> 0.3.0)
|
216
|
-
metanorma-standoc!
|
217
|
-
rake (~> 12.0)
|
218
|
-
rspec (~> 3.6)
|
219
|
-
rubocop (= 0.54.0)
|
220
|
-
simplecov (~> 0.15)
|
221
|
-
timecop (~> 0.9)
|
222
|
-
vcr (~> 5.0.0)
|
223
|
-
webmock
|
224
|
-
|
225
|
-
BUNDLED WITH
|
226
|
-
2.0.2
|