convection 2.2.17 → 2.2.18
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/bin/convection +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1d941d2062593d23a03bb6297c10937b7a90e22e
|
|
4
|
+
data.tar.gz: da3122f8e748f7dfc3007293454b3db26db44ce4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a83ae7143903925990f305f8974c6c9d19779bf3d82a15629695ecf7f702d4e21d783af899c1a20821d5b786eff9470e3d0ee9e5431760dba581240a80b5f59
|
|
7
|
+
data.tar.gz: 48363a5f19cb74c0034caf4a57d01818d4bda970a98766f6d047099117694513ec0a3a57eddf77f01e9fa6c41305b880b955c0519bde3973b6a4d0760f02654d
|
data/bin/convection
CHANGED
|
@@ -508,7 +508,7 @@ module Convection
|
|
|
508
508
|
Array(errors).flatten.compact.each do |error|
|
|
509
509
|
error = RuntimeError.new(error) if error.is_a?(String)
|
|
510
510
|
say "* #{ error.message }"
|
|
511
|
-
error.backtrace.each { |trace| say " #{ trace }" }
|
|
511
|
+
Array(error.backtrace).each { |trace| say " #{ trace }" }
|
|
512
512
|
end
|
|
513
513
|
end
|
|
514
514
|
|