metanorma-cli 1.4.17pre → 1.5.0pre

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2924b10510ebdd444c9812dbbf442675bd41a7fae02f737ad15787e6f8a16b58
4
- data.tar.gz: e83af546fe2c606deaa1a42a10db637e3f7cbc1d0b5c488608994567a73dbe1a
3
+ metadata.gz: f972c2119bba2a9ca11866ab89d23f75fabe742ef61dd873b71f18caa17c56d1
4
+ data.tar.gz: 4f10fd79320d77147cdd6b258c881c9c5243328ddde3e3c2de25d90cdd17c44d
5
5
  SHA512:
6
- metadata.gz: 30b2bb05f6e94fc717c5eb6c55cf67ab5268a7285a947316d0ca4d4bfa3d415b33d0b610d2088b748f51182c3d641a9c78f52b95a65bc2a3a10e87c8530b73d7
7
- data.tar.gz: 56c3fd4a4a491c5f5fc71acfc3a4b13d5c7ec8069ea5b9f5fd01197022c64153d881493c3f6a913df9eb913a0a2a739bbd01a5a84d4f7219d1313db1577674ee
6
+ metadata.gz: 23d611e3a7b122027bb6978dbd4632aae24228e903340fd38ff101bb68a2548d564117a5daa4912e5f711aa6f924fb52f2144b502cddcda6543b30338a7cf11a
7
+ data.tar.gz: 0a96f221a2d8eece647ee93ecaca6eb15ba31b6b4c743e3276749eee16164ca7c3e779be5485789a1b225b947d58f3652661073d5238531c63b83bbc24b8209d
data/README.adoc CHANGED
@@ -25,7 +25,7 @@ gem install metanorma-cli
25
25
  This will install the `metanorma` executable, which you can use with all
26
26
  officially supported Metanorma flavors (such as ISO, CalConnect, IETF, etc).
27
27
 
28
- However, a number of dependencies (such as Puppeteer and LaTeXML) are not
28
+ However, a number of <<external-dependencies,dependencies>> are not
29
29
  installed with this gem, and have to be installed separately.
30
30
  The process of installing the full suite can be a little more complex.
31
31
 
@@ -69,6 +69,41 @@ option.
69
69
  metanorma setup --agree-to-terms
70
70
  ----
71
71
 
72
+ === External dependencies
73
+
74
+ The Metanorma toolchain supports certain features when optional dependencies
75
+ are installed. Please refer to the following table for them.
76
+
77
+ [cols="1,1,1"]
78
+ |===
79
+ |Dependency |Mandatory? | Target component / purpose
80
+
81
+ |https://git-scm.com/[`git`]
82
+ | :white_check_mark:
83
+ |`metarnoma-cli` (templates), https://github.com/fontist/fontist[`fontist`]
84
+
85
+ |https://www.oracle.com/java/technologies/[`java`]
86
+ | :white_check_mark:
87
+ |https://github.com/metanorma/mn2pdf[`mn2pdf`], https://github.com/metanorma/metanorma-standoc[`metanorma-standoc`]
88
+
89
+ |https://xml2rfc.tools.ietf.org/[`xml2rfc`] (`python`)
90
+ | :white_large_square:
91
+ |https://github.com/metanorma/metanorma-ietf[`metanorma-ietf`]
92
+
93
+ |https://inkscape.org/[`inkscape`]
94
+ | :white_large_square:
95
+ |https://github.com/metanorma/isodoc[`isodoc`], SVG to EMF functionality (for inserting SVGs into Word)
96
+
97
+ |https://graphviz.org/[`graphviz`]
98
+ | :white_check_mark:
99
+ |https://github.com/lutaml/lutaml[`lutaml`] generation of LutaML diagrams
100
+
101
+ |http://www.plantuml.com/[`plantuml`]
102
+ | :white_large_square:
103
+ |https://github.com/metanorma/metanorma-standoc[`metanorma-standoc`] generation of PlantUML diagrams
104
+
105
+ |===
106
+
72
107
 
