udb-gen 0.1.14 → 0.1.15
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 32deed08ca97c379b0a62e68cac691a56fed491de514110b0b794d9dbced54a2
|
|
4
|
+
data.tar.gz: 3a94b32ddc6c75a44464ff94e2243fa5c69afa4db2b50996591b2b90312bdc44
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5ef56c09f5b199cad17eeaee17b4062dd93614965c9754dc704b12ac238d86dd4195fc9fa41ca1bee86c3de17ccd36a47e2fd867a54cb36f4011e2f42ed7f5d3
|
|
7
|
+
data.tar.gz: 9111115d90227f05e18da539137fc6b9c3e0b80d96aa38119a04dfccf1e425ef794780833c61feab4956613b6601a018c1fb5bee941ab4824c987415c8e41795
|
|
@@ -187,7 +187,9 @@ module UdbGen
|
|
|
187
187
|
].join(" ")
|
|
188
188
|
|
|
189
189
|
Udb.logger.debug cmd
|
|
190
|
-
system
|
|
190
|
+
unless system(cmd)
|
|
191
|
+
exit_with(:software_error, "asciidoctor-pdf failed while generating #{pdf_filename}")
|
|
192
|
+
end
|
|
191
193
|
|
|
192
194
|
puts "SUCCESS! Wrote result to #{pdf_filename}"
|
|
193
195
|
end
|
|
@@ -120,6 +120,14 @@ module UdbGen
|
|
|
120
120
|
# ! mark 'num' as an invalid input for this variable
|
|
121
121
|
EOM
|
|
122
122
|
|
|
123
|
+
# Sort alphabetically by instruction mnemonic so the output is
|
|
124
|
+
# deterministic regardless of where the instruction files live (moving a
|
|
125
|
+
# file between extension directories must not change this table). Each
|
|
126
|
+
# line begins with the instruction name, so sorting the full lines orders
|
|
127
|
+
# by mnemonic and keeps an instruction's multi-row entries (e.g.
|
|
128
|
+
# "common,32"/"common,64") grouped and stably ordered.
|
|
129
|
+
lines.sort!
|
|
130
|
+
|
|
123
131
|
header + lines.join("\n") + "\n"
|
|
124
132
|
end
|
|
125
133
|
end
|
data/lib/udb-gen/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: udb-gen
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.15
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Derek Hower
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-08-
|
|
10
|
+
date: 2026-08-15 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: asciidoctor
|
|
@@ -141,14 +141,14 @@ dependencies:
|
|
|
141
141
|
requirements:
|
|
142
142
|
- - '='
|
|
143
143
|
- !ruby/object:Gem::Version
|
|
144
|
-
version: 0.1.
|
|
144
|
+
version: 0.1.16
|
|
145
145
|
type: :runtime
|
|
146
146
|
prerelease: false
|
|
147
147
|
version_requirements: !ruby/object:Gem::Requirement
|
|
148
148
|
requirements:
|
|
149
149
|
- - '='
|
|
150
150
|
- !ruby/object:Gem::Version
|
|
151
|
-
version: 0.1.
|
|
151
|
+
version: 0.1.16
|
|
152
152
|
- !ruby/object:Gem::Dependency
|
|
153
153
|
name: write_xlsx
|
|
154
154
|
requirement: !ruby/object:Gem::Requirement
|