metanorma-iec 1.0.8 → 1.1.3
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/macos.yml +0 -1
- data/.github/workflows/ubuntu.yml +10 -7
- data/.github/workflows/windows.yml +0 -1
- data/Rakefile +2 -0
- data/lib/asciidoctor/iec/biblio.rng +1 -1
- data/lib/asciidoctor/iec/converter.rb +5 -0
- data/lib/asciidoctor/iec/front.rb +1 -1
- data/lib/asciidoctor/iec/isodoc.rng +427 -0
- data/lib/asciidoctor/iec/isostandard.rng +3 -0
- data/lib/asciidoctor/iec/reqt.rng +23 -0
- data/lib/isodoc/iec/base_convert.rb +10 -65
- data/lib/isodoc/iec/html/htmlstyle.css +962 -0
- data/lib/isodoc/iec/html/htmlstyle.scss +0 -3
- data/lib/isodoc/iec/html/isodoc.css +845 -0
- data/lib/isodoc/iec/html/isodoc.scss +0 -1
- data/lib/isodoc/iec/html/wordstyle.css +2013 -0
- data/lib/isodoc/iec/html/wordstyle.scss +0 -1
- data/lib/isodoc/iec/iec.international-standard.xsl +1130 -524
- data/lib/isodoc/iec/pdf_convert.rb +2 -12
- data/lib/isodoc/iec/presentation_xml_convert.rb +10 -0
- data/lib/isodoc/iec/word_convert.rb +4 -4
- data/lib/isodoc/iec/xref.rb +45 -0
- data/lib/metanorma-iec.rb +2 -0
- data/lib/metanorma/iec/processor.rb +6 -8
- data/lib/metanorma/iec/version.rb +1 -1
- data/metanorma-iec.gemspec +3 -2
- data/spec/asciidoctor-iec/base_spec.rb +5 -5
- data/spec/asciidoctor-iec/cleanup_spec.rb +1 -1
- data/spec/asciidoctor-iec/iev_spec.rb +2 -2
- data/spec/isodoc/blocks_spec.rb +12 -18
- data/spec/isodoc/i18n_spec.rb +4 -4
- data/spec/isodoc/iev_spec.rb +7 -10
- data/spec/isodoc/inline_spec.rb +9 -9
- data/spec/isodoc/iso_spec.rb +4 -4
- data/spec/isodoc/metadata_spec.rb +2 -2
- data/spec/isodoc/postproc_spec.rb +3 -3
- data/spec/isodoc/ref_spec.rb +5 -5
- data/spec/isodoc/section_spec.rb +9 -9
- data/spec/isodoc/terms_spec.rb +10 -12
- data/spec/metanorma/processor_spec.rb +2 -5
- data/spec/spec_helper.rb +7 -0
- metadata +29 -11
data/spec/isodoc/iso_spec.rb
CHANGED
@@ -88,7 +88,7 @@ RSpec.describe IsoDoc::Iec do
|
|
88
88
|
<p><span class="example_label">EXAMPLE</span>  Hello</p>
|
89
89
|
</div>
|
90
90
|
</div>
|
91
|
-
#{
|
91
|
+
#{IEC_TITLE1}
|
92
92
|
</div>
|
93
93
|
</body>
|
94
94
|
</html>
|
@@ -120,7 +120,7 @@ RSpec.describe IsoDoc::Iec do
|
|
120
120
|
<p><span class="example_label">EXAMPLE 2</span>  Hello</p>
|
121
121
|
</div>
|
122
122
|
</div>
|
123
|
-
#{
|
123
|
+
#{IEC_TITLE1}
|
124
124
|
</div>
|
125
125
|
</body>
|
126
126
|
</html>
|
@@ -156,7 +156,7 @@ RSpec.describe IsoDoc::Iec do
|
|
156
156
|
<br clear="all" class="section"/>
|
157
157
|
</p>
|
158
158
|
<div class="WordSection3">
|
159
|
-
#{
|
159
|
+
#{IEC_TITLE1}
|
160
160
|
</div>
|
161
161
|
<br clear="all" style="page-break-before:left;mso-break-type:section-break"/>
|
162
162
|
<div class="colophon"/>
|
@@ -200,7 +200,7 @@ RSpec.describe IsoDoc::Iec do
|
|
200
200
|
<br clear="all" class="section"/>
|
201
201
|
</p>
|
202
202
|
<div class="WordSection3">
|
203
|
-
#{
|
203
|
+
#{IEC_TITLE1}
|
204
204
|
</div>
|
205
205
|
<br clear="all" style="page-break-before:left;mso-break-type:section-break"/>
|
206
206
|
<div class="colophon"/>
|
@@ -16,7 +16,7 @@ RSpec.describe IsoDoc::Iec::Metadata do
|
|
16
16
|
<title type="title-intro" language="fr" format="text/plain">Céréales et légumineuses</title>
|
17
17
|
<title type="title-main" language="fr" format="text/plain">Spécification et méthodes d'essai</title>
|
18
18
|
<title type="title-part" language="fr" format="text/plain">Riz</title>
|
19
|
-
<docidentifier type="
|
19
|
+
<docidentifier type="ISO">ISO/PreCD3 17301-1</docidentifier>
|
20
20
|
<docidentifier type="iso-tc">17301</docidentifier>
|
21
21
|
<docnumber>1730</docnumber>
|
22
22
|
<date type="published"><on>2011</on></date>
|
@@ -139,7 +139,7 @@ OUTPUT
|
|
139
139
|
<title type="title-main" language="fr" format="text/plain">Spécification et méthodes d'essai</title>
|
140
140
|
<title type="title-part" language="fr" format="text/plain">Riz</title>
|
141
141
|
</title>
|
142
|
-
<docidentifier type="
|
142
|
+
<docidentifier type="ISO">ISO/IEC/CD 17301-1-3</docidentifier>
|
143
143
|
<docidentifier type="iso-tc">17301</docidentifier>
|
144
144
|
<contributor>
|
145
145
|
<role type="author"/>
|
@@ -123,7 +123,7 @@ RSpec.describe IsoDoc do
|
|
123
123
|
sub(%r{<br.*$}m, "")
|
124
124
|
expect(xmlpp(word)).to be_equivalent_to xmlpp(<<~"OUTPUT")
|
125
125
|
<div class="WordSection3">
|
126
|
-
#{
|
126
|
+
#{IEC_TITLE1.gsub(/\ /, " ")}
|
127
127
|
<div><a name="_terms_and_definitions" id="_terms_and_definitions"></a><h1 class="main">1<span style="mso-tab-count:1">  </span>Terms and Definitions</h1>
|
128
128
|
<p class="TermNum"><a name="paddy1" id="paddy1"></a>1.1</p><p class="Terms" style="text-align:left;">paddy</p>
|
129
129
|
<p class="MsoNormal"><a name="_eb29b35e-123e-4d1c-b50b-2714d41e747f" id="_eb29b35e-123e-4d1c-b50b-2714d41e747f"></a>rice retaining its husk after threshing</p>
|
@@ -228,7 +228,7 @@ RSpec.describe IsoDoc do
|
|
228
228
|
sub(%r{<br[^>]*>\s*<div class="colophon">.*$}m, "")
|
229
229
|
expect(xmlpp(word)).to be_equivalent_to xmlpp(<<~"OUTPUT")
|
230
230
|
<div class="WordSection3">
|
231
|
-
#{
|
231
|
+
#{IEC_TITLE1.gsub(/\ /, " ")}
|
232
232
|
<p class="MsoNormal">
|
233
233
|
<br clear="all" style="mso-special-character:line-break;page-break-before:always"/>
|
234
234
|
</p>
|
@@ -274,7 +274,7 @@ RSpec.describe IsoDoc do
|
|
274
274
|
sub(%r{<br[^>]*>\s*<div class="colophon">.*$}m, "")
|
275
275
|
expect(xmlpp(word)).to be_equivalent_to xmlpp(<<~"OUTPUT")
|
276
276
|
<div class="WordSection3">
|
277
|
-
#{
|
277
|
+
#{IEC_TITLE1.gsub(/\ /, " ")}
|
278
278
|
<p class="MsoNormal">
|
279
279
|
<br clear="all" style="mso-special-character:line-break;page-break-before:always"/>
|
280
280
|
</p>
|
data/spec/isodoc/ref_spec.rb
CHANGED
@@ -44,7 +44,7 @@ RSpec.describe IsoDoc::Iec do
|
|
44
44
|
<abbreviation>ISO</abbreviation>
|
45
45
|
</organization>
|
46
46
|
</contributor>
|
47
|
-
<note format="text/plain" reference="1"
|
47
|
+
<note format="text/plain" reference="1" type="ISO DATE">Under preparation. (Stage at the time of publication ISO/DIS 16634)</note>
|
48
48
|
<extent type="part">
|
49
49
|
<referenceFrom>all</referenceFrom>
|
50
50
|
</extent>
|
@@ -139,7 +139,7 @@ RSpec.describe IsoDoc::Iec do
|
|
139
139
|
<a href='#zip_ffs'>[5]</a>
|
140
140
|
</p>
|
141
141
|
</div>
|
142
|
-
#{
|
142
|
+
#{IEC_TITLE1}
|
143
143
|
<div>
|
144
144
|
<h1>1  Normative references</h1>
|
145
145
|
<p>
|
@@ -178,7 +178,7 @@ RSpec.describe IsoDoc::Iec do
|
|
178
178
|
<a href='http://www.icc.or.at'>http://www.icc.or.at</a>
|
179
179
|
)
|
180
180
|
</p>
|
181
|
-
<div
|
181
|
+
<div class='Note'>
|
182
182
|
<p>
|
183
183
|
<span class='note_label'>NOTE</span>
|
184
184
|
  This is an annotation of ISO 20483:2013-2014