73
108
  === Generate a new Metanorma document using a template (`metanorma new`)
74
109
 
@@ -1,21 +1,89 @@
1
1
  = Installation
2
2
 
3
- You can get the `metanorma` command-line executable by installing this Ruby gem.
3
+ The `metanorma` command-line executable is installed by this Ruby gem.
4
4
 
5
5
  [IMPORTANT]
6
6
  ====
7
- To install the Metanorma toolchain we recommend to use one of the ways described in
8
- https://www.metanorma.com/author/topics/install/[Metanorma installation] topic.
9
- Installing this gem by hand may not be the easiest way.
7
+ Users of the Metanorma suite should install Metanorma according to the steps at
8
+ the
9
+ https://www.metanorma.org/author/topics/install/[Metanorma installation guide].
10
10
 
11
- When following this installation method, to start building documents you may have to take care
12
- of manually installing some required third-party software as well.
13
- Which exactly depends on what documents you’re building, below notes cover some of that.
11
+ The instructions provided here are intended for Metanorma developers, since
12
+ a number of third-party dependencies will also need to be installed manually.
14
13
  ====
15
14
 
16
15
 
16
+ == Install Ruby
17
+
18
+ == macOS
19
+
20
+ While macOS provides a default installation of Ruby, it is restricted in a
21
+ number of ways.
22
+
23
+ We strongly recommend installing a Ruby outside of the system Ruby using
24
+ `rbenv`.
25
+
26
+ [source,console]
27
+ ----
28
+ # Install Xcode and associated development tools
29
+ $ xcode-select --install
30
+
31
+ # Install GCC and development tools
32
+ $ brew install autoconf gcc make
33
+
34
+ # Install rbenv to manage Ruby versions
35
+ # Remember to follow the setup steps by running `rbenv init`!
36
+ $ curl -fsSL https://github.com/rbenv/rbenv-installer/raw/HEAD/bin/rbenv-installer | bash
37
+
38
+ # Install Ruby 2.7.4 through rbenv
39
+ $ rbenv install 2.7.4
40
+
41
+ # Set Ruby 2.7.4 as your global version
42
+ $ rbenv global 2.7.4
43
+
44
+ # Then restart Terminal.app
45
+ ----
46
+
47
+
48
+ == Linux
49
+
50
+ Ruby may not be pre-installed on your Linux distribution.
51
+
52
+ Please follow the official
53
+ https://www.ruby-lang.org/en/documentation/installation[Ruby installation guide].
54
+
55
+ == Windows
56
+
57
+ Ruby is not pre-installed on Windows.
58
+
59
+ The easiest way to install Ruby is with `RubyInstaller`, as recommended by
60
+ the official
61
+ https://www.ruby-lang.org/en/documentation/installation[Ruby installation guide])
62
+
63
+ If you prefer an automated way to install, we recommend using
64
+ https://chocolatey.org/install[Chocolatey] with commands below:
65
+
66
+ [source,console]
67
+ ----
68
+ choco install -y msys2 ruby
69
+ refreshenv
70
+ ridk install 3
71
+ ----
72
+
73
+ Those commands will work with both PowerShell and CMD.exe.
74
+
75
+
76
+ == Other
77
+
78
+ Further details (or FAQ) on Ruby installation please visit the official
79
+ https://www.ruby-lang.org/en/documentation/installation[Ruby installation guide].
80
+
81
+
82
+
17
83
  == Installing the Metanorma CLI gem
18
84
 
85
+ Once Ruby is installed, you can install `metanorma-cli` as a gem:
86
+
19
87
  [source,console]
20
88
  ----
21
89
  gem install metanorma-cli
@@ -29,33 +97,96 @@ Installing the gem will also install all officially supported Metanorma flavors
29
97
 
30
98
  === Java
31
99
 
32
- You will have to have a Java runtime installed. (Use `brew cask install java` on macOS.)
100
+ You will have to have a Java runtime installed.
33
101
 
