pry--pry/lib/pry/commands/wtf.rb

58 lines
1.3 KiB
Ruby
Raw Normal View History

class Pry
class Command::Wtf < Pry::ClassCommand
2013-03-03 00:01:55 +00:00
match(/wtf([?!]*)/)
group 'Context'
description 'Show the backtrace of the most recent exception.'
options :listing => 'wtf?'
banner <<-'BANNER'
Usage: wtf[?|!]
Show's a few lines of the backtrace of the most recent exception (also available
as `_ex_.backtrace`). If you want to see more lines, add more question marks or
exclamation marks.
wtf?
wtf?!???!?!?
# To see the entire backtrace, pass the `-v` or `--verbose` flag.
wtf -v
BANNER
def options(opt)
opt.on :v, :verbose, "Show the full backtrace"
end
def process
2013-01-03 15:49:07 +00:00
raise Pry::CommandError, "No most-recent exception" unless exception
2013-01-03 15:49:07 +00:00
output.puts "#{text.bold('Exception:')} #{exception.class}: #{exception}\n--"
if opts.verbose?
output.puts with_line_numbers(backtrace)
else
output.puts with_line_numbers(backtrace.first(size_of_backtrace))
end
end
private
2013-01-03 15:49:07 +00:00
def exception
_pry_.last_exception
end
def with_line_numbers(bt)
Pry::Code.new(bt, 0, :text).with_line_numbers.to_s
end
def backtrace
2013-01-03 15:49:07 +00:00
exception.backtrace
end
def size_of_backtrace
[captures[0].size, 0.5].max * 10
2013-03-03 00:01:55 +00:00
end
end
2013-03-03 00:01:55 +00:00
Pry::Commands.add_command(Pry::Command::Wtf)
end