asciidoctor-diagram 2.2.15 → 2.2.16
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.
Potentially problematic release.
This version of asciidoctor-diagram might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.adoc +6 -0
- data/lib/asciidoctor-diagram/diagram_source.rb +4 -3
- data/lib/asciidoctor-diagram/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5dfd093dfde34e811db4c81fd13bff407b0727427d4b35fddb0dc257cd6da366
|
4
|
+
data.tar.gz: 8d77d2f81168c22c6311b2f26a3c9497235359ded37664e8e3c8e92aa8c2729b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 414ba6dbfc0a7bc73870c2135aa8b01b7f340225066a59450a75801aeb40eeeb975329db0729e10fd33229ab325f06408e396e39e1d6cbb7d99565ada29aa14c
|
7
|
+
data.tar.gz: 8dccd7d208769ee8034e6d6dac12ad7c5c02a81970f371759906713fc9f898423298717cadadbe629c91b899cc17d84ff664acd67a9c3f467d6ffd11ea3167b2
|
data/CHANGELOG.adoc
CHANGED
@@ -138,9 +138,10 @@ module Asciidoctor
|
|
138
138
|
|
139
139
|
config[cmd_var] = cmd_path
|
140
140
|
|
141
|
-
|
142
|
-
|
143
|
-
|
141
|
+
end
|
142
|
+
|
143
|
+
if cmd_path.nil? && options.fetch(:raise_on_error, true)
|
144
|
+
raise "Could not find the #{cmd_names.map { |c| "'#{c}'" }.join(', ')} executable in PATH; add it to the PATH or specify its location using the '#{attr_names[0]}' document attribute"
|
144
145
|
end
|
145
146
|
|
146
147
|
cmd_path
|