34
- === Puppeteer
102
+ Use the following commands on various platforms:
35
103
 
36
- *If you are going to generate PDFs from HTML* (which applies to CalConnect Standard Documents),
37
- you will also need to install the https://github.com/GoogleChrome/puppeteer[Puppeteer] Node library.
104
+ macOS:: Run `brew cask install java`
38
105
 
39
- * Ensure you have Node of at least version 7.6.0:
40
- ** https://nodejs.org/en/download/
41
- ** On macOS you should be able to `brew install node`
42
- * Ensure you have NPM: https://docs.npmjs.com/getting-started/installing-node
43
- * Install Puppeteer globally in your system: `npm install -g --save --save-exact puppeteer`
106
+ Linux:: Follow https://www.java.com/en/download/help/linux_install.html[official instructions]
107
+
108
+ Windows:: Run `choco install -y javaruntime`
44
109
 
45
110
  === PlantUML
46
111
 
47
112
  *If your documents include link:/author/topics/document-format/diagrams/[PlantUML diagrams]*,
48
113
  PlantUML will have to be installed.
49
114
 
50
- * `brew install plantuml` on MacOS.
51
- * For Linux, link the PlantUML jar file into a command line executable; see
115
+ macOS:: Run `brew install plantuml`.
116
+
117
+ Linux:: Link the PlantUML jar file into a command line executable; see
52
118
  `.travis.yml` for an example.
53
119
 
54
- If PlantUML is not installed locally, the source PlantUML is incorporated into
55
- the output document as sourcecode.
120
+ Windows:: Run `choco install -y plantuml`.
121
+
122
+ If PlantUML diagrams used within a document but there PlantUML is not installed,
123
+ the PlantUML diagram source will be incorporated into the output document as
124
+ source code (i.e. `[source]` style).
125
+
126
+ === Graphviz
127
+
128
+ Graphviz is required by LutaML (and PlantUML) to draw diagrams.
129
+
130
+ macOS:: Run `brew install graphviz`.
131
+
132
+ Linux:: Install the appropriate
133
+ https://graphviz.org/download/#linux[available packages] (`apt` or `yum`)
134
+
135
+ Windows:: Run `choco install -y graphviz`
136
+
137
+
138
+ === xml2rfc
139
+
140
+ Metanorma IETF requires usage of the `xml2rfc` Python package.
141
+
142
+ To install Python:
143
+
144
+ macOS:: `brew install python3`
145
+
146
+ Windows:: `choco install -y python`
147
+
148
+ Then install `xml2rfc` with:
149
+
150
+ [source,console]
151
+ ----
152
+ pip3 install xml2rfc
153
+ ----
154
+
155
+
156
+ === Inkscape
157
+
158
+ Optional dependency. Inkscape is needed for SVG-to-EMF conversion functionality.
159
+
160
+ macOS:: Run `brew install inkscape`
161
+
162
+ Linux:: See Linux instructions https://inkscape.org/release/[here]
163
+
164
+ Windows:: Run `choco install -y inkscape`
165
+
166
+
167
+ === LaTeXML
168
+
169
+ Optional dependency. `LaTeXML` is needed for Metanorma for LaTeX functionality.
170
+
171
+ Most of the packages from various package manager listed on
172
+ https://dlmf.nist.gov/LaTeXML/get.html are outdated.
173
+
174
+ Since `LaTeXML` is a `perl` module, a reliable way to install it is with the
175
+ https://metacpan.org/dist/App-cpanminus/view/bin/cpanm[`cpanm` package manager]
176
+
177
+ [source,console]
178
+ ----
179
+ curl -L https://cpanmin.us | perl - --sudo App::cpanminus
180
+ cpanm --notest LaTeXML
181
+ # or
182
+ cpanm --notest git://github.com/brucemiller/LaTeXML.git@9a0e7dc5
183
+ ----
184
+
185
+ Alternative, it also can be installed in the following ways (always check the
186
+ version, because the packages may be outdated):
56
187
 