|
@@ -197,13 +197,13 @@ RSpec.describe IsoDoc::Iec do
|
|
197
197
|
[2],
|
198
198
|
<i>Instruments for analytical laboratory use</i>
|
199
199
|
</p>
|
200
|
-
<div
|
200
|
+
<div class='Note'>
|
201
201
|
<p>
|
202
202
|
<span class='note_label'>NOTE</span>
|
203
203
|
  This is an annotation of document ISSN.
|
204
204
|
</p>
|
205
205
|
</div>
|
206
|
-
<div
|
206
|
+
<div class='Note'>
|
207
207
|
<p>
|
208
208
|
<span class='note_label'>NOTE</span>
|
209
209
|
  This is another annotation of document ISSN.
|
data/spec/isodoc/section_spec.rb
CHANGED
@@ -94,7 +94,7 @@ RSpec.describe IsoDoc do
|
|
94
94
|
</div>
|
95
95
|
<p>This is patent boilerplate</p>
|
96
96
|
</div>
|
97
|
-
#{
|
97
|
+
#{IEC_TITLE1}
|
98
98
|
<div id="D">
|
99
99
|
<h1>1  Scope</h1>
|
100
100
|
<p id="E">Text</p>
|
@@ -243,7 +243,7 @@ OUTPUT
|
|
243
243
|
</div>
|
244
244
|
<p><br clear="all" class="section"/></p>
|
245
245
|
<div class="WordSection3">
|
246
|
-
#{
|
246
|
+
#{IEC_TITLE1}
|
247
247
|
<div id="D">
|
248
248
|
<h1>1<span style="mso-tab-count:1">  </span>Scope</h1>
|
249
249
|
<p id="E">Text</p>
|
@@ -327,7 +327,7 @@ INPUT
|
|
327
327
|
<h1 class='ForewordTitle'>FOREWORD</h1>
|
328
328
|
<div class='boilerplate_legal'/>
|
329
329
|
</div>
|
330
|
-
#{
|
330
|
+
#{IEC_TITLE1}
|
331
331
|
<div id='D'>
|
332
332
|
<h1>1  Scope</h1>
|
333
333
|
<div id='D1'>
|
@@ -361,7 +361,7 @@ OUTPUT
|
|
361
361
|
<h1 class="ForewordTitle">FOREWORD</h1>
|
362
362
|
<div class="boilerplate_legal"/>
|
363
363
|
</div>
|
364
|
-
#{
|
364
|
+
#{IEC_TITLE1}
|
365
365
|
<div id="H"><h1>1  Terms, Definitions, Symbols and Abbreviated Terms</h1>
|
366
366
|
<p class="TermNum" id="J">1.1</p>
|
367
367
|
<p class="Terms" style="text-align:left;">Term2</p>
|
@@ -391,7 +391,7 @@ OUTPUT
|
|
391
391
|
<h1 class="ForewordTitle">FOREWORD</h1>
|
392
392
|
<div class="boilerplate_legal"/>
|
393
393
|
</div>
|
394
|
-
#{
|
394
|
+
#{IEC_TITLE1}
|
395
395
|
<div id="M">
|
396
396
|
<h1>1  Clause 4</h1>
|
397
397
|
<div id="N">
|
@@ -434,7 +434,7 @@ OUTPUT
|
|
434
434
|
</div>
|
435
435
|
<p><br clear="all" class="section"/></p>
|
436
436
|
<div class="WordSection3">
|
437
|
-
#{
|
437
|
+
#{IEC_TITLE1}
|
438
438
|
</div>
|
439
439
|
<br clear="all" style="page-break-before:left;mso-break-type:section-break"/>
|
440
440
|
<div class="colophon"/>
|
@@ -469,7 +469,7 @@ OUTPUT
|
|
469
469
|
</div>
|
470
470
|
<p><br clear="all" class="section"/></p>
|
471
471
|
<div class="WordSection3">
|
472
|
-
#{
|
472
|
+
#{IEC_TITLE1}
|
473
473
|
</div>
|
474
474
|
</body>
|
475
475
|
OUTPUT
|
@@ -496,7 +496,7 @@ OUTPUT
|
|
496
496
|
<p>Boilerplate</p>
|
497
497
|
</div>
|
498
498
|
</div>
|
499
|
-
#{
|
499
|
+
#{IEC_TITLE1}
|
500
500
|
</div>
|
501
501
|
</body>
|
502
502
|
</html>
|
@@ -521,7 +521,7 @@ OUTPUT
|
|
521
521
|
<div id="">
|
522
522
|
<h1 class="ForewordTitle">FOREWORD</h1>
|
523
523
|
</div>
|
524
|
-
#{
|
524
|
+
#{IEC_TITLE1}
|
525
525
|
</div>
|
526
526
|
</body>
|
527
527
|
</html>
|
data/spec/isodoc/terms_spec.rb
CHANGED
@@ -57,7 +57,7 @@ RSpec.describe IsoDoc do
|
|
57
57
|
<h1 class="ForewordTitle">FOREWORD</h1>
|
58
58
|
<div class="boilerplate_legal"/>
|
59
59
|
</div>
|
60
|
-
#{
|
60
|
+
#{IEC_TITLE1}
|
61
61
|
<div id="_terms_and_definitions"><h1>1  Terms and definitions</h1>
|
62
62
|
<p class="TermNum" id="paddy1">1.1</p><p class="Terms" style="text-align:left;">paddy</p>
|
63
63
|
|
@@ -83,8 +83,8 @@ RSpec.describe IsoDoc do
|
|
83
83
|
<li>A</li>
|
84
84
|
</ul>
|
85
85
|
</div>
|
86
|
-
<div class="Note"><p>Note 1 to entry: The starch of waxy rice consists almost entirely of amylopectin. The kernels have a tendency to stick together after cooking.</p></div>
|
87
|
-
<div class="Note"><p>Note 2 to entry: <ul><li>A</li></ul><p id="_19830f33-e46c-42cc-94ca-a5ef101132d5">The starch of waxy rice consists almost entirely of amylopectin. The kernels have a tendency to stick together after cooking.</p></p></div>
|
86
|
+
<div id="_671a1994-4783-40d0-bc81-987d06ffb74e" class="Note"><p>Note 1 to entry: The starch of waxy rice consists almost entirely of amylopectin. The kernels have a tendency to stick together after cooking.</p></div>
|
87
|
+
<div id='_671a1994-4783-40d0-bc81-987d06ffb74f' class="Note"><p>Note 2 to entry: <ul><li>A</li></ul><p id="_19830f33-e46c-42cc-94ca-a5ef101132d5">The starch of waxy rice consists almost entirely of amylopectin. The kernels have a tendency to stick together after cooking.</p></p></div>
|
88
88
|
<p>[TERMREF]
|
89
89
|
<a href="#ISO7301">ISO 7301:2011, 3.1</a>
|
90
90
|
[/TERMREF]</p></div>
|
@@ -95,7 +95,7 @@ OUTPUT
|
|
95
95
|
end
|
96
96
|
|
97
97
|
it "processes IsoXML terms (Word)" do
|
98
|
-
expect((IsoDoc::Iec::WordConvert.new({}).convert("test", <<~"INPUT", true).sub(%r{^.*<div id="_terms_and_definitions">}m, '<div id="_terms_and_definitions">').sub(%r{
|
98
|
+
expect((IsoDoc::Iec::WordConvert.new({}).convert("test", <<~"INPUT", true).sub(%r{^.*<div id="_terms_and_definitions">}m, '<div id="_terms_and_definitions">').sub(%r{</div>\s*<br[^>]*>\s*<div class="colophon"/>.*$}m, ""))).to be_equivalent_to xmlpp(<<~"OUTPUT")
|
99
99
|
<iso-standard xmlns="http://riboseinc.com/isoxml">
|
100
100
|
<sections>
|
101
101
|
<terms id="_terms_and_definitions" obligation="normative"><title>Terms and definitions</title>
|
@@ -145,8 +145,7 @@ OUTPUT
|
|
145
145
|
</sections>
|
146
146
|
</iso-standard>
|
147
147
|
INPUT
|
148
|
-
|
149
|
-
<p class="TermNum" id="paddy1">1.1</p><p class="Terms" style="text-align:left;">paddy</p>
|
148
|
+
<div id="_terms_and_definitions"><h1>1<span style="mso-tab-count:1">  </span>Terms and definitions</h1><p class="TermNum" id="paddy1">1.1</p><p class="Terms" style="text-align:left;">paddy</p>
|
150
149
|
|
151
150
|
<p id="_eb29b35e-123e-4d1c-b50b-2714d41e747f"><rice> rice retaining its husk after threshing</p>
|
152
151
|
<div id="_bd57bbf1-f948-4bae-b0ce-73c00431f892" class="example"><p><span class="example_label">EXAMPLE 1</span><span style="mso-tab-count:1">  </span>Foreign seeds, husks, bran, sand, dust.</p><ul>
|
@@ -164,18 +163,17 @@ OUTPUT
|
|
164
163
|
[/TERMREF]</p><p class="TermNum" id="paddy">1.2</p><p class="Terms" style="text-align:left;">paddy</p><p class="AltTerms" style="text-align:left;">paddy rice</p>
|
165
164
|
<p class="AltTerms" style="text-align:left;">rough rice</p>
|
166
165
|
<p class="DeprecatedTerms" style="text-align:left;">DEPRECATED: cargo rice</p>
|
167
|
-
<div class="
|
168
|
-
<div class="Note"><p class="Note">Note 2 to entry: <ul><li>A</li></ul><p id="_19830f33-e46c-42cc-94ca-a5ef101132d5">The starch of waxy rice consists almost entirely of amylopectin. The kernels have a tendency to stick together after cooking.</p></p></div>
|
169
|
-
<p id="_eb29b35e-123e-4d1c-b50b-2714d41e747f">rice retaining its husk after threshing</p>
|
170
|
-
<div id="_bd57bbf1-f948-4bae-b0ce-73c00431f893" class="example"><p><span class="example_label">EXAMPLE</span><span style="mso-tab-count:1">  </span></p>
|
166
|
+
<p id="_eb29b35e-123e-4d1c-b50b-2714d41e747f">rice retaining its husk after threshing</p><div id="_bd57bbf1-f948-4bae-b0ce-73c00431f893" class="example"><p><span class="example_label">EXAMPLE</span><span style="mso-tab-count:1">  </span></p>
|
171
167
|
<ul>
|
172
168
|
<li>A</li>
|
173
169
|
</ul>
|
174
|
-
</div>
|
170
|
+
</div><div id="_671a1994-4783-40d0-bc81-987d06ffb74e" class="Note"><p class="Note">Note 1 to entry: The starch of waxy rice consists almost entirely of amylopectin. The kernels have a tendency to stick together after cooking.</p></div><div id="_671a1994-4783-40d0-bc81-987d06ffb74f" class="Note"><p class="Note">Note 2 to entry: <ul><li>A</li></ul><p id="_19830f33-e46c-42cc-94ca-a5ef101132d5">The starch of waxy rice consists almost entirely of amylopectin. The kernels have a tendency to stick together after cooking.</p></p></div>
|
171
|
+
|
172
|
+
|
173
|
+
|
175
174
|
<p>[TERMREF]
|
176
175
|
<a href="#ISO7301">ISO 7301:2011, 3.1</a>
|
177
176
|
[/TERMREF]</p></div>
|
178
|
-
|
179
177
|
OUTPUT
|
180
178
|
end
|
181
179
|
end
|
@@ -15,7 +15,7 @@ RSpec.describe Metanorma::Iec::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"], [:pdf, "pdf"], [:rxl, "rxl"], [:xml, "xml"]]
|
18
|
+
[[:doc, "doc"], [:html, "html"], [:pdf, "pdf"], [:presentation, "presentation.xml"], [:rxl, "rxl"], [:xml, "xml"]]
|
19
19
|
OUTPUT
|
20
20
|
end
|
21
21
|
|
@@ -35,7 +35,7 @@ RSpec.describe Metanorma::Iec::Processor do
|
|
35
35
|
|
36
36
|
it "generates HTML from IsoDoc XML" do
|
37
37
|
FileUtils.rm_f "test.xml"
|
38
|
-
processor.output(<<~"INPUT", "test.html", :html)
|
38
|
+
processor.output(<<~"INPUT", "test.xml", "test.html", :html)
|
39
39
|
<iec-standard xmlns="http://riboseinc.com/isoxml">
|
40
40
|
<sections>
|
41
41
|
<terms id="H" obligation="normative"><title>Terms, Definitions, Symbols and Abbreviated Terms</title>
|
@@ -60,9 +60,6 @@ RSpec.describe Metanorma::Iec::Processor do
|
|
60
60
|
<h1 class="ForewordTitle" id="toc0">FOREWORD</h1>
|
61
61
|
<div class="boilerplate_legal"></div>
|
62
62
|
</div>
|
63
|
-
<p class="zzSTDTitle1">INTERNATIONAL ELECTROTECHNICAL COMMISSION</p>
|
64
|
-
<p class="zzSTDTitle1">____________</p>
|
65
|
-
<p class="zzSTDTitle1"> </p>
|
66
63
|
<p class="zzSTDTitle1">
|
67
64
|
<b></b>
|
68
65
|
</p>
|
data/spec/spec_helper.rb
CHANGED
@@ -195,6 +195,13 @@ IEC_TITLE = <<~END
|
|
195
195
|
<p class="zzSTDTitle1"> </p>
|
196
196
|
END
|
197
197
|
|
198
|
+
IEC_TITLE1 = <<~END
|
199
|
+
<p class="zzSTDTitle1">
|
200
|
+
<b/>
|
201
|
+
</p>
|
202
|
+
<p class="zzSTDTitle1"> </p>
|
203
|
+
END
|
204
|
+
|
198
205
|
HTML_HDR = <<~END
|
199
206
|
<html xmlns:epub="http://www.idpf.org/2007/ops" lang="en">
|
200
207
|
<head/>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metanorma-iec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-07-26 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.1.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.1.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: metanorma-iso
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 1.
|
47
|
+
version: 1.4.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.4.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: byebug
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: sassc
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 2.4.0
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 2.4.0
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: equivalent-xml
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -231,11 +245,14 @@ files:
|
|
231
245
|
- lib/isodoc/iec/html/header.html
|
232
246
|
- lib/isodoc/iec/html/html_iec_intro.html
|
233
247
|
- lib/isodoc/iec/html/html_iec_titlepage.html
|
248
|
+
- lib/isodoc/iec/html/htmlstyle.css
|
234
249
|
- lib/isodoc/iec/html/htmlstyle.scss
|
250
|
+
- lib/isodoc/iec/html/isodoc.css
|
235
251
|
- lib/isodoc/iec/html/isodoc.scss
|
236
252
|
- lib/isodoc/iec/html/scripts.html
|
237
253
|
- lib/isodoc/iec/html/word_iec_intro.html
|
238
254
|
- lib/isodoc/iec/html/word_iec_titlepage.html
|
255
|
+
- lib/isodoc/iec/html/wordstyle.css
|
239
256
|
- lib/isodoc/iec/html/wordstyle.scss
|
240
257
|
- lib/isodoc/iec/html_convert.rb
|
241
258
|
- lib/isodoc/iec/i18n-en.yaml
|
@@ -244,7 +261,9 @@ files:
|
|
244
261
|
- lib/isodoc/iec/iec.international-standard.xsl
|
245
262
|
- lib/isodoc/iec/metadata.rb
|
246
263
|
- lib/isodoc/iec/pdf_convert.rb
|
264
|
+
- lib/isodoc/iec/presentation_xml_convert.rb
|
247
265
|
- lib/isodoc/iec/word_convert.rb
|
266
|
+
- lib/isodoc/iec/xref.rb
|
248
267
|
- lib/metanorma-iec.rb
|
249
268
|
- lib/metanorma/iec.rb
|
250
269
|
- lib/metanorma/iec/processor.rb
|
@@ -289,7 +308,7 @@ homepage: https://github.com/metanorma/metanorma-iec
|
|
289
308
|
licenses:
|
290
309
|
- BSD-2-Clause
|
291
310
|
metadata: {}
|
292
|
-
post_install_message:
|
311
|
+
post_install_message:
|
293
312
|
rdoc_options: []
|
294
313
|
require_paths:
|
295
314
|
- lib
|
@@ -304,9 +323,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
304
323
|
- !ruby/object:Gem::Version
|
305
324
|
version: '0'
|
306
325
|
requirements: []
|
307
|
-
|
308
|
-
|
309
|
-
signing_key:
|
326
|
+
rubygems_version: 3.0.3
|
327
|
+
signing_key:
|
310
328
|
specification_version: 4
|
311
329
|
summary: metanorma-iec lets you write IEC standards in AsciiDoc.
|
312
330
|
test_files: []
|