stepmod-utils 0.4.6 → 0.4.8
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/test-concept-generation.yml +8 -1
- data/exe/stepmod-srl-migrate +3 -2
- data/lib/stepmod/utils/converters/eqn.rb +1 -0
- data/lib/stepmod/utils/converters/example.rb +1 -0
- data/lib/stepmod/utils/converters/express_note.rb +1 -0
- data/lib/stepmod/utils/converters/figure.rb +0 -1
- data/lib/stepmod/utils/converters/note.rb +1 -0
- data/lib/stepmod/utils/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 56af2e43aaa49e4c057e994a493a9c0d2c725814787d324e374593a153b94130
|
4
|
+
data.tar.gz: 79619510b0aeed2723f8559b5279ae1eb4deaa95c39d2166313a2081d37ba681
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45c66ca593d749fc7313d27f730cfe9b652b93f2528cf8895e812334b3e26e2a390c263d086c4a0a6dbed62f3fd0b68dbe341f477625a6c469a927e750012bcc
|
7
|
+
data.tar.gz: f4414a374e31493b945f1474a150e5684a3a661b72a327ebddcb8c204f28904f74446b46d87ae079993f49a44b843858c17e0cf39eaeb88aa5451e1cd61b5f7e
|
@@ -26,11 +26,18 @@ jobs:
|
|
26
26
|
token: ${{ secrets.METANORMA_CI_PAT_TOKEN }}
|
27
27
|
path: iso-10303-stepmod-wg12
|
28
28
|
|
29
|
+
- name: Generate Folders for schemas
|
30
|
+
run: mkdir schemas
|
31
|
+
|
32
|
+
- name: Generate Folders for documents
|
33
|
+
run: mkdir documents
|
34
|
+
|
29
35
|
- name: Generate Annotated EXPRESS files
|
30
36
|
run: |
|
31
37
|
bundle exec stepmod-annotate-all \
|
32
38
|
--stepmod-dir ./iso-10303-stepmod-wg12 \
|
33
|
-
--
|
39
|
+
--schemas schemas \
|
40
|
+
--documents documents
|
34
41
|
|
35
42
|
- name: Generate Concept YAML files
|
36
43
|
working-directory: iso-10303-stepmod-wg12
|
data/exe/stepmod-srl-migrate
CHANGED
@@ -149,14 +149,15 @@ log("[SRL MIGRATION] Migration starts!")
|
|
149
149
|
log("*"*30)
|
150
150
|
log("[SRL MIGRATION: stepmod2mn.jar] START SVG generation.")
|
151
151
|
log("*"*30)
|
152
|
-
system "java -Xss5m -jar #{stepmod2mn_path} #{stepmod_dir} --output #{srl_output_docs_dir} --svg"
|
152
|
+
system "java -Xss5m -jar #{stepmod2mn_path} #{stepmod_dir} --output-documents #{srl_output_docs_dir} --output-schemas #{srl_output_schemas_dir} --svg"
|
153
|
+
|
153
154
|
log("*"*30)
|
154
155
|
log("[SRL MIGRATION: stepmod2mn.jar] COMPLETE SVG generation.")
|
155
156
|
|
156
157
|
log("*"*30)
|
157
158
|
log("[SRL MIGRATION: stepmod2mn.jar] START document migration and SVG generation.")
|
158
159
|
log("*"*30)
|
159
|
-
system "java -Xss5m -jar #{stepmod2mn_path} #{stepmod_dir} --output #{srl_output_docs_dir}"
|
160
|
+
system "java -Xss5m -jar #{stepmod2mn_path} #{stepmod_dir} --output-documents #{srl_output_docs_dir} --output-schemas #{srl_output_schemas_dir}"
|
160
161
|
log("*"*30)
|
161
162
|
log("[SRL MIGRATION: stepmod2mn.jar] COMPLETE document migration and SVG generation.")
|
162
163
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stepmod-utils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-12-
|
11
|
+
date: 2023-12-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|