188
+ macOS:: Run `brew install latexml`
57
189
 
58
- == Installation notes for Windows
190
+ Linux (with Snap installed):: Run `snap install latexml`
59
191
 
60
- To be able to compile gem with a native extension you must have `RIDK` installed.
61
- If you are installing metanorma with chocolatey installation script will do this for you
192
+ Windows:: `choco install -y latexml`
data/docs/usage.adoc CHANGED
@@ -51,24 +51,20 @@ $ metanorma -t mpfd -r metanorma-mpfd mpfd-bpn.adoc
51
51
 
52
52
  [source,sh]
53
53
  ----
54
- $ metanorma -h
55
- Usage: metanorma [options] <file>
56
- -t, --type TYPE Type of standard to generate: rfc2, rfc3, iso, gb, csd, csand, m3d
57
- -x, --extensions EXT1,EXT2,... | all Type of extension to generate per type:
58
- {
59
- :rfc2=>{:xmlrfc=>"v2.xml"},
60
- :rfc3=>{:xmlrfc=>"v3.xml"},
61
- :iso=>{:html=>"html", :html_alt=>"alt.html", :doc=>"doc"},
62
- :gb=>{:html=>"html", :doc=>"doc"},
63
- :csd=>{:html=>"html", :pdf=>"pdf"},
64
- :csand=>{:html=>"html"},
65
- :m3d=>{:html=>"html", :doc=>"doc"},
66
- :rsd=>{:html=>"html"}
67
- }
68
- In addition, xml (outside of rfc2, rfc3) generates IsoDoc XML. If the argument is "all" or the option is
69
- missing, all available extensions are generated.
70
- -f, --format FORMAT Format of source file: asciidoc (current default, only format supported)
71
- -r, --require LIBRARY Require LIBRARY prior to execution
72
- -w, --wrapper Create wrapper folder for HTML output
73
- -h, --help Show this message
54
+ $ metanorma help
55
+ Commands:
56
+ metanorma collection FILENAME -w, --output-folder=OUTPUT_FOLDER # Render HTML pages from XML/YAML colection
57
+ metanorma compile FILENAME # Compile to a metanorma document
58
+ metanorma config # Manage configuration file
59
+ metanorma help [COMMAND] # Describe available commands or one specific command
60
+ metanorma list-doctypes # List supported doctypes
61
+ metanorma list-extensions # List supported extensions
62
+ metanorma new NAME -d, --doctype=DOCTYPE -t, --type=TYPE # Create new Metanorma document
63
+ metanorma site # Manage site for metanorma collections
64
+ metanorma template-repo # Manage metanorma templates repository
65
+ metanorma version # Version of the code
66
+
67
+ Options:
68
+ -s, [--no-progress], [--no-no-progress] # Don't show progress for long running tasks (like download)
69
+ # Default: true
74
70
  ----
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module Cli
3
- VERSION = "1.4.17pre".freeze
3
+ VERSION = "1.5.0pre".freeze
4
4
  end
5
5
  end
@@ -36,27 +36,27 @@ Gem::Specification.new do |spec|
36
36
  spec.add_development_dependency "rubocop", "~> 1.5.2"
37
37
  spec.add_development_dependency "sassc"
38
38
 
39
- spec.add_runtime_dependency "metanorma-ietf", "~> 2.4.0"
40
- spec.add_runtime_dependency "metanorma-iso", "~> 1.9.0"
39
+ spec.add_runtime_dependency "metanorma-ietf", "~> 2.5.0"
40
+ spec.add_runtime_dependency "metanorma-iso", "~> 1.10.0"
41
41
  spec.add_runtime_dependency "thor", "~> 1.0"
42
42
  # spec.add_runtime_dependency "metanorma-gb", "~> 1.5.0"
