backtracer 0.6.2 → 0.6.3
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.
- data/VERSION +1 -1
- data/lib/backtracer.rb +1 -1
- data/lib/backtracer_simple.rb +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.3
|
data/lib/backtracer.rb
CHANGED
@@ -35,7 +35,7 @@ at_exit {
|
|
35
35
|
$!.set_backtrace [] if $! # avoid the original backtrace being outputted--though annoyingly it does still output its #to_s...
|
36
36
|
|
37
37
|
else
|
38
|
-
puts "(backtracer: no exception found to backtrace)" if $
|
38
|
+
puts "(backtracer: no exception found to backtrace)" if $DEBUG
|
39
39
|
end
|
40
40
|
# exit! TODO I guess do this once ours isn't *so* ugly
|
41
41
|
# I'm not sure it's safe to do that, in case there are other at_exit's [?]
|
data/lib/backtracer_simple.rb
CHANGED