metanorma-ribose 2.3.4 → 2.4.0
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/Gemfile +2 -8
- data/lib/isodoc/ribose/html/htmlstyle.css +8 -0
- data/lib/isodoc/ribose/ribose.standard.xsl +6 -4
- data/lib/metanorma/ribose/basicdoc.rng +117 -25
- data/lib/metanorma/ribose/biblio-standoc.rng +44 -1
- data/lib/metanorma/ribose/biblio.rng +32 -0
- data/lib/metanorma/ribose/isodoc.rng +32 -64
- data/lib/metanorma/ribose/reqt.rng +0 -16
- data/lib/metanorma/ribose/version.rb +1 -1
- data/metanorma-ribose.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b098e24793544b9aa35aa45461e3971f77f7cb393eba45c0bf9e922ef70fd25
|
4
|
+
data.tar.gz: 9628dcc797b67f6e5f8a64c68634a3554fdb76d12b2551706386c9fec8629986
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: adfb9f2128b78cc515aeb23b3dc51bf66e4544676a27b36465ea446ac83209f6ad8db26108734b3297f052e0a48471f7609297346dceb5197b88bf6eadf19486
|
7
|
+
data.tar.gz: 9d3d7f2f95d5ab5ecca8a6a800719ec96f776203a119870eeb21afa7ae081bdc7f711be90f4d93ee34506adf698def1279e7a24adcedc7a8bc3d175d96a27951
|
data/Gemfile
CHANGED
@@ -4,12 +4,6 @@ Encoding.default_internal = Encoding::UTF_8
|
|
4
4
|
source "https://rubygems.org"
|
5
5
|
git_source(:github) { |repo| "https://github.com/#{repo}" }
|
6
6
|
|
7
|
-
group :development, :test do
|
8
|
-
gem "rspec"
|
9
|
-
end
|
10
|
-
|
11
|
-
if File.exist? "Gemfile.devel"
|
12
|
-
eval File.read("Gemfile.devel"), nil, "Gemfile.devel" # rubocop:disable Security/Eval
|
13
|
-
end
|
14
|
-
|
15
7
|
gemspec
|
8
|
+
|
9
|
+
eval_gemfile("Gemfile.devel") rescue nil
|
@@ -139,6 +139,14 @@ a.FootnoteRef, span.FootnoteRef {
|
|
139
139
|
color: red;
|
140
140
|
text-decoration: line-through; }
|
141
141
|
|
142
|
+
ruby {
|
143
|
+
ruby-position: over;
|
144
|
+
-webkit-ruby-position: before; }
|
145
|
+
|
146
|
+
ruby ruby {
|
147
|
+
ruby-position: under;
|
148
|
+
-webkit-ruby-position: after; }
|
149
|
+
|
142
150
|
/* code highlighting with line numbers */
|
143
151
|
table.rouge-line-table td.rouge-gutter {
|
144
152
|
-moz-user-select: none;
|
@@ -9762,14 +9762,16 @@
|
|
9762
9762
|
|
9763
9763
|
<xsl:template match="*[local-name() = 'annex']">
|
9764
9764
|
<fo:block break-after="page"/>
|
9765
|
-
<fo:block
|
9765
|
+
<fo:block>
|
9766
9766
|
|
9767
9767
|
<xsl:call-template name="setBlockSpanAll"/>
|
9768
9768
|
|
9769
9769
|
<xsl:call-template name="refine_annex_style"/>
|
9770
9770
|
|
9771
9771
|
</fo:block>
|
9772
|
-
<
|
9772
|
+
<fo:block id="{@id}">
|
9773
|
+
<xsl:apply-templates/>
|
9774
|
+
</fo:block>
|
9773
9775
|
</xsl:template>
|
9774
9776
|
|
9775
9777
|
<xsl:template name="refine_annex_style">
|
@@ -10672,10 +10674,10 @@
|
|
10672
10674
|
|
10673
10675
|
<xsl:variable name="toc_level">
|
10674
10676
|
<!-- https://www.metanorma.org/author/ref/document-attributes/ -->
|
10675
|
-
<xsl:variable name="
|
10677
|
+
<xsl:variable name="pdftoclevels" select="normalize-space(//*[local-name() = 'metanorma-extension']/*[local-name() = 'presentation-metadata'][*[local-name() = 'name']/text() = 'PDF TOC Heading Levels']/*[local-name() = 'value'])"/> <!-- :toclevels-pdf Number of table of contents levels to render in PDF output; used to override :toclevels:-->
|
10676
10678
|
<xsl:variable name="toclevels" select="normalize-space(//*[local-name() = 'metanorma-extension']/*[local-name() = 'presentation-metadata'][*[local-name() = 'name']/text() = 'TOC Heading Levels']/*[local-name() = 'value'])"/> <!-- Number of table of contents levels to render -->
|
10677
10679
|
<xsl:choose>
|
10678
|
-
<xsl:when test="$
|
10680
|
+
<xsl:when test="$pdftoclevels != ''"><xsl:value-of select="number($pdftoclevels)"/></xsl:when> <!-- if there is value in xml -->
|
10679
10681
|
<xsl:when test="$toclevels != ''"><xsl:value-of select="number($toclevels)"/></xsl:when> <!-- if there is value in xml -->
|
10680
10682
|
<xsl:otherwise><!-- default value -->
|
10681
10683
|
2
|
@@ -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"/>
|
@@ -715,27 +796,36 @@
|
|
715
796
|
</define>
|
716
797
|
<define name="ruby">
|
717
798
|
<element name="ruby">
|
718
|
-
<
|
719
|
-
<
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
799
|
+
<choice>
|
800
|
+
<ref name="ruby_pronunciation"/>
|
801
|
+
<ref name="ruby_annotation"/>
|
802
|
+
</choice>
|
803
|
+
<choice>
|
804
|
+
<text/>
|
805
|
+
<ref name="ruby"/>
|
806
|
+
</choice>
|
725
807
|
</element>
|
726
808
|
</define>
|
727
|
-
<define name="
|
728
|
-
<element name="
|
729
|
-
<
|
730
|
-
|
731
|
-
|
809
|
+
<define name="ruby_pronunciation">
|
810
|
+
<element name="pronunciation">
|
811
|
+
<attribute name="value"/>
|
812
|
+
<optional>
|
813
|
+
<attribute name="script"/>
|
814
|
+
</optional>
|
815
|
+
<optional>
|
816
|
+
<attribute name="lang"/>
|
817
|
+
</optional>
|
732
818
|
</element>
|
733
819
|
</define>
|
734
|
-
<define name="
|
735
|
-
<element name="
|
736
|
-
<
|
737
|
-
|
738
|
-
|
820
|
+
<define name="ruby_annotation">
|
821
|
+
<element name="annotation">
|
822
|
+
<attribute name="value"/>
|
823
|
+
<optional>
|
824
|
+
<attribute name="script"/>
|
825
|
+
</optional>
|
826
|
+
<optional>
|
827
|
+
<attribute name="lang"/>
|
828
|
+
</optional>
|
739
829
|
</element>
|
740
830
|
</define>
|
741
831
|
<define name="br">
|
@@ -930,18 +1020,12 @@
|
|
930
1020
|
</optional>
|
931
1021
|
<optional>
|
932
1022
|
<attribute name="width">
|
933
|
-
<
|
934
|
-
<data type="int"/>
|
935
|
-
<value>auto</value>
|
936
|
-
</choice>
|
1023
|
+
<ref name="ImageSize"/>
|
937
1024
|
</attribute>
|
938
1025
|
</optional>
|
939
1026
|
<optional>
|
940
1027
|
<attribute name="height">
|
941
|
-
<
|
942
|
-
<data type="int"/>
|
943
|
-
<value>auto</value>
|
944
|
-
</choice>
|
1028
|
+
<ref name="ImageSize"/>
|
945
1029
|
</attribute>
|
946
1030
|
</optional>
|
947
1031
|
<optional>
|
@@ -956,6 +1040,14 @@
|
|
956
1040
|
</attribute>
|
957
1041
|
</optional>
|
958
1042
|
</define>
|
1043
|
+
<define name="ImageSize">
|
1044
|
+
<choice>
|
1045
|
+
<data type="string">
|
1046
|
+
<param name="pattern">\d+([.]\d+)?(%?)</param>
|
1047
|
+
</data>
|
1048
|
+
<value>auto</value>
|
1049
|
+
</choice>
|
1050
|
+
</define>
|
959
1051
|
<define name="video">
|
960
1052
|
<element name="video">
|
961
1053
|
<attribute name="id">
|
@@ -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>
|
@@ -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">
|
@@ -17,10 +17,19 @@
|
|
17
17
|
these elements; we just want one namespace for any child grammars
|
18
18
|
of this.
|
19
19
|
-->
|
20
|
-
<!-- VERSION v1.2.
|
20
|
+
<!-- VERSION v1.2.12 -->
|
21
21
|
<grammar xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
22
22
|
<include href="reqt.rng"/>
|
23
23
|
<include href="basicdoc.rng">
|
24
|
+
<define name="amend">
|
25
|
+
<element name="amend">
|
26
|
+
<ref name="BlockAttributes"/>
|
27
|
+
<ref name="AmendType"/>
|
28
|
+
<zeroOrMore>
|
29
|
+
<ref name="autonumber"/>
|
30
|
+
</zeroOrMore>
|
31
|
+
</element>
|
32
|
+
</define>
|
24
33
|
<define name="admonition">
|
25
34
|
<element name="admonition">
|
26
35
|
<attribute name="type">
|
@@ -1408,6 +1417,9 @@
|
|
1408
1417
|
<optional>
|
1409
1418
|
<attribute name="number"/>
|
1410
1419
|
</optional>
|
1420
|
+
<optional>
|
1421
|
+
<attribute name="branch-number"/>
|
1422
|
+
</optional>
|
1411
1423
|
<optional>
|
1412
1424
|
<attribute name="obligation">
|
1413
1425
|
<choice>
|
@@ -1631,6 +1643,9 @@
|
|
1631
1643
|
<optional>
|
1632
1644
|
<attribute name="number"/>
|
1633
1645
|
</optional>
|
1646
|
+
<optional>
|
1647
|
+
<attribute name="branch-number"/>
|
1648
|
+
</optional>
|
1634
1649
|
<optional>
|
1635
1650
|
<attribute name="type"/>
|
1636
1651
|
</optional>
|
@@ -1682,6 +1697,9 @@
|
|
1682
1697
|
<optional>
|
1683
1698
|
<attribute name="number"/>
|
1684
1699
|
</optional>
|
1700
|
+
<optional>
|
1701
|
+
<attribute name="branch-number"/>
|
1702
|
+
</optional>
|
1685
1703
|
<optional>
|
1686
1704
|
<ref name="section-title"/>
|
1687
1705
|
</optional>
|
@@ -1779,6 +1797,9 @@
|
|
1779
1797
|
<optional>
|
1780
1798
|
<attribute name="number"/>
|
1781
1799
|
</optional>
|
1800
|
+
<optional>
|
1801
|
+
<attribute name="branch-number"/>
|
1802
|
+
</optional>
|
1782
1803
|
<optional>
|
1783
1804
|
<attribute name="obligation">
|
1784
1805
|
<choice>
|
@@ -1946,6 +1967,16 @@
|
|
1946
1967
|
<data type="boolean"/>
|
1947
1968
|
</attribute>
|
1948
1969
|
</optional>
|
1970
|
+
<optional>
|
1971
|
+
<attribute name="type">
|
1972
|
+
<choice>
|
1973
|
+
<value>letter</value>
|
1974
|
+
<value>symbol</value>
|
1975
|
+
<value>formula</value>
|
1976
|
+
<value>equation</value>
|
1977
|
+
</choice>
|
1978
|
+
</attribute>
|
1979
|
+
</optional>
|
1949
1980
|
<element name="name">
|
1950
1981
|
<oneOrMore>
|
1951
1982
|
<choice>
|
@@ -2297,69 +2328,6 @@
|
|
2297
2328
|
<ref name="CitationType"/>
|
2298
2329
|
</element>
|
2299
2330
|
</define>
|
2300
|
-
<define name="amend">
|
2301
|
-
<element name="amend">
|
2302
|
-
<optional>
|
2303
|
-
<attribute name="id">
|
2304
|
-
<data type="ID"/>
|
2305
|
-
</attribute>
|
2306
|
-
</optional>
|
2307
|
-
<attribute name="change">
|
2308
|
-
<choice>
|
2309
|
-
<value>add</value>
|
2310
|
-
<value>modify</value>
|
2311
|
-
<value>delete</value>
|
2312
|
-
<value>replace</value>
|
2313
|
-
</choice>
|
2314
|
-
</attribute>
|
2315
|
-
<optional>
|
2316
|
-
<attribute name="path"/>
|
2317
|
-
</optional>
|
2318
|
-
<optional>
|
2319
|
-
<attribute name="path_end"/>
|
2320
|
-
</optional>
|
2321
|
-
<optional>
|
2322
|
-
<attribute name="title"/>
|
2323
|
-
</optional>
|
2324
|
-
<ref name="BlockAttributes"/>
|
2325
|
-
<optional>
|
2326
|
-
<element name="location">
|
2327
|
-
<zeroOrMore>
|
2328
|
-
<ref name="locality"/>
|
2329
|
-
</zeroOrMore>
|
2330
|
-
</element>
|
2331
|
-
</optional>
|
2332
|
-
<zeroOrMore>
|
2333
|
-
<ref name="autonumber"/>
|
2334
|
-
</zeroOrMore>
|
2335
|
-
<optional>
|
2336
|
-
<element name="description">
|
2337
|
-
<zeroOrMore>
|
2338
|
-
<ref name="BasicBlock"/>
|
2339
|
-
</zeroOrMore>
|
2340
|
-
</element>
|
2341
|
-
</optional>
|
2342
|
-
<optional>
|
2343
|
-
<element name="newcontent">
|
2344
|
-
<optional>
|
2345
|
-
<attribute name="id">
|
2346
|
-
<data type="ID"/>
|
2347
|
-
</attribute>
|
2348
|
-
</optional>
|
2349
|
-
<zeroOrMore>
|
2350
|
-
<ref name="BasicBlock"/>
|
2351
|
-
</zeroOrMore>
|
2352
|
-
</element>
|
2353
|
-
</optional>
|
2354
|
-
<optional>
|
2355
|
-
<element name="description">
|
2356
|
-
<zeroOrMore>
|
2357
|
-
<ref name="BasicBlock"/>
|
2358
|
-
</zeroOrMore>
|
2359
|
-
</element>
|
2360
|
-
</optional>
|
2361
|
-
</element>
|
2362
|
-
</define>
|
2363
2331
|
<define name="autonumber">
|
2364
2332
|
<element name="autonumber">
|
2365
2333
|
<attribute name="type">
|
@@ -207,20 +207,4 @@
|
|
207
207
|
<value>permission</value>
|
208
208
|
</choice>
|
209
209
|
</define>
|
210
|
-
<define name="classification">
|
211
|
-
<element name="classification">
|
212
|
-
<ref name="classification_tag"/>
|
213
|
-
<ref name="classification_value"/>
|
214
|
-
</element>
|
215
|
-
</define>
|
216
|
-
<define name="classification_tag">
|
217
|
-
<element name="tag">
|
218
|
-
<text/>
|
219
|
-
</element>
|
220
|
-
</define>
|
221
|
-
<define name="classification_value">
|
222
|
-
<element name="value">
|
223
|
-
<text/>
|
224
|
-
</element>
|
225
|
-
</define>
|
226
210
|
</grammar>
|
data/metanorma-ribose.gemspec
CHANGED
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
|
|
29
29
|
spec.require_paths = ["lib"]
|
30
30
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
|
31
31
|
|
32
|
-
spec.add_dependency "metanorma-generic", "~> 2.
|
32
|
+
spec.add_dependency "metanorma-generic", "~> 2.6.0"
|
33
33
|
|
34
34
|
spec.add_development_dependency "debug"
|
35
35
|
spec.add_development_dependency "equivalent-xml", "~> 0.6"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metanorma-ribose
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.4.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-01-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: metanorma-generic
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 2.
|
19
|
+
version: 2.6.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 2.
|
26
|
+
version: 2.6.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: debug
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|