43
- spec.add_runtime_dependency "metanorma-cc", "~> 1.7.0"
44
- spec.add_runtime_dependency "metanorma-csa", "~> 1.8.0"
45
- spec.add_runtime_dependency "metanorma-iec", "~> 1.3.0"
43
+ spec.add_runtime_dependency "metanorma-cc", "~> 1.8.0"
44
+ spec.add_runtime_dependency "metanorma-csa", "~> 1.9.0"
45
+ spec.add_runtime_dependency "metanorma-iec", "~> 1.4.0"
46
46
  # spec.add_runtime_dependency 'metanorma-ribose', "~> 1.6.0"
47
- spec.add_runtime_dependency "metanorma-bipm", "~> 1.1.5"
48
- spec.add_runtime_dependency "metanorma-generic", "~> 1.10.2"
49
- spec.add_runtime_dependency "metanorma-m3aawg", "~> 1.7.0"
50
- spec.add_runtime_dependency "metanorma-standoc", "~> 1.10.0"
47
+ spec.add_runtime_dependency "metanorma-bipm", "~> 1.2.0"
48
+ spec.add_runtime_dependency "metanorma-generic", "~> 1.11.0"
49
+ spec.add_runtime_dependency "metanorma-m3aawg", "~> 1.8.0"
50
+ spec.add_runtime_dependency "metanorma-standoc", "~> 1.11.0"
51
51
  # spec.add_runtime_dependency 'metanorma-mpfa', "~> 0.5.0"
52
52
  spec.add_runtime_dependency "git", "~> 1.5"
53
53
  spec.add_runtime_dependency "isodoc", ">= 1.7.0"
54
- spec.add_runtime_dependency "metanorma", "~> 1.3.0"
55
- spec.add_runtime_dependency "metanorma-iho", "~> 0.3.0"
56
- spec.add_runtime_dependency "metanorma-itu", "~> 1.3.0"
54
+ spec.add_runtime_dependency "metanorma", "~> 1.4.0"
55
+ spec.add_runtime_dependency "metanorma-iho", "~> 0.4.0"
56
+ spec.add_runtime_dependency "metanorma-itu", "~> 1.4.0"
57
57
  # spec.add_runtime_dependency "metanorma-nist", "~> 1.3.0"
58
- spec.add_runtime_dependency "metanorma-ogc", "~> 1.4.0"
59
- spec.add_runtime_dependency "metanorma-un", "~> 0.6.0"
58
+ spec.add_runtime_dependency "metanorma-ogc", "~> 1.5.0"
59
+ spec.add_runtime_dependency "metanorma-un", "~> 0.7.0"
60
60
  spec.add_runtime_dependency "relaton-cli", ">= 0.8.2"
61
61
 
62
62
  spec.add_runtime_dependency "socksify"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.17pre
4
+ version: 1.5.0pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-09-27 00:00:00.000000000 Z
11
+ date: 2021-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: byebug
@@ -170,28 +170,28 @@ dependencies:
170
170
  requirements:
171
171
  - - "~>"
172
172
  - !ruby/object:Gem::Version
173
- version: 2.4.0
173
+ version: 2.5.0
174
174
  type: :runtime
175
175
  prerelease: false
176
176
  version_requirements: !ruby/object:Gem::Requirement
177
177
  requirements:
178
178
  - - "~>"
179
179
  - !ruby/object:Gem::Version
180
- version: 2.4.0
180
+ version: 2.5.0
181
181
  - !ruby/object:Gem::Dependency
182
182
  name: metanorma-iso
183
183
  requirement: !ruby/object:Gem::Requirement
184
184
  requirements:
185
185
  - - "~>"
186
186
  - !ruby/object:Gem::Version
187
- version: 1.9.0
187
+ version: 1.10.0
188
188
  type: :runtime
189
189
  prerelease: false
190
190
  version_requirements: !ruby/object:Gem::Requirement
191
191
  requirements:
192
192
  - - "~>"
193
193
  - !ruby/object:Gem::Version
194
- version: 1.9.0
194
+ version: 1.10.0
195
195
  - !ruby/object:Gem::Dependency
196
196
  name: thor
197
197
  requirement: !ruby/object:Gem::Requirement
