metanorma-standoc 2.8.2 → 2.8.4
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/lib/metanorma/standoc/base.rb +2 -2
- data/lib/metanorma/standoc/biblio.rng +28 -25
- data/lib/metanorma/standoc/cleanup_table.rb +2 -4
- data/lib/metanorma/standoc/converter.rb +13 -0
- data/lib/metanorma/standoc/datamodel/attributes_table_preprocessor.rb +2 -2
- data/lib/metanorma/standoc/datamodel/diagram_preprocessor.rb +2 -2
- data/lib/metanorma/standoc/front_contributor.rb +2 -0
- data/lib/metanorma/standoc/front_organisation.rb +39 -7
- data/lib/metanorma/standoc/macros.rb +7 -7
- data/lib/metanorma/standoc/macros_embed.rb +42 -9
- data/lib/metanorma/standoc/utils.rb +7 -6
- data/lib/metanorma/standoc/version.rb +1 -1
- data/metanorma-standoc.gemspec +4 -4
- metadata +12 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 77911b09eea6861ff4b3614ba4de12829fd8955161d1aa8b8e917778ed9d3ac4
|
4
|
+
data.tar.gz: 11c749162a35a458a4cfa4c963a68a6e24f535c1fc4e943599966459612078ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24a4fb2005f50f620eaba63e869c86939066445938c74ea3c6df18c6b7a18f7d42cf1997b0ae50dd4adbe7d6bd03f2b4bec6270fb9f41676d4e94e97626160da
|
7
|
+
data.tar.gz: 5cb4f03fa198dd33054e7e81cbc8de074b8cd05a73cee3de4e68ec7e596db08ae17d46c2b1dd8837e2959789f9cfbf80c5ba00e1cc2709c30b26703a052eef3e
|
@@ -40,7 +40,6 @@ module Metanorma
|
|
40
40
|
end
|
41
41
|
|
42
42
|
def init_vars
|
43
|
-
@log = Metanorma::Utils::Log.new # for error reporting downstream
|
44
43
|
@fn_number ||= 0
|
45
44
|
@refids = Set.new
|
46
45
|
@anchor_alias = {}
|
@@ -179,7 +178,8 @@ module Metanorma
|
|
179
178
|
end
|
180
179
|
|
181
180
|
def clean_exit
|
182
|
-
|
181
|
+
!@novalid && @local_log and
|
182
|
+
@log.write("#{@output_dir}#{@filename}.err.html")
|
183
183
|
@files_to_delete.each { |f| FileUtils.rm f }
|
184
184
|
end
|
185
185
|
|
@@ -338,29 +338,32 @@
|
|
338
338
|
</define>
|
339
339
|
<define name="organization">
|
340
340
|
<element name="organization">
|
341
|
-
<
|
342
|
-
<ref name="orgname"/>
|
343
|
-
</oneOrMore>
|
344
|
-
<zeroOrMore>
|
345
|
-
<ref name="subdivision"/>
|
346
|
-
</zeroOrMore>
|
347
|
-
<optional>
|
348
|
-
<ref name="abbreviation"/>
|
349
|
-
</optional>
|
350
|
-
<zeroOrMore>
|
351
|
-
<ref name="uri"/>
|
352
|
-
</zeroOrMore>
|
353
|
-
<zeroOrMore>
|
354
|
-
<ref name="org-identifier"/>
|
355
|
-
</zeroOrMore>
|
356
|
-
<zeroOrMore>
|
357
|
-
<ref name="contact"/>
|
358
|
-
</zeroOrMore>
|
359
|
-
<optional>
|
360
|
-
<ref name="logo"/>
|
361
|
-
</optional>
|
341
|
+
<ref name="OrganizationType"/>
|
362
342
|
</element>
|
363
343
|
</define>
|
344
|
+
<define name="OrganizationType">
|
345
|
+
<oneOrMore>
|
346
|
+
<ref name="orgname"/>
|
347
|
+
</oneOrMore>
|
348
|
+
<zeroOrMore>
|
349
|
+
<ref name="subdivision"/>
|
350
|
+
</zeroOrMore>
|
351
|
+
<optional>
|
352
|
+
<ref name="abbreviation"/>
|
353
|
+
</optional>
|
354
|
+
<zeroOrMore>
|
355
|
+
<ref name="uri"/>
|
356
|
+
</zeroOrMore>
|
357
|
+
<zeroOrMore>
|
358
|
+
<ref name="org-identifier"/>
|
359
|
+
</zeroOrMore>
|
360
|
+
<zeroOrMore>
|
361
|
+
<ref name="contact"/>
|
362
|
+
</zeroOrMore>
|
363
|
+
<optional>
|
364
|
+
<ref name="logo"/>
|
365
|
+
</optional>
|
366
|
+
</define>
|
364
367
|
<define name="orgname">
|
365
368
|
<element name="name">
|
366
369
|
<choice>
|
@@ -371,10 +374,10 @@
|
|
371
374
|
</define>
|
372
375
|
<define name="subdivision">
|
373
376
|
<element name="subdivision">
|
374
|
-
<
|
375
|
-
<
|
376
|
-
|
377
|
-
|
377
|
+
<optional>
|
378
|
+
<attribute name="type"/>
|
379
|
+
</optional>
|
380
|
+
<ref name="OrganizationType"/>
|
378
381
|
</element>
|
379
382
|
</define>
|
380
383
|
<define name="logo">
|
@@ -22,8 +22,7 @@ module Metanorma
|
|
22
22
|
|
23
23
|
def insert_thead(table)
|
24
24
|
thead = table.at("./thead")
|
25
|
-
|
26
|
-
|
25
|
+
thead.nil? or return thead
|
27
26
|
if tname = table.at("./name")
|
28
27
|
thead = tname.add_next_sibling("<thead/>").first
|
29
28
|
return thead
|
@@ -35,8 +34,7 @@ module Metanorma
|
|
35
34
|
xmldoc.xpath("//table[@headerrows]").each do |s|
|
36
35
|
thead = insert_thead(s)
|
37
36
|
(thead.xpath("./tr").size...s["headerrows"].to_i).each do
|
38
|
-
|
39
|
-
row.parent = thead
|
37
|
+
s.at("./tbody/tr").parent = thead
|
40
38
|
end
|
41
39
|
thead.xpath(".//td").each { |n| n.name = "th" }
|
42
40
|
s.delete("headerrows")
|
@@ -21,6 +21,15 @@ module Metanorma
|
|
21
21
|
# schema encapsulation of the document for validation
|
22
22
|
class Converter
|
23
23
|
Asciidoctor::Extensions.register do
|
24
|
+
preprocessor Metanorma::Standoc::ResolveIncludePreprocessor
|
25
|
+
preprocessor Metanorma::Plugin::Lutaml::LutamlPreprocessor
|
26
|
+
preprocessor Metanorma::Plugin::Lutaml::LutamlUmlAttributesTablePreprocessor
|
27
|
+
preprocessor Metanorma::Plugin::Lutaml::LutamlUmlDatamodelDescriptionPreprocessor
|
28
|
+
preprocessor Metanorma::Plugin::Lutaml::LutamlUmlClassPreprocessor
|
29
|
+
inline_macro Metanorma::Plugin::Lutaml::LutamlFigureInlineMacro
|
30
|
+
inline_macro Metanorma::Plugin::Lutaml::LutamlTableInlineMacro
|
31
|
+
block_macro Metanorma::Plugin::Lutaml::LutamlDiagramBlockMacro
|
32
|
+
block Metanorma::Plugin::Lutaml::LutamlDiagramBlock
|
24
33
|
preprocessor Metanorma::Standoc::EmbedIncludeProcessor
|
25
34
|
preprocessor Metanorma::Standoc::LinkProtectPreprocessor
|
26
35
|
preprocessor Metanorma::Standoc::Datamodel::AttributesTablePreprocessor
|
@@ -92,6 +101,10 @@ module Metanorma
|
|
92
101
|
outfilesuffix ".xml"
|
93
102
|
@libdir = File.dirname(self.class::_file || __FILE__)
|
94
103
|
@c = HTMLEntities.new
|
104
|
+
unless opts && @log = opts[:document]&.options&.dig(:log)
|
105
|
+
@log = Metanorma::Utils::Log.new
|
106
|
+
@local_log = true
|
107
|
+
end
|
95
108
|
end
|
96
109
|
|
97
110
|
class << self
|
@@ -14,8 +14,8 @@ module Metanorma
|
|
14
14
|
# read include derectives that goes after that in block and transform
|
15
15
|
# into yaml2text blocks
|
16
16
|
def process(document, reader)
|
17
|
-
input_lines = reader.
|
18
|
-
Asciidoctor::
|
17
|
+
input_lines = reader.lines.to_enum
|
18
|
+
Asciidoctor::PreprocessorReader.new(document, processed_lines(document, input_lines))
|
19
19
|
end
|
20
20
|
|
21
21
|
private
|
@@ -15,8 +15,8 @@ module Metanorma
|
|
15
15
|
# read include derectives that goes after that in block and transform
|
16
16
|
# into plantuml block
|
17
17
|
def process(document, reader)
|
18
|
-
input_lines = reader.
|
19
|
-
Asciidoctor::
|
18
|
+
input_lines = reader.lines.to_enum
|
19
|
+
Asciidoctor::PreprocessorReader.new(document, processed_lines(document, input_lines))
|
20
20
|
end
|
21
21
|
|
22
22
|
private
|
@@ -13,16 +13,48 @@ module Metanorma
|
|
13
13
|
end
|
14
14
|
end
|
15
15
|
|
16
|
-
def organization(org, orgname, node = nil, default_org = nil)
|
16
|
+
def organization(org, orgname, node = nil, default_org = nil, attrs = {})
|
17
17
|
abbrevs = org_abbrev
|
18
18
|
n = abbrevs.invert[orgname] and orgname = n
|
19
19
|
org.name orgname
|
20
|
-
default_org
|
20
|
+
default_org && (a = node&.attr("subdivision")) && !attrs[:subdiv] and
|
21
|
+
subdivision(a, node&.attr("subdivision-abbr"), org)
|
22
|
+
a = attrs[:subdiv] and subdivision(a, nil, org)
|
21
23
|
abbr = org_abbrev[orgname]
|
22
|
-
default_org && b = node&.attr("subdivision-abbr") and abbr = b
|
23
24
|
abbr and org.abbreviation abbr
|
24
25
|
end
|
25
26
|
|
27
|
+
def subdivision(attr, abbr, org)
|
28
|
+
abbrs = csv_split(abbr) || []
|
29
|
+
subdivs = csv_split(attr, ";")
|
30
|
+
subdivs.size == abbrs.size or abbrs = []
|
31
|
+
subdivs.each_with_index do |s, i|
|
32
|
+
subdivision1(s, abbrs[i], org)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def subdivision1(attr, abbr, org)
|
37
|
+
m = csv_split(attr, ",").map do |s1|
|
38
|
+
t, v = s1.split(":", 2).map(&:strip)
|
39
|
+
if v.nil?
|
40
|
+
v = t
|
41
|
+
t = nil
|
42
|
+
end
|
43
|
+
{ type: t, value: v }
|
44
|
+
end
|
45
|
+
abbr and m[0][:abbr] = abbr
|
46
|
+
subdiv_build(m, org)
|
47
|
+
end
|
48
|
+
|
49
|
+
def subdiv_build(list, org)
|
50
|
+
list.empty? and return
|
51
|
+
org.subdivision **attr_code(type: list[0][:type]) do |s|
|
52
|
+
s.name { |n| n << list[0][:value] }
|
53
|
+
subdiv_build(list[1..-1], s)
|
54
|
+
a = list[0][:abbr] and s.abbreviation { |n| n << a }
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
26
58
|
def org_address(org, xml)
|
27
59
|
p = org[:address] and xml.address do |ad|
|
28
60
|
ad.formattedAddress do |f|
|
@@ -43,9 +75,8 @@ module Metanorma
|
|
43
75
|
xml.name node.attr("affiliation#{suffix}")
|
44
76
|
abbr = node.attr("affiliation_abbrev#{suffix}") and
|
45
77
|
xml.abbreviation abbr
|
46
|
-
|
47
|
-
|
48
|
-
end
|
78
|
+
a = node.attr("affiliation_subdiv#{suffix}") and
|
79
|
+
subdivision(a, nil, xml)
|
49
80
|
person_address(node, suffix, xml)
|
50
81
|
person_org_logo(node, suffix, xml)
|
51
82
|
end
|
@@ -108,7 +139,7 @@ module Metanorma
|
|
108
139
|
end
|
109
140
|
|
110
141
|
def org_organization(node, xml, org)
|
111
|
-
organization(xml, org[:name], node, !node.attr("publisher"))
|
142
|
+
organization(xml, org[:name], node, !node.attr("publisher"), org)
|
112
143
|
org_address(org, xml)
|
113
144
|
org_logo(xml, org[:logo])
|
114
145
|
end
|
@@ -150,6 +181,7 @@ module Metanorma
|
|
150
181
|
def extract_org_attrs_complex(node, opts, source, suffix)
|
151
182
|
{ name: node.attr(source + suffix),
|
152
183
|
role: opts[:role], desc: opts[:desc],
|
184
|
+
subdiv: node.attr("#{source}_subdivision#{suffix}"),
|
153
185
|
logo: node.attr("#{source}_logo#{suffix}") }.compact
|
154
186
|
.merge(extract_org_attrs_address(node, opts, suffix))
|
155
187
|
end
|
@@ -50,14 +50,14 @@ module Metanorma
|
|
50
50
|
end
|
51
51
|
|
52
52
|
class NamedEscapePreprocessor < Asciidoctor::Extensions::Preprocessor
|
53
|
-
def process(
|
53
|
+
def process(document, reader)
|
54
54
|
c = HTMLEntities.new
|
55
|
-
lines = reader.
|
56
|
-
l.split(/(&[A-Za-z][
|
55
|
+
lines = reader.lines.map do |l|
|
56
|
+
l.split(/(&[A-Za-z][^&;]*;)/).map do |s|
|
57
57
|
/^&[A-Za-z]/.match?(s) ? c.encode(c.decode(s), :hexadecimal) : s
|
58
58
|
end.join
|
59
59
|
end
|
60
|
-
::Asciidoctor::
|
60
|
+
::Asciidoctor::PreprocessorReader.new document, lines
|
61
61
|
end
|
62
62
|
end
|
63
63
|
|
@@ -85,14 +85,14 @@ module Metanorma
|
|
85
85
|
delimln: delimln }
|
86
86
|
end
|
87
87
|
|
88
|
-
def process(
|
88
|
+
def process(document, reader)
|
89
89
|
p = init
|
90
|
-
lines = reader.
|
90
|
+
lines = reader.lines.map do |t|
|
91
91
|
p = pass_status(p, t.rstrip)
|
92
92
|
!p[:pass] && t.include?(":") and t = inlinelinkmacro(inlinelink(t))
|
93
93
|
t
|
94
94
|
end
|
95
|
-
::Asciidoctor::
|
95
|
+
::Asciidoctor::PreprocessorReader.new document, lines
|
96
96
|
end
|
97
97
|
|
98
98
|
def pass_status(status, text)
|
@@ -1,13 +1,45 @@
|
|
1
1
|
require "pathname"
|
2
2
|
|
3
|
+
module Asciidoctor
|
4
|
+
class PreprocessorNoIfdefsReader < PreprocessorReader
|
5
|
+
private
|
6
|
+
|
7
|
+
def preprocess_conditional_directive(_keyword, _target, _delimiter, _text)
|
8
|
+
false # decline to resolve idefs
|
9
|
+
end
|
10
|
+
|
11
|
+
def resolve_include_path(expanded_target, attrlist, parsed_attrs)
|
12
|
+
inc_path, target_type, relpath = super
|
13
|
+
if inc_path && !%i(file uri).include?(target_type)
|
14
|
+
# include has been skipped because of error
|
15
|
+
n = peek_line(true)
|
16
|
+
/^Unresolved directive in/.match?(n) and
|
17
|
+
@document.converter.log
|
18
|
+
&.add("Include", nil,
|
19
|
+
HTMLEntities.new.encode(n, :basic), severity: 0)
|
20
|
+
end
|
21
|
+
[inc_path, target_type, relpath]
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
3
26
|
module Metanorma
|
4
27
|
module Standoc
|
28
|
+
# resolve all includes before doing any further preprocessing
|
29
|
+
class ResolveIncludePreprocessor < Asciidoctor::Extensions::Preprocessor
|
30
|
+
def process(doc, reader)
|
31
|
+
r = ::Asciidoctor::PreprocessorNoIfdefsReader.new doc, reader.lines
|
32
|
+
::Asciidoctor::PreprocessorNoIfdefsReader.new doc, r.readlines
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
5
36
|
class EmbedIncludeProcessor < Asciidoctor::Extensions::Preprocessor
|
6
37
|
def process(doc, reader)
|
7
38
|
reader.eof? and return reader
|
8
|
-
|
39
|
+
r = ::Asciidoctor::PreprocessorNoIfdefsReader.new doc, reader.lines
|
40
|
+
lines = r.readlines
|
9
41
|
headings = lines.grep(/^== /).map(&:strip)
|
10
|
-
ret = lines.each_with_object(embed_acc(doc,
|
42
|
+
ret = lines.each_with_object(embed_acc(doc, r)) do |line, m|
|
11
43
|
process_line(line, m, headings)
|
12
44
|
end
|
13
45
|
return_to_document(doc, ret)
|
@@ -35,11 +67,12 @@ module Metanorma
|
|
35
67
|
reader = ::Asciidoctor::PreprocessorReader.new doc
|
36
68
|
b = Pathname.new doc.base_dir
|
37
69
|
ret.reverse.each do |l|
|
38
|
-
if l[:file]
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
70
|
+
# if l[:file]
|
71
|
+
# new = Pathname.new(l[:path]).relative_path_from(b).to_s
|
72
|
+
# reader.push_include l[:lines], new, l[:path]
|
73
|
+
reader.unshift_lines l[:lines]
|
74
|
+
# else reader.unshift_lines l[:lines]
|
75
|
+
# end
|
43
76
|
end
|
44
77
|
reader
|
45
78
|
end
|
@@ -120,8 +153,8 @@ module Metanorma
|
|
120
153
|
lines = filter_sections(read(inc_path), headings)
|
121
154
|
n = Asciidoctor::Document
|
122
155
|
.new [], { safe: :safe, base_dir: File.dirname(inc_path) }
|
123
|
-
r = ::Asciidoctor::
|
124
|
-
ret = embed_acc(n, r).merge(strip_header(r.
|
156
|
+
r = ::Asciidoctor::PreprocessorNoIfdefsReader.new n, lines
|
157
|
+
ret = embed_acc(n, r).merge(strip_header(r.readlines))
|
125
158
|
.merge(file: fname, path: inc_path, orig: acc[:orig])
|
126
159
|
ret[:hdr] or
|
127
160
|
raise "Embedding an incomplete document with no header: #{ret[:path]}"
|
@@ -26,7 +26,8 @@ module Metanorma
|
|
26
26
|
end
|
27
27
|
|
28
28
|
def csv_split(text, delim = ";")
|
29
|
-
Metanorma::Utils::csv_split(text, delim)
|
29
|
+
Metanorma::Utils::csv_split(@c.decode(text), delim)
|
30
|
+
.map { |x| @c.encode(x, :basic, :hexadecimal) }
|
30
31
|
end
|
31
32
|
|
32
33
|
def wrap_in_para(node, out)
|
@@ -69,11 +70,11 @@ module Metanorma
|
|
69
70
|
end
|
70
71
|
|
71
72
|
def xml_encode(text)
|
72
|
-
@c.encode(text, :basic, :hexadecimal)
|
73
|
-
gsub("&gt;", ">").gsub("&lt;", "<").gsub("&amp;", "&")
|
74
|
-
gsub(">", ">").gsub("<", "<").gsub("&", "&")
|
75
|
-
gsub(""", '"').gsub("
", "\n").gsub("&#", "&#")
|
76
|
-
gsub("'", "'")
|
73
|
+
@c.encode(text, :basic, :hexadecimal)
|
74
|
+
.gsub("&gt;", ">").gsub("&lt;", "<").gsub("&amp;", "&")
|
75
|
+
.gsub(">", ">").gsub("<", "<").gsub("&", "&")
|
76
|
+
.gsub(""", '"').gsub("
", "\n").gsub("&#", "&#")
|
77
|
+
.gsub("'", "'")
|
77
78
|
end
|
78
79
|
|
79
80
|
# wrapped in <sections>
|
data/metanorma-standoc.gemspec
CHANGED
@@ -31,11 +31,11 @@ Gem::Specification.new do |spec|
|
|
31
31
|
spec.add_dependency "addressable", "~> 2.8.0"
|
32
32
|
spec.add_dependency "asciidoctor", "~> 2.0.0"
|
33
33
|
spec.add_dependency "iev", "~> 0.3.0"
|
34
|
-
spec.add_dependency "isodoc", "~> 2.
|
34
|
+
spec.add_dependency "isodoc", "~> 2.9.0"
|
35
35
|
spec.add_dependency "metanorma", ">= 1.6.0"
|
36
|
-
spec.add_dependency "metanorma-plugin-datastruct", "~> 0.
|
37
|
-
spec.add_dependency "metanorma-plugin-glossarist", "~> 0.
|
38
|
-
spec.add_dependency "metanorma-plugin-lutaml"
|
36
|
+
spec.add_dependency "metanorma-plugin-datastruct", "~> 0.3.0"
|
37
|
+
spec.add_dependency "metanorma-plugin-glossarist", "~> 0.2.0"
|
38
|
+
spec.add_dependency "metanorma-plugin-lutaml", "~> 0.5.0"
|
39
39
|
spec.add_dependency "ruby-jing"
|
40
40
|
# relaton-cli not just relaton, to avoid circular reference in metanorma
|
41
41
|
spec.add_dependency "asciimath2unitsml", "~> 0.4.0"
|
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: 2.8.
|
4
|
+
version: 2.8.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|
@@ -58,14 +58,14 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 2.
|
61
|
+
version: 2.9.0
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 2.
|
68
|
+
version: 2.9.0
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: metanorma
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -86,42 +86,42 @@ dependencies:
|
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: 0.
|
89
|
+
version: 0.3.0
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: 0.
|
96
|
+
version: 0.3.0
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: metanorma-plugin-glossarist
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: 0.
|
103
|
+
version: 0.2.0
|
104
104
|
type: :runtime
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: 0.
|
110
|
+
version: 0.2.0
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: metanorma-plugin-lutaml
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
|
-
- - "
|
115
|
+
- - "~>"
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version:
|
117
|
+
version: 0.5.0
|
118
118
|
type: :runtime
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
|
-
- - "
|
122
|
+
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version:
|
124
|
+
version: 0.5.0
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: ruby-jing
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|