metanorma-cli 1.1.8 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,23 +1,20 @@
1
1
  #!make
2
2
 
3
- include metanorma.env
4
- export $(shell sed 's/=.*//' metanorma.env)
5
-
6
- FORMATS := $(METANORMA_FORMATS)
7
- comma := ,
8
- empty :=
9
- space := $(empty) $(empty)
3
+ FORMAT_MARKER := mn-output-
4
+ FORMATS := $(shell grep "$(FORMAT_MARKER)" *.adoc | cut -f 2 -d ' ' | tr ',' '\n' | sort | uniq | tr '\n' ' ')
10
5
 
11
6
  SRC := $(filter-out README.adoc, $(wildcard *.adoc))
12
7
  XML := $(patsubst %.adoc,%.xml,$(SRC))
13
8
  HTML := $(patsubst %.adoc,%.html,$(SRC))
14
9
  DOC := $(patsubst %.adoc,%.doc,$(SRC))
15
10
  PDF := $(patsubst %.adoc,%.pdf,$(SRC))
16
- RXL := $(patsubst %.adoc,%.rxl,$(SRC))
11
+ WSD := $(wildcard models/*.wsd)
12
+ XMI := $(patsubst models/%,xmi/%,$(patsubst %.wsd,%.xmi,$(WSD)))
13
+ PNG := $(patsubst models/%,images/%,$(patsubst %.wsd,%.png,$(WSD)))
17
14
 
18
15
  HOST_SHARE_DIR=$(USERPROFILE)\$(shell for %%I in (.) do echo %%~nxI)
19
- COMPILE_CMD_LOCAL := bundle exec metanorma -R $(RXL) $(SRC)
20
- COMPILE_CMD_DOCKER := C:/ProgramData/chocolatey/bin/docker run --rm -it -v $(CURDIR):/metanorma/ ribose/metanorma "metanorma -R $(RXL) $(SRC)"
16
+ COMPILE_CMD_LOCAL := bundle exec metanorma $(SRC)
17
+ COMPILE_CMD_DOCKER := docker run --rm -it -v $(CURDIR):/metanorma/ ribose/metanorma "metanorma $(SRC)"
21
18
 
22
19
  ifdef METANORMA_DOCKER
23
20
  COMPILE_CMD := echo "Compiling via docker..." & $(COMPILE_CMD_DOCKER)
@@ -33,6 +30,16 @@ all: $(OUT_FILES)
33
30
  %.xml %.html %.doc %.pdf: %.adoc | bundle
34
31
  ${COMPILE_CMD}
35
32
 
33
+ images: $(PNG)
34
+
35
+ images/%.png: models/%.wsd
36
+ plantuml -tpng -o ../images/ $<
37
+
38
+ xmi: $(XMI)
39
+
40
+ xmi/%.xmi: models/%.wsd
41
+ plantuml -xmi:star -o ../xmi/ $<
42
+
36
43
  define FORMAT_TASKS
37
44
  OUT_FILES-$(FORMAT) := $($(shell echo $(FORMAT) | tr '[:lower:]' '[:upper:]'))
38
45
 
@@ -50,8 +57,6 @@ endef
50
57
 
51
58
  $(foreach FORMAT,$(FORMATS),$(eval $(FORMAT_TASKS)))
52
59
 
53
- # open: $(foreach FORMAT,$(FORMATS),open-$(FORMAT))
54
-
55
60
  open: open-html
56
61
 
57
62
  clean:
@@ -60,4 +65,52 @@ clean:
60
65
  bundle:
61
66
  IF "" == "${METANORMA_DOCKER}" bundle
62
67
 
63
- .PHONY: bundle all open clean
68
+ .PHONY: bundle all open clean
69
+
70
+ #
71
+ # Watch-related jobs
72
+ #
73
+
74
+ .PHONY: watch serve watch-serve
75
+
76
+ NODE_BINS := onchange live-serve run-p
77
+ NODE_BIN_DIR := node_modules/.bin
78
+ NODE_PACKAGE_PATHS := $(foreach PACKAGE_NAME,$(NODE_BINS),$(NODE_BIN_DIR)/$(PACKAGE_NAME))
79
+
80
+ $(NODE_PACKAGE_PATHS): package.json
81
+ npm i
82
+
83
+ watch: $(NODE_BIN_DIR)/onchange
84
+ make all
85
+ $< $(ALL_SRC) -- make all
86
+
87
+ define WATCH_TASKS
88
+ watch-$(FORMAT): $(NODE_BIN_DIR)/onchange
89
+ make $(FORMAT)
90
+ $$< $$(SRC_$(FORMAT)) -- make $(FORMAT)
91
+
92
+ .PHONY: watch-$(FORMAT)
93
+ endef
94
+
95
+ $(foreach FORMAT,$(FORMATS),$(eval $(WATCH_TASKS)))
96
+
97
+ serve: $(NODE_BIN_DIR)/live-server revealjs-css reveal.js images
98
+ set PORT=$${PORT:-8123} & \
99
+ set port=$${PORT} & \
100
+ for /r %%html in $(HTML) do ( \
101
+ $< --entry-file=%%html --port=%port% --ignore="*.html,*.xml,Makefile,Gemfile.*,package.*.json" --wait=1000 & \
102
+ set /A port=%port%+1 \
103
+ )
104
+
105
+ watch-serve: $(NODE_BIN_DIR)/run-p
106
+ $< watch serve
107
+
108
+ #
109
+ # Deploy jobs
110
+ #
111
+
112
+ publish:
113
+ mkdir -p published
114
+ xcopy $(basename $(SRC)).* published
115
+ copy $(firstword $(HTML)) published\index.html
116
+ IF EXIST "images" xcopy /E images published
@@ -1,23 +1,20 @@
1
1
  #!make
2
2
 
3
- include metanorma.env
4
- export $(shell sed 's/=.*//' metanorma.env)
5
-
6
- FORMATS := $(METANORMA_FORMATS)
7
- comma := ,
8
- empty :=
9
- space := $(empty) $(empty)
3
+ FORMAT_MARKER := mn-output-
4
+ FORMATS := $(shell grep "$(FORMAT_MARKER)" *.adoc | cut -f 2 -d ' ' | tr ',' '\n' | sort | uniq | tr '\n' ' ')
10
5
 
11
6
  SRC := $(filter-out README.adoc, $(wildcard *.adoc))
12
7
  XML := $(patsubst %.adoc,%.xml,$(SRC))
13
8
  HTML := $(patsubst %.adoc,%.html,$(SRC))
14
9
  DOC := $(patsubst %.adoc,%.doc,$(SRC))
15
10
  PDF := $(patsubst %.adoc,%.pdf,$(SRC))
16
- RXL := $(patsubst %.adoc,%.rxl,$(SRC))
11
+ WSD := $(wildcard models/*.wsd)
12
+ XMI := $(patsubst models/%,xmi/%,$(patsubst %.wsd,%.xmi,$(WSD)))
13
+ PNG := $(patsubst models/%,images/%,$(patsubst %.wsd,%.png,$(WSD)))
17
14
 
18
15
  HOST_SHARE_DIR=$(USERPROFILE)\$(shell for %%I in (.) do echo %%~nxI)
19
- COMPILE_CMD_LOCAL := bundle exec metanorma -R $(RXL) $(SRC)
20
- COMPILE_CMD_DOCKER := C:/ProgramData/chocolatey/bin/docker run --rm -it -v $(CURDIR):/metanorma/ ribose/metanorma "metanorma -R $(RXL) $(SRC)"
16
+ COMPILE_CMD_LOCAL := bundle exec metanorma $(SRC)
17
+ COMPILE_CMD_DOCKER := docker run --rm -it -v $(CURDIR):/metanorma/ ribose/metanorma "metanorma $(SRC)"
21
18
 
22
19
  ifdef METANORMA_DOCKER
23
20
  COMPILE_CMD := echo "Compiling via docker..." & $(COMPILE_CMD_DOCKER)
@@ -33,6 +30,16 @@ all: $(OUT_FILES)
33
30
  %.xml %.html %.doc %.pdf: %.adoc | bundle
34
31
  ${COMPILE_CMD}
35
32
 
33
+ images: $(PNG)
34
+
35
+ images/%.png: models/%.wsd
36
+ plantuml -tpng -o ../images/ $<
37
+
38
+ xmi: $(XMI)
39
+
40
+ xmi/%.xmi: models/%.wsd
41
+ plantuml -xmi:star -o ../xmi/ $<
42
+
36
43
  define FORMAT_TASKS
37
44
  OUT_FILES-$(FORMAT) := $($(shell echo $(FORMAT) | tr '[:lower:]' '[:upper:]'))
38
45
 
@@ -50,8 +57,6 @@ endef
50
57
 
51
58
  $(foreach FORMAT,$(FORMATS),$(eval $(FORMAT_TASKS)))
52
59
 
53
- # open: $(foreach FORMAT,$(FORMATS),open-$(FORMAT))
54
-
55
60
  open: open-html
56
61
 
57
62
  clean:
@@ -60,4 +65,52 @@ clean:
60
65
  bundle:
61
66
  IF "" == "${METANORMA_DOCKER}" bundle
62
67
 
63
- .PHONY: bundle all open clean
68
+ .PHONY: bundle all open clean
69
+
70
+ #
71
+ # Watch-related jobs
72
+ #
73
+
74
+ .PHONY: watch serve watch-serve
75
+
76
+ NODE_BINS := onchange live-serve run-p
77
+ NODE_BIN_DIR := node_modules/.bin
78
+ NODE_PACKAGE_PATHS := $(foreach PACKAGE_NAME,$(NODE_BINS),$(NODE_BIN_DIR)/$(PACKAGE_NAME))
79
+
80
+ $(NODE_PACKAGE_PATHS): package.json
81
+ npm i
82
+
83
+ watch: $(NODE_BIN_DIR)/onchange
84
+ make all
85
+ $< $(ALL_SRC) -- make all
86
+
87
+ define WATCH_TASKS
88
+ watch-$(FORMAT): $(NODE_BIN_DIR)/onchange
89
+ make $(FORMAT)
90
+ $$< $$(SRC_$(FORMAT)) -- make $(FORMAT)
91
+
92
+ .PHONY: watch-$(FORMAT)
93
+ endef
94
+
95
+ $(foreach FORMAT,$(FORMATS),$(eval $(WATCH_TASKS)))
96
+
97
+ serve: $(NODE_BIN_DIR)/live-server revealjs-css reveal.js images
98
+ set PORT=$${PORT:-8123} & \
99
+ set port=$${PORT} & \
100
+ for /r %%html in $(HTML) do ( \
101
+ $< --entry-file=%%html --port=%port% --ignore="*.html,*.xml,Makefile,Gemfile.*,package.*.json" --wait=1000 & \
102
+ set /A port=%port%+1 \
103
+ )
104
+
105
+ watch-serve: $(NODE_BIN_DIR)/run-p
106
+ $< watch serve
107
+
108
+ #
109
+ # Deploy jobs
110
+ #
111
+
112
+ publish:
113
+ mkdir -p published
114
+ xcopy $(basename $(SRC)).* published
115
+ copy $(firstword $(HTML)) published\index.html
116
+ IF EXIST "images" xcopy /E images published
@@ -1,23 +1,20 @@
1
1
  #!make
2
2
 
3
- include metanorma.env
4
- export $(shell sed 's/=.*//' metanorma.env)
5
-
6
- FORMATS := $(METANORMA_FORMATS)
7
- comma := ,
8
- empty :=
9
- space := $(empty) $(empty)
3
+ FORMAT_MARKER := mn-output-
4
+ FORMATS := $(shell grep "$(FORMAT_MARKER)" *.adoc | cut -f 2 -d ' ' | tr ',' '\n' | sort | uniq | tr '\n' ' ')
10
5
 
11
6
  SRC := $(filter-out README.adoc, $(wildcard *.adoc))
12
7
  XML := $(patsubst %.adoc,%.xml,$(SRC))
13
8
  HTML := $(patsubst %.adoc,%.html,$(SRC))
14
9
  DOC := $(patsubst %.adoc,%.doc,$(SRC))
15
10
  PDF := $(patsubst %.adoc,%.pdf,$(SRC))
16
- RXL := $(patsubst %.adoc,%.rxl,$(SRC))
11
+ WSD := $(wildcard models/*.wsd)
12
+ XMI := $(patsubst models/%,xmi/%,$(patsubst %.wsd,%.xmi,$(WSD)))
13
+ PNG := $(patsubst models/%,images/%,$(patsubst %.wsd,%.png,$(WSD)))
17
14
 
18
15
  HOST_SHARE_DIR=$(USERPROFILE)\$(shell for %%I in (.) do echo %%~nxI)
19
- COMPILE_CMD_LOCAL := bundle exec metanorma -R $(RXL) $(SRC)
20
- COMPILE_CMD_DOCKER := C:/ProgramData/chocolatey/bin/docker run --rm -it -v $(CURDIR):/metanorma/ ribose/metanorma "metanorma -R $(RXL) $(SRC)"
16
+ COMPILE_CMD_LOCAL := bundle exec metanorma $(SRC)
17
+ COMPILE_CMD_DOCKER := docker run --rm -it -v $(CURDIR):/metanorma/ ribose/metanorma "metanorma $(SRC)"
21
18
 
22
19
  ifdef METANORMA_DOCKER
23
20
  COMPILE_CMD := echo "Compiling via docker..." & $(COMPILE_CMD_DOCKER)
@@ -33,6 +30,16 @@ all: $(OUT_FILES)
33
30
  %.xml %.html %.doc %.pdf: %.adoc | bundle
34
31
  ${COMPILE_CMD}
35
32
 
33
+ images: $(PNG)
34
+
35
+ images/%.png: models/%.wsd
36
+ plantuml -tpng -o ../images/ $<
37
+
38
+ xmi: $(XMI)
39
+
40
+ xmi/%.xmi: models/%.wsd
41
+ plantuml -xmi:star -o ../xmi/ $<
42
+
36
43
  define FORMAT_TASKS
37
44
  OUT_FILES-$(FORMAT) := $($(shell echo $(FORMAT) | tr '[:lower:]' '[:upper:]'))
38
45
 
@@ -50,8 +57,6 @@ endef
50
57
 
51
58
  $(foreach FORMAT,$(FORMATS),$(eval $(FORMAT_TASKS)))
52
59
 
53
- # open: $(foreach FORMAT,$(FORMATS),open-$(FORMAT))
54
-
55
60
  open: open-html
56
61
 
57
62
  clean:
@@ -60,4 +65,52 @@ clean:
60
65
  bundle:
61
66
  IF "" == "${METANORMA_DOCKER}" bundle
62
67
 
63
- .PHONY: bundle all open clean
68
+ .PHONY: bundle all open clean
69
+
70
+ #
71
+ # Watch-related jobs
72
+ #
73
+
74
+ .PHONY: watch serve watch-serve
75
+
76
+ NODE_BINS := onchange live-serve run-p
77
+ NODE_BIN_DIR := node_modules/.bin
78
+ NODE_PACKAGE_PATHS := $(foreach PACKAGE_NAME,$(NODE_BINS),$(NODE_BIN_DIR)/$(PACKAGE_NAME))
79
+
80
+ $(NODE_PACKAGE_PATHS): package.json
81
+ npm i
82
+
83
+ watch: $(NODE_BIN_DIR)/onchange
84
+ make all
85
+ $< $(ALL_SRC) -- make all
86
+
87
+ define WATCH_TASKS
88
+ watch-$(FORMAT): $(NODE_BIN_DIR)/onchange
89
+ make $(FORMAT)
90
+ $$< $$(SRC_$(FORMAT)) -- make $(FORMAT)
91
+
92
+ .PHONY: watch-$(FORMAT)
93
+ endef
94
+
95
+ $(foreach FORMAT,$(FORMATS),$(eval $(WATCH_TASKS)))
96
+
97
+ serve: $(NODE_BIN_DIR)/live-server revealjs-css reveal.js images
98
+ set PORT=$${PORT:-8123} & \
99
+ set port=$${PORT} & \
100
+ for /r %%html in $(HTML) do ( \
101
+ $< --entry-file=%%html --port=%port% --ignore="*.html,*.xml,Makefile,Gemfile.*,package.*.json" --wait=1000 & \
102
+ set /A port=%port%+1 \
103
+ )
104
+
105
+ watch-serve: $(NODE_BIN_DIR)/run-p
106
+ $< watch serve
107
+
108
+ #
109
+ # Deploy jobs
110
+ #
111
+
112
+ publish:
113
+ mkdir -p published
114
+ xcopy $(basename $(SRC)).* published
115
+ copy $(firstword $(HTML)) published\index.html
116
+ IF EXIST "images" xcopy /E images published
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.1.8
4
+ version: 1.2.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: 2019-05-06 00:00:00.000000000 Z
11
+ date: 2019-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -128,14 +128,14 @@ dependencies:
128
128
  requirements:
129
129
  - - "~>"
130
130
  - !ruby/object:Gem::Version
131
- version: 1.1.0
131
+ version: 1.2.0
132
132
  type: :runtime
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - "~>"
137
137
  - !ruby/object:Gem::Version
138
- version: 1.1.0
138
+ version: 1.2.0
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: metanorma-ietf
141
141
  requirement: !ruby/object:Gem::Requirement
@@ -156,100 +156,86 @@ dependencies:
156
156
  requirements:
157
157
  - - "~>"
158
158
  - !ruby/object:Gem::Version
159
- version: 1.1.0
159
+ version: 1.2.0
160
160
  type: :runtime
161
161
  prerelease: false
162
162
  version_requirements: !ruby/object:Gem::Requirement
163
163
  requirements:
164
164
  - - "~>"
165
165
  - !ruby/object:Gem::Version
166
- version: 1.1.0
166
+ version: 1.2.0
167
167
  - !ruby/object:Gem::Dependency
168
168
  name: metanorma-csd
169
169
  requirement: !ruby/object:Gem::Requirement
170
170
  requirements:
171
171
  - - "~>"
172
172
  - !ruby/object:Gem::Version
173
- version: 1.1.0
173
+ version: 1.2.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: 1.1.0
180
+ version: 1.2.0
181
181
  - !ruby/object:Gem::Dependency
182
182
  name: metanorma-csand
183
183
  requirement: !ruby/object:Gem::Requirement
184
184
  requirements:
185
185
  - - "~>"
186
186
  - !ruby/object:Gem::Version
187
- version: 1.1.0
187
+ version: 1.2.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.1.0
195
- - !ruby/object:Gem::Dependency
196
- name: metanorma-rsd
197
- requirement: !ruby/object:Gem::Requirement
198
- requirements:
199
- - - "~>"
200
- - !ruby/object:Gem::Version
201
- version: 1.1.0
202
- type: :runtime
203
- prerelease: false
204
- version_requirements: !ruby/object:Gem::Requirement
205
- requirements:
206
- - - "~>"
207
- - !ruby/object:Gem::Version
208
- version: 1.1.0
194
+ version: 1.2.0
209
195
  - !ruby/object:Gem::Dependency
210
196
  name: metanorma-m3d
211
197
  requirement: !ruby/object:Gem::Requirement
212
198
  requirements:
213
199
  - - "~>"
214
200
  - !ruby/object:Gem::Version
215
- version: 1.1.0
201
+ version: 1.2.0
216
202
  type: :runtime
217
203
  prerelease: false
218
204
  version_requirements: !ruby/object:Gem::Requirement
219
205
  requirements:
220
206
  - - "~>"
221
207
  - !ruby/object:Gem::Version
222
- version: 1.1.0
208
+ version: 1.2.0
223
209
  - !ruby/object:Gem::Dependency
224
210
  name: metanorma-acme
225
211
  requirement: !ruby/object:Gem::Requirement
226
212
  requirements:
227
213
  - - "~>"
228
214
  - !ruby/object:Gem::Version
229
- version: 1.1.0
215
+ version: 1.2.0
230
216
  type: :runtime
231
217
  prerelease: false
232
218
  version_requirements: !ruby/object:Gem::Requirement
233
219
  requirements:
234
220
  - - "~>"
235
221
  - !ruby/object:Gem::Version
236
- version: 1.1.0
222
+ version: 1.2.0
237
223
  - !ruby/object:Gem::Dependency
238
224
  name: metanorma-standoc
239
225
  requirement: !ruby/object:Gem::Requirement
240
226
  requirements:
241
227
  - - "~>"
242
228
  - !ruby/object:Gem::Version
243
- version: 1.1.0
229
+ version: 1.2.0
244
230
  type: :runtime
245
231
  prerelease: false
246
232
  version_requirements: !ruby/object:Gem::Requirement
247
233
  requirements:
248
234
  - - "~>"
249
235
  - !ruby/object:Gem::Version
250
- version: 1.1.0
236
+ version: 1.2.0
251
237
  - !ruby/object:Gem::Dependency
252
- name: metanorma-mpfd
238
+ name: metanorma-unece
253
239
  requirement: !ruby/object:Gem::Requirement
254
240
  requirements:
255
241
  - - "~>"
@@ -262,62 +248,48 @@ dependencies:
262
248
  - - "~>"
263
249
  - !ruby/object:Gem::Version
264
250
  version: 0.1.0
265
- - !ruby/object:Gem::Dependency
266
- name: metanorma-unece
267
- requirement: !ruby/object:Gem::Requirement
268
- requirements:
269
- - - "~>"
270
- - !ruby/object:Gem::Version
271
- version: 0.0.1
272
- type: :runtime
273
- prerelease: false
274
- version_requirements: !ruby/object:Gem::Requirement
275
- requirements:
276
- - - "~>"
277
- - !ruby/object:Gem::Version
278
- version: 0.0.1
279
251
  - !ruby/object:Gem::Dependency
280
252
  name: metanorma-ogc
281
253
  requirement: !ruby/object:Gem::Requirement
282
254
  requirements:
283
255
  - - "~>"
284
256
  - !ruby/object:Gem::Version
285
- version: 0.0.1
257
+ version: 0.1.0
286
258
  type: :runtime
287
259
  prerelease: false
288
260
  version_requirements: !ruby/object:Gem::Requirement
289
261
  requirements:
290
262
  - - "~>"
291
263
  - !ruby/object:Gem::Version
292
- version: 0.0.1
264
+ version: 0.1.0
293
265
  - !ruby/object:Gem::Dependency
294
266
  name: metanorma-nist
295
267
  requirement: !ruby/object:Gem::Requirement
296
268
  requirements:
297
269
  - - "~>"
298
270
  - !ruby/object:Gem::Version
299
- version: 0.0.1
271
+ version: 0.1.0
300
272
  type: :runtime
301
273
  prerelease: false
302
274
  version_requirements: !ruby/object:Gem::Requirement
303
275
  requirements:
304
276
  - - "~>"
305
277
  - !ruby/object:Gem::Version
306
- version: 0.0.1
278
+ version: 0.1.0
307
279
  - !ruby/object:Gem::Dependency
308
280
  name: isodoc
309
281
  requirement: !ruby/object:Gem::Requirement
310
282
  requirements:
311
283
  - - "~>"
312
284
  - !ruby/object:Gem::Version
313
- version: 0.9.0
285
+ version: 0.10.0
314
286
  type: :runtime
315
287
  prerelease: false
316
288
  version_requirements: !ruby/object:Gem::Requirement
317
289
  requirements:
318
290
  - - "~>"
319
291
  - !ruby/object:Gem::Version
320
- version: 0.9.0
292
+ version: 0.10.0
321
293
  - !ruby/object:Gem::Dependency
322
294
  name: metanorma
323
295
  requirement: !ruby/object:Gem::Requirement
@@ -381,6 +353,7 @@ files:
381
353
  - a
382
354
  - a.rb
383
355
  - appveyor.yml
356
+ - b
384
357
  - bin/console
385
358
  - bin/rspec
386
359
  - bin/setup
@@ -437,7 +410,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
437
410
  requirements:
438
411
  - - ">="
439
412
  - !ruby/object:Gem::Version
440
- version: 2.3.0
413
+ version: 2.4.0
441
414
  required_rubygems_version: !ruby/object:Gem::Requirement
442
415
  requirements:
443
416
  - - ">="
@@ -445,7 +418,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
445
418
  version: '0'
446
419
  requirements: []
447
420
  rubyforge_project:
448
- rubygems_version: 2.7.6
421
+ rubygems_version: 2.7.7
449
422
  signing_key:
450
423
  specification_version: 4
451
424
  summary: Metanorma is the standard of standards; the metanorma gem allows you to create