@@ -212,98 +212,98 @@ dependencies:
212
212
  requirements:
213
213
  - - "~>"
214
214
  - !ruby/object:Gem::Version
215
- version: 1.7.0
215
+ version: 1.8.0
216
216
  type: :runtime
217
217
  prerelease: false
218
218
  version_requirements: !ruby/object:Gem::Requirement
219
219
  requirements:
220
220
  - - "~>"
221
221
  - !ruby/object:Gem::Version
222
- version: 1.7.0
222
+ version: 1.8.0
223
223
  - !ruby/object:Gem::Dependency
224
224
  name: metanorma-csa
225
225
  requirement: !ruby/object:Gem::Requirement
226
226
  requirements:
227
227
  - - "~>"
228
228
  - !ruby/object:Gem::Version
229
- version: 1.8.0
229
+ version: 1.9.0
230
230
  type: :runtime
231
231
  prerelease: false
232
232
  version_requirements: !ruby/object:Gem::Requirement
233
233
  requirements:
234
234
  - - "~>"
235
235
  - !ruby/object:Gem::Version
236
- version: 1.8.0
236
+ version: 1.9.0
237
237
  - !ruby/object:Gem::Dependency
238
238
  name: metanorma-iec
239
239
  requirement: !ruby/object:Gem::Requirement
240
240
  requirements:
241
241
  - - "~>"
242
242
  - !ruby/object:Gem::Version
243
- version: 1.3.0
243
+ version: 1.4.0
244
244
  type: :runtime
245
245
  prerelease: false
246
246
  version_requirements: !ruby/object:Gem::Requirement
247
247
  requirements:
248
248
  - - "~>"
249
249
  - !ruby/object:Gem::Version
250
- version: 1.3.0
250
+ version: 1.4.0
251
251
  - !ruby/object:Gem::Dependency
252
252
  name: metanorma-bipm
253
253
  requirement: !ruby/object:Gem::Requirement
254
254
  requirements:
255
255
  - - "~>"
256
256
  - !ruby/object:Gem::Version
257
- version: 1.1.5
257
+ version: 1.2.0
258
258
  type: :runtime
259
259
  prerelease: false
260
260
  version_requirements: !ruby/object:Gem::Requirement
261
261
  requirements:
262
262
  - - "~>"
263
263
  - !ruby/object:Gem::Version
264
- version: 1.1.5
264
+ version: 1.2.0
265
265
  - !ruby/object:Gem::Dependency
266
266
  name: metanorma-generic
267
267
  requirement: !ruby/object:Gem::Requirement
268
268
  requirements:
269
269
  - - "~>"
270
270
  - !ruby/object:Gem::Version
271
- version: 1.10.2
271
+ version: 1.11.0
272
272
  type: :runtime
273
273
  prerelease: false
274
274
  version_requirements: !ruby/object:Gem::Requirement
275
275
  requirements:
276
276
  - - "~>"
277
277
  - !ruby/object:Gem::Version
278
- version: 1.10.2
278
+ version: 1.11.0
279
279
  - !ruby/object:Gem::Dependency
280
280
  name: metanorma-m3aawg
281
281
  requirement: !ruby/object:Gem::Requirement
282
282
  requirements:
283
283
  - - "~>"
284
284
  - !ruby/object:Gem::Version
285
- version: 1.7.0
285
+ version: 1.8.0
286
286
  type: :runtime
287
287
  prerelease: false
288
288
  version_requirements: !ruby/object:Gem::Requirement
289
289
  requirements:
290
290
  - - "~>"
291
291
  - !ruby/object:Gem::Version
292
- version: 1.7.0
292
+ version: 1.8.0
293
293
  - !ruby/object:Gem::Dependency
294
294
  name: metanorma-standoc
295
295
  requirement: !ruby/object:Gem::Requirement
296
296
  requirements:
297
297
  - - "~>"
298
298
  - !ruby/object:Gem::Version
299
- version: 1.10.0
299
+ version: 1.11.0
300
300
  type: :runtime
