From 9ab93fb2e6a0eb8d4b40ccadefa8e80e54487449 Mon Sep 17 00:00:00 2001 From: John Barnette Date: Fri, 25 Apr 2008 10:20:55 -0700 Subject: [PATCH] Scrub 'bin/johnson' lines from the backtrace in interactive mode. --- bin/johnson | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/johnson b/bin/johnson index 887616d..5023c3d 100755 --- a/bin/johnson +++ b/bin/johnson @@ -42,7 +42,7 @@ def rescued(&block) yield rescue Exception => e puts e.message - puts e.backtrace + puts e.backtrace.reject { |l| l =~ /bin\/johnson/ } end def eval_in_js(expression)