metanorma-iso 1.5.8 → 1.5.13
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/.github/workflows/rake.yml +66 -0
- data/README.adoc +5 -6
- data/lib/asciidoctor/iso/base.rb +5 -0
- data/lib/asciidoctor/iso/basicdoc.rng +4 -11
- data/lib/asciidoctor/iso/boilerplate-fr.xml +40 -0
- data/lib/asciidoctor/iso/boilerplate.xml +1 -0
- data/lib/asciidoctor/iso/cleanup.rb +38 -0
- data/lib/asciidoctor/iso/front.rb +14 -15
- data/lib/asciidoctor/iso/isodoc.rng +27 -50
- data/lib/asciidoctor/iso/isostandard.rng +16 -1
- data/lib/asciidoctor/iso/validate.rb +1 -1
- data/lib/asciidoctor/iso/validate_section.rb +9 -0
- data/lib/isodoc/iso/base_convert.rb +2 -1
- data/lib/isodoc/iso/html/header.html +12 -24
- data/lib/isodoc/iso/html/htmlstyle.css +1 -1
- data/lib/isodoc/iso/html/htmlstyle.scss +1 -1
- data/lib/isodoc/iso/html/isodoc.css +42 -42
- data/lib/isodoc/iso/html/isodoc.scss +42 -42
- data/lib/isodoc/iso/html/style-human.css +14 -10
- data/lib/isodoc/iso/html/style-human.scss +7 -7
- data/lib/isodoc/iso/html/style-iso.css +12 -8
- data/lib/isodoc/iso/html/style-iso.scss +5 -5
- data/lib/isodoc/iso/html/wordstyle.css +67 -67
- data/lib/isodoc/iso/html/wordstyle.scss +67 -67
- data/lib/isodoc/iso/html_convert.rb +4 -0
- data/lib/isodoc/iso/i18n-en.yaml +4 -0
- data/lib/isodoc/iso/i18n-fr.yaml +5 -0
- data/lib/isodoc/iso/i18n-zh-Hans.yaml +5 -0
- data/lib/isodoc/iso/i18n.rb +10 -11
- data/lib/isodoc/iso/iso.amendment.xsl +739 -141
- data/lib/isodoc/iso/iso.international-standard.xsl +739 -141
- data/lib/isodoc/iso/metadata.rb +20 -19
- data/lib/isodoc/iso/word_convert.rb +4 -0
- data/lib/isodoc/iso/xref.rb +10 -0
- data/lib/metanorma/iso/fonts_manifest.yaml +6 -0
- data/lib/metanorma/iso/processor.rb +0 -9
- data/lib/metanorma/iso/version.rb +1 -1
- data/metanorma-iso.gemspec +2 -2
- data/spec/asciidoctor-iso/amd_spec.rb +7 -7
- data/spec/asciidoctor-iso/base_spec.rb +146 -18
- data/spec/asciidoctor-iso/blocks_spec.rb +1 -1
- data/spec/asciidoctor-iso/cleanup_spec.rb +4 -4
- data/spec/asciidoctor-iso/lists_spec.rb +6 -6
- data/spec/asciidoctor-iso/refs_spec.rb +174 -143
- data/spec/asciidoctor-iso/section_spec.rb +5 -0
- data/spec/asciidoctor-iso/validate_spec.rb +52 -15
- data/spec/assets/xref_error.adoc +7 -0
- data/spec/isodoc/amd_spec.rb +191 -17
- data/spec/isodoc/blocks_spec.rb +2 -1
- data/spec/isodoc/i18n_spec.rb +13 -13
- data/spec/isodoc/inline_spec.rb +2 -2
- data/spec/isodoc/iso_spec.rb +2 -2
- data/spec/isodoc/metadata_spec.rb +172 -19
- data/spec/isodoc/postproc_spec.rb +3 -3
- data/spec/isodoc/ref_spec.rb +5 -5
- data/spec/isodoc/section_spec.rb +22 -2
- data/spec/isodoc/table_spec.rb +1 -1
- data/spec/isodoc/terms_spec.rb +1 -1
- data/spec/isodoc/xref_spec.rb +23 -11
- data/spec/metanorma/processor_spec.rb +1 -1
- data/spec/spec_helper.rb +22 -2
- metadata +10 -9
- data/.github/workflows/macos.yml +0 -41
- data/.github/workflows/ubuntu.yml +0 -45
- data/.github/workflows/windows.yml +0 -43
data/spec/isodoc/section_spec.rb
CHANGED
@@ -55,6 +55,9 @@ RSpec.describe IsoDoc do
|
|
55
55
|
</clause>
|
56
56
|
<appendix id="Q2" inline-header="false" obligation="normative">
|
57
57
|
<title>An Appendix</title>
|
58
|
+
<clause id='Q2a' inline-header='false' obligation='normative'>
|
59
|
+
<title>Appendix subclause</title>
|
60
|
+
</clause>
|
58
61
|
</appendix>
|
59
62
|
<references id="Q3" normative="false"><title>Annex Bibliography</title></references>
|
60
63
|
</annex><bibliography><references id="R" obligation="informative" normative="true">
|
@@ -70,7 +73,7 @@ RSpec.describe IsoDoc do
|
|
70
73
|
INPUT
|
71
74
|
|
72
75
|
presxml = <<~OUTPUT
|
73
|
-
<iso-standard xmlns='http://riboseinc.com/isoxml'>
|
76
|
+
<iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
|
74
77
|
<preface>
|
75
78
|
<foreword obligation='informative'>
|
76
79
|
<title>Foreword</title>
|
@@ -140,6 +143,13 @@ RSpec.describe IsoDoc do
|
|
140
143
|
</clause>
|
141
144
|
<appendix id='Q2' inline-header='false' obligation='normative'>
|
142
145
|
<title depth='2'>Appendix 1<tab/>An Appendix</title>
|
146
|
+
<clause id='Q2a' inline-header='false' obligation='normative'>
|
147
|
+
<title depth='3'>
|
148
|
+
Appendix 1.1
|
149
|
+
<tab/>
|
150
|
+
Appendix subclause
|
151
|
+
</title>
|
152
|
+
</clause>
|
143
153
|
</appendix>
|
144
154
|
<references id='Q3' normative='false'>
|
145
155
|
<title depth='2'>A.2<tab/>Annex Bibliography</title>
|
@@ -222,6 +232,9 @@ RSpec.describe IsoDoc do
|
|
222
232
|
</div>
|
223
233
|
<div id="Q2">
|
224
234
|
<h2>Appendix 1  An Appendix</h2>
|
235
|
+
<div id='Q2a'>
|
236
|
+
<h3> Appendix 1.1   Appendix subclause </h3>
|
237
|
+
</div>
|
225
238
|
</div>
|
226
239
|
<div>
|
227
240
|
<h2 class="Section3">A.2  Annex Bibliography</h2>
|
@@ -318,6 +331,13 @@ OUTPUT
|
|
318
331
|
</div>
|
319
332
|
<div id="Q2">
|
320
333
|
<h2>Appendix 1<span style="mso-tab-count:1">  </span>An Appendix</h2>
|
334
|
+
<div id='Q2a'>
|
335
|
+
<h3>
|
336
|
+
Appendix 1.1
|
337
|
+
<span style='mso-tab-count:1'>  </span>
|
338
|
+
Appendix subclause
|
339
|
+
</h3>
|
340
|
+
</div>
|
321
341
|
</div>
|
322
342
|
<div>
|
323
343
|
<h2 class='Section3'>
|
@@ -361,7 +381,7 @@ OUTPUT
|
|
361
381
|
INPUT
|
362
382
|
|
363
383
|
presxml = <<~OUTPUT
|
364
|
-
<iso-standard xmlns='http://riboseinc.com/isoxml'>
|
384
|
+
<iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
|
365
385
|
<sections>
|
366
386
|
<clause id='D' obligation='normative'>
|
367
387
|
<title depth='1'>1<tab/>Scope</title>
|
data/spec/isodoc/table_spec.rb
CHANGED
@@ -61,7 +61,7 @@ RSpec.describe IsoDoc do
|
|
61
61
|
</iso-standard>
|
62
62
|
INPUT
|
63
63
|
<?xml version='1.0'?>
|
64
|
-
<iso-standard xmlns='http://riboseinc.com/isoxml'>
|
64
|
+
<iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
|
65
65
|
<preface>
|
66
66
|
<foreword>
|
67
67
|
<table id='tableD-1' alt='tool tip' summary='long desc'>
|
data/spec/isodoc/terms_spec.rb
CHANGED
@@ -53,7 +53,7 @@ RSpec.describe IsoDoc do
|
|
53
53
|
</iso-standard>
|
54
54
|
INPUT
|
55
55
|
presxml = <<~OUTPUT
|
56
|
-
<iso-standard xmlns='http://riboseinc.com/isoxml'>
|
56
|
+
<iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
|
57
57
|
<sections>
|
58
58
|
<terms id='_terms_and_definitions' obligation='normative'>
|
59
59
|
<title depth='1'>1<tab/>Terms and Definitions</title>
|
data/spec/isodoc/xref_spec.rb
CHANGED
@@ -56,7 +56,7 @@ RSpec.describe IsoDoc do
|
|
56
56
|
</iso-standard>
|
57
57
|
INPUT
|
58
58
|
<?xml version='1.0'?>
|
59
|
-
<iso-standard xmlns='http://riboseinc.com/isoxml'>
|
59
|
+
<iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
|
60
60
|
<preface>
|
61
61
|
<foreword>
|
62
62
|
<p>
|
@@ -202,7 +202,7 @@ RSpec.describe IsoDoc do
|
|
202
202
|
</iso-standard>
|
203
203
|
INPUT
|
204
204
|
<?xml version='1.0'?>
|
205
|
-
<iso-standard xmlns='http://riboseinc.com/isoxml'>
|
205
|
+
<iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
|
206
206
|
<preface>
|
207
207
|
<foreword id='fwd'>
|
208
208
|
<p>
|
@@ -322,7 +322,7 @@ RSpec.describe IsoDoc do
|
|
322
322
|
</iso-standard>
|
323
323
|
INPUT
|
324
324
|
<?xml version='1.0'?>
|
325
|
-
<iso-standard xmlns='http://riboseinc.com/isoxml'>
|
325
|
+
<iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
|
326
326
|
<preface>
|
327
327
|
<foreword id='fwd'>
|
328
328
|
<p>
|
@@ -435,7 +435,7 @@ RSpec.describe IsoDoc do
|
|
435
435
|
</iso-standard>
|
436
436
|
INPUT
|
437
437
|
<?xml version='1.0'?>
|
438
|
-
<iso-standard xmlns='http://riboseinc.com/isoxml'>
|
438
|
+
<iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
|
439
439
|
<preface>
|
440
440
|
<foreword>
|
441
441
|
<p>
|
@@ -568,7 +568,7 @@ RSpec.describe IsoDoc do
|
|
568
568
|
</iso-standard>
|
569
569
|
INPUT
|
570
570
|
<?xml version='1.0'?>
|
571
|
-
<iso-standard xmlns='http://riboseinc.com/isoxml'>
|
571
|
+
<iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
|
572
572
|
<preface>
|
573
573
|
<foreword>
|
574
574
|
<p>
|
@@ -729,7 +729,7 @@ RSpec.describe IsoDoc do
|
|
729
729
|
</iso-standard>
|
730
730
|
INPUT
|
731
731
|
<?xml version='1.0'?>
|
732
|
-
<iso-standard xmlns='http://riboseinc.com/isoxml'>
|
732
|
+
<iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
|
733
733
|
<preface>
|
734
734
|
<foreword>
|
735
735
|
<p>
|
@@ -863,7 +863,7 @@ RSpec.describe IsoDoc do
|
|
863
863
|
</iso-standard>
|
864
864
|
INPUT
|
865
865
|
<?xml version='1.0'?>
|
866
|
-
<iso-standard xmlns='http://riboseinc.com/isoxml'>
|
866
|
+
<iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
|
867
867
|
<preface>
|
868
868
|
<foreword>
|
869
869
|
<p>
|
@@ -936,6 +936,7 @@ RSpec.describe IsoDoc do
|
|
936
936
|
<xref target="Q"/>
|
937
937
|
<xref target="Q1"/>
|
938
938
|
<xref target="Q2"/>
|
939
|
+
<xref target="Q3"/>
|
939
940
|
<xref target="R"/>
|
940
941
|
</p>
|
941
942
|
</foreword>
|
@@ -985,6 +986,9 @@ RSpec.describe IsoDoc do
|
|
985
986
|
</clause>
|
986
987
|
<appendix id="Q2" inline-header="false" obligation="normative">
|
987
988
|
<title>An Appendix</title>
|
989
|
+
<clause id='Q3' inline-header='false' obligation='normative'>
|
990
|
+
<title>Appendix subclause</title>
|
991
|
+
</clause>
|
988
992
|
</appendix>
|
989
993
|
</annex><bibliography><references id="R" obligation="informative" normative="true">
|
990
994
|
<title>Normative References</title>
|
@@ -998,7 +1002,7 @@ RSpec.describe IsoDoc do
|
|
998
1002
|
</iso-standard>
|
999
1003
|
INPUT
|
1000
1004
|
<?xml version='1.0'?>
|
1001
|
-
<iso-standard xmlns='http://riboseinc.com/isoxml'>
|
1005
|
+
<iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
|
1002
1006
|
<preface>
|
1003
1007
|
<foreword obligation='informative'>
|
1004
1008
|
<title>Foreword</title>
|
@@ -1019,6 +1023,7 @@ RSpec.describe IsoDoc do
|
|
1019
1023
|
<xref target='Q'>A.1</xref>
|
1020
1024
|
<xref target='Q1'>A.1.1</xref>
|
1021
1025
|
<xref target='Q2'>Annex A, Appendix 1</xref>
|
1026
|
+
<xref target='Q3'>Annex A, Appendix 1.1</xref>
|
1022
1027
|
<xref target='R'>Clause 2</xref>
|
1023
1028
|
</p>
|
1024
1029
|
</foreword>
|
@@ -1126,6 +1131,13 @@ RSpec.describe IsoDoc do
|
|
1126
1131
|
<tab/>
|
1127
1132
|
An Appendix
|
1128
1133
|
</title>
|
1134
|
+
<clause id='Q3' inline-header='false' obligation='normative'>
|
1135
|
+
<title depth='3'>
|
1136
|
+
Appendix 1.1
|
1137
|
+
<tab/>
|
1138
|
+
Appendix subclause
|
1139
|
+
</title>
|
1140
|
+
</clause>
|
1129
1141
|
</appendix>
|
1130
1142
|
</annex>
|
1131
1143
|
<bibliography>
|
@@ -1198,7 +1210,7 @@ RSpec.describe IsoDoc do
|
|
1198
1210
|
</iso-standard>
|
1199
1211
|
INPUT
|
1200
1212
|
<?xml version='1.0'?>
|
1201
|
-
<iso-standard xmlns='http://riboseinc.com/isoxml'>
|
1213
|
+
<iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
|
1202
1214
|
<preface>
|
1203
1215
|
<foreword>
|
1204
1216
|
<p>
|
@@ -1318,7 +1330,7 @@ RSpec.describe IsoDoc do
|
|
1318
1330
|
</iso-standard>
|
1319
1331
|
INPUT
|
1320
1332
|
<?xml version='1.0'?>
|
1321
|
-
<iso-standard xmlns='http://riboseinc.com/isoxml'>
|
1333
|
+
<iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
|
1322
1334
|
<preface>
|
1323
1335
|
<foreword>
|
1324
1336
|
<p>
|
@@ -1422,7 +1434,7 @@ RSpec.describe IsoDoc do
|
|
1422
1434
|
</iso-standard>
|
1423
1435
|
INPUT
|
1424
1436
|
<?xml version='1.0'?>
|
1425
|
-
<iso-standard xmlns='http://riboseinc.com/isoxml'>
|
1437
|
+
<iso-standard xmlns='http://riboseinc.com/isoxml' type="presentation">
|
1426
1438
|
<preface>
|
1427
1439
|
<foreword>
|
1428
1440
|
<p>
|
@@ -15,7 +15,7 @@ RSpec.describe Metanorma::Iso::Processor do
|
|
15
15
|
|
16
16
|
it "registers output formats against metanorma" do
|
17
17
|
expect(processor.output_formats.sort.to_s).to be_equivalent_to <<~"OUTPUT"
|
18
|
-
[[:doc, "doc"], [:html, "html"], [:html_alt, "alt.html"], [:isosts, "sts.xml"], [:pdf, "pdf"], [:presentation, "presentation.xml"], [:rxl, "rxl"], [:sts, "sts.xml"], [:xml, "xml"]]
|
18
|
+
[[:doc, "doc"], [:html, "html"], [:html_alt, "alt.html"], [:isosts, "iso.sts.xml"], [:pdf, "pdf"], [:presentation, "presentation.xml"], [:rxl, "rxl"], [:sts, "sts.xml"], [:xml, "xml"]]
|
19
19
|
OUTPUT
|
20
20
|
end
|
21
21
|
|
data/spec/spec_helper.rb
CHANGED
@@ -29,6 +29,10 @@ def strip_guid(x)
|
|
29
29
|
x.gsub(%r{ id="_[^"]+"}, ' id="_"').gsub(%r{ target="_[^"]+"}, ' target="_"')
|
30
30
|
end
|
31
31
|
|
32
|
+
def metadata(x)
|
33
|
+
Hash[x.sort].delete_if{ |k, v| v.nil? || v.respond_to?(:empty?) && v.empty? }
|
34
|
+
end
|
35
|
+
|
32
36
|
def xmlpp(x)
|
33
37
|
s = ""
|
34
38
|
f = REXML::Formatters::Pretty.new(2)
|
@@ -114,10 +118,17 @@ BOILERPLATE =
|
|
114
118
|
gsub(/(?<=\p{Alnum})'(?=\p{Alpha})/, "’")
|
115
119
|
)
|
116
120
|
|
121
|
+
BOILERPLATE_FR =
|
122
|
+
HTMLEntities.new.decode(
|
123
|
+
File.read(File.join(File.dirname(__FILE__), "..", "lib", "asciidoctor", "iso", "boilerplate-fr.xml"), encoding: "utf-8").
|
124
|
+
gsub(/\{\{ agency \}\}/, "ISO").gsub(/\{\{ docyear \}\}/, Date.today.year.to_s).
|
125
|
+
gsub(/\{% if unpublished %\}.*\{% endif %\}/m, "").
|
126
|
+
gsub(/(?<=\p{Alnum})'(?=\p{Alpha})/, "’")
|
127
|
+
)
|
117
128
|
|
118
|
-
|
129
|
+
BLANK_HDR1 = <<~"HDR"
|
119
130
|
<?xml version="1.0" encoding="UTF-8"?>
|
120
|
-
<iso-standard xmlns="https://www.metanorma.org/ns/iso">
|
131
|
+
<iso-standard xmlns="https://www.metanorma.org/ns/iso" type="semantic" version="#{Metanorma::ISO::VERSION}">
|
121
132
|
<bibdata type="standard">
|
122
133
|
<contributor>
|
123
134
|
<role type="author"/>
|
@@ -158,9 +169,18 @@ BLANK_HDR = <<~"HDR"
|
|
158
169
|
<stagename>International standard</stagename>
|
159
170
|
</ext>
|
160
171
|
</bibdata>
|
172
|
+
HDR
|
173
|
+
|
174
|
+
BLANK_HDR = <<~"HDR"
|
175
|
+
#{BLANK_HDR1}
|
161
176
|
#{BOILERPLATE}
|
162
177
|
HDR
|
163
178
|
|
179
|
+
BLANK_HDR_FR = <<~"HDR"
|
180
|
+
#{BLANK_HDR1.sub(%r{<language>en</language>}, "<language>fr</language>")}
|
181
|
+
#{BOILERPLATE_FR}
|
182
|
+
HDR
|
183
|
+
|
164
184
|
TERM_BOILERPLATE = <<~END
|
165
185
|
<p id="_">For the purposes of this document,
|
166
186
|
the following terms and definitions apply.</p>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metanorma-iso
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-11-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ruby-jing
|
@@ -30,28 +30,28 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.
|
33
|
+
version: 1.3.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 1.
|
40
|
+
version: 1.3.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: metanorma-standoc
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 1.
|
47
|
+
version: 1.6.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.6.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: tokenizer
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -261,9 +261,7 @@ extensions: []
|
|
261
261
|
extra_rdoc_files: []
|
262
262
|
files:
|
263
263
|
- ".gitattributes"
|
264
|
-
- ".github/workflows/
|
265
|
-
- ".github/workflows/ubuntu.yml"
|
266
|
-
- ".github/workflows/windows.yml"
|
264
|
+
- ".github/workflows/rake.yml"
|
267
265
|
- ".gitignore"
|
268
266
|
- ".hound.yml"
|
269
267
|
- ".oss-guides.rubocop.yml"
|
@@ -284,6 +282,7 @@ files:
|
|
284
282
|
- lib/asciidoctor/iso/base.rb
|
285
283
|
- lib/asciidoctor/iso/basicdoc.rng
|
286
284
|
- lib/asciidoctor/iso/biblio.rng
|
285
|
+
- lib/asciidoctor/iso/boilerplate-fr.xml
|
287
286
|
- lib/asciidoctor/iso/boilerplate.xml
|
288
287
|
- lib/asciidoctor/iso/cleanup.rb
|
289
288
|
- lib/asciidoctor/iso/converter.rb
|
@@ -337,6 +336,7 @@ files:
|
|
337
336
|
- lib/isodoc/iso/xref.rb
|
338
337
|
- lib/metanorma-iso.rb
|
339
338
|
- lib/metanorma/iso.rb
|
339
|
+
- lib/metanorma/iso/fonts_manifest.yaml
|
340
340
|
- lib/metanorma/iso/processor.rb
|
341
341
|
- lib/metanorma/iso/version.rb
|
342
342
|
- metanorma-iso.gemspec
|
@@ -364,6 +364,7 @@ files:
|
|
364
364
|
- spec/assets/word.css
|
365
365
|
- spec/assets/wordcover.html
|
366
366
|
- spec/assets/wordintro.html
|
367
|
+
- spec/assets/xref_error.adoc
|
367
368
|
- spec/examples/103_01_02.html
|
368
369
|
- spec/examples/english.yaml
|
369
370
|
- spec/examples/iso_123_.xml
|
data/.github/workflows/macos.yml
DELETED
@@ -1,41 +0,0 @@
|
|
1
|
-
# Auto-generated by Cimas: Do not edit it manually!
|
2
|
-
# See https://github.com/metanorma/cimas
|
3
|
-
name: macos
|
4
|
-
|
5
|
-
on:
|
6
|
-
push:
|
7
|
-
branches: [ master ]
|
8
|
-
pull_request:
|
9
|
-
paths-ignore:
|
10
|
-
- .github/workflows/ubuntu.yml
|
11
|
-
- .github/workflows/windows.yml
|
12
|
-
|
13
|
-
jobs:
|
14
|
-
test-macos:
|
15
|
-
name: Test on Ruby ${{ matrix.ruby }} macOS
|
16
|
-
runs-on: macos-latest
|
17
|
-
continue-on-error: ${{ matrix.experimental }}
|
18
|
-
strategy:
|
19
|
-
fail-fast: false
|
20
|
-
matrix:
|
21
|
-
ruby: [ '2.6', '2.5', '2.4' ]
|
22
|
-
experimental: [false]
|
23
|
-
include:
|
24
|
-
- ruby: '2.7'
|
25
|
-
experimental: true
|
26
|
-
steps:
|
27
|
-
- uses: actions/checkout@master
|
28
|
-
- name: Use Ruby
|
29
|
-
uses: actions/setup-ruby@v1
|
30
|
-
with:
|
31
|
-
ruby-version: ${{ matrix.ruby }}
|
32
|
-
- name: Update gems
|
33
|
-
run: |
|
34
|
-
sudo gem install bundler --force
|
35
|
-
bundle install --jobs 4 --retry 3
|
36
|
-
- name: Install PlantUML
|
37
|
-
run: |
|
38
|
-
brew install plantuml
|
39
|
-
- name: Run specs
|
40
|
-
run: |
|
41
|
-
bundle exec rake
|
@@ -1,45 +0,0 @@
|
|
1
|
-
# Auto-generated by Cimas: Do not edit it manually!
|
2
|
-
# See https://github.com/metanorma/cimas
|
3
|
-
name: ubuntu
|
4
|
-
|
5
|
-
on:
|
6
|
-
push:
|
7
|
-
branches: [ master ]
|
8
|
-
pull_request:
|
9
|
-
paths-ignore:
|
10
|
-
- .github/workflows/macos.yml
|
11
|
-
- .github/workflows/windows.yml
|
12
|
-
|
13
|
-
jobs:
|
14
|
-
test-linux:
|
15
|
-
name: Test on Ruby ${{ matrix.ruby }} Ubuntu
|
16
|
-
runs-on: ubuntu-latest
|
17
|
-
continue-on-error: ${{ matrix.experimental }}
|
18
|
-
strategy:
|
19
|
-
fail-fast: false
|
20
|
-
matrix:
|
21
|
-
ruby: [ '2.6', '2.5', '2.4' ]
|
22
|
-
experimental: [false]
|
23
|
-
include:
|
24
|
-
- ruby: '2.7'
|
25
|
-
experimental: true
|
26
|
-
steps:
|
27
|
-
- uses: actions/checkout@master
|
28
|
-
- name: Use Ruby
|
29
|
-
uses: actions/setup-ruby@v1
|
30
|
-
with:
|
31
|
-
ruby-version: ${{ matrix.ruby }}
|
32
|
-
- name: Update gems
|
33
|
-
run: |
|
34
|
-
gem install bundler
|
35
|
-
bundle install --jobs 4 --retry 3
|
36
|
-
- name: Install PlantUML
|
37
|
-
uses: nick-invision/retry@v1
|
38
|
-
with:
|
39
|
-
polling_interval_seconds: 5
|
40
|
-
timeout_minutes: 5
|
41
|
-
max_attempts: 3
|
42
|
-
command: sudo apt-get update -y && sudo bash -c "curl -L https://github.com/metanorma/plantuml-install/raw/master/ubuntu.sh | bash"
|
43
|
-
- name: Run specs
|
44
|
-
run: |
|
45
|
-
bundle exec rake
|
@@ -1,43 +0,0 @@
|
|
1
|
-
# Auto-generated by Cimas: Do not edit it manually!
|
2
|
-
# See https://github.com/metanorma/cimas
|
3
|
-
name: windows
|
4
|
-
|
5
|
-
on:
|
6
|
-
push:
|
7
|
-
branches: [ master ]
|
8
|
-
pull_request:
|
9
|
-
paths-ignore:
|
10
|
-
- .github/workflows/macos.yml
|
11
|
-
- .github/workflows/ubuntu.yml
|
12
|
-
|
13
|
-
jobs:
|
14
|
-
test-windows:
|
15
|
-
name: Test on Ruby ${{ matrix.ruby }} Windows
|
16
|
-
runs-on: windows-latest
|
17
|
-
continue-on-error: ${{ matrix.experimental }}
|
18
|
-
strategy:
|
19
|
-
fail-fast: false
|
20
|
-
matrix:
|
21
|
-
ruby: [ '2.6', '2.5', '2.4' ]
|
22
|
-
experimental: [false]
|
23
|
-
include:
|
24
|
-
- ruby: '2.7'
|
25
|
-
experimental: true
|
26
|
-
steps:
|
27
|
-
- uses: actions/checkout@master
|
28
|
-
- name: Use Ruby
|
29
|
-
uses: actions/setup-ruby@v1
|
30
|
-
with:
|
31
|
-
ruby-version: ${{ matrix.ruby }}
|
32
|
-
- name: Update gems
|
33
|
-
shell: pwsh
|
34
|
-
run: |
|
35
|
-
gem install bundler
|
36
|
-
bundle config --local path vendor/bundle
|
37
|
-
bundle install --jobs 4 --retry 3
|
38
|
-
- name: Install PlantUML
|
39
|
-
run: |
|
40
|
-
cinst -y plantuml
|
41
|
-
- name: Run specs
|
42
|
-
run: |
|
43
|
-
bundle exec rake
|