Sha256: 87f665557dc8ec512f76441c20890c5f017851d82ac2c3ebfdea23d0cac146a2
Contents?: true
Size: 554 Bytes
Versions: 6772
Compression:
Stored size: 554 Bytes
Contents
# frozen_string_literal: true require "pry-byebug/helpers/navigation" module PryByebug # # Display the current stack # class BacktraceCommand < Pry::ClassCommand include Helpers::Navigation match "backtrace" group "Byebug" description "Display the current stack." banner <<-BANNER Usage: backtrace Display the current stack. BANNER def process PryByebug.check_file_context(target) breakout_navigation :backtrace end end end Pry::Commands.add_command(PryByebug::BacktraceCommand)
Version data entries
6,772 entries across 6,768 versions & 30 rubygems