301
301
  prerelease: false
302
302
  version_requirements: !ruby/object:Gem::Requirement
303
303
  requirements:
304
304
  - - "~>"
305
305
  - !ruby/object:Gem::Version
306
- version: 1.10.0
306
+ version: 1.11.0
307
307
  - !ruby/object:Gem::Dependency
308
308
  name: git
309
309
  requirement: !ruby/object:Gem::Requirement
@@ -338,70 +338,70 @@ dependencies:
338
338
  requirements:
339
339
  - - "~>"
340
340
  - !ruby/object:Gem::Version
341
- version: 1.3.0
341
+ version: 1.4.0
342
342
  type: :runtime
343
343
  prerelease: false
344
344
  version_requirements: !ruby/object:Gem::Requirement
345
345
  requirements:
346
346
  - - "~>"
347
347
  - !ruby/object:Gem::Version
348
- version: 1.3.0
348
+ version: 1.4.0
349
349
  - !ruby/object:Gem::Dependency
350
350
  name: metanorma-iho
351
351
  requirement: !ruby/object:Gem::Requirement
352
352
  requirements:
353
353
  - - "~>"
354
354
  - !ruby/object:Gem::Version
355
- version: 0.3.0
355
+ version: 0.4.0
356
356
  type: :runtime
357
357
  prerelease: false
358
358
  version_requirements: !ruby/object:Gem::Requirement
359
359
  requirements:
360
360
  - - "~>"
361
361
  - !ruby/object:Gem::Version
362
- version: 0.3.0
362
+ version: 0.4.0
363
363
  - !ruby/object:Gem::Dependency
364
364
  name: metanorma-itu
365
365
  requirement: !ruby/object:Gem::Requirement
366
366
  requirements:
367
367
  - - "~>"
368
368
  - !ruby/object:Gem::Version
369
- version: 1.3.0
369
+ version: 1.4.0
370
370
  type: :runtime
371
371
  prerelease: false
372
372
  version_requirements: !ruby/object:Gem::Requirement
373
373
  requirements:
374
374
  - - "~>"
375
375
  - !ruby/object:Gem::Version
376
- version: 1.3.0
376
+ version: 1.4.0
377
377
  - !ruby/object:Gem::Dependency
378
378
  name: metanorma-ogc
379
379
  requirement: !ruby/object:Gem::Requirement
380
380
  requirements:
381
381
  - - "~>"
382
382
  - !ruby/object:Gem::Version
383
- version: 1.4.0
383
+ version: 1.5.0
384
384
  type: :runtime
385
385
  prerelease: false
386
386
  version_requirements: !ruby/object:Gem::Requirement
387
387
  requirements:
388
388
  - - "~>"
389
389
  - !ruby/object:Gem::Version
390
- version: 1.4.0
390
+ version: 1.5.0
391
391
  - !ruby/object:Gem::Dependency
392
392
  name: metanorma-un
393
393
  requirement: !ruby/object:Gem::Requirement
394
394
  requirements:
395
395
  - - "~>"
396
396
  - !ruby/object:Gem::Version
397
- version: 0.6.0
397
+ version: 0.7.0
398
398
  type: :runtime
399
399
  prerelease: false
400
400
  version_requirements: !ruby/object:Gem::Requirement
401
401
  requirements:
402
402
  - - "~>"
403
403
  - !ruby/object:Gem::Version
404
- version: 0.6.0
404
+ version: 0.7.0
405
405
  - !ruby/object:Gem::Dependency
406
406
  name: relaton-cli
407
407
  requirement: !ruby/object:Gem::Requirement
@@ -513,7 +513,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
513
513
  - !ruby/object:Gem::Version
514
514
  version: 1.3.1
515
515
  requirements: []
516
- rubygems_version: 3.1.4
516
+ rubygems_version: 3.2.22
517
517
  signing_key:
518
518
  specification_version: 4
519
519
  summary: Metanorma is the standard of standards; the metanorma gem allows you to create