Sha256: 1e23973aadeda09786890aa0997fc39d23e4d7bb2efb15a5bb853e0b66e3ab70
Contents?: true
Size: 509 Bytes
Versions: 13
Compression:
Stored size: 509 Bytes
Contents
require 'pry-byebug/helpers/navigation' module PryByebug # # Run until the end of current frame # class FinishCommand < Pry::ClassCommand include PryByebug::Helpers::Navigation match 'finish' group 'Byebug' description 'Execute until current stack frame returns.' banner <<-BANNER Usage: finish BANNER def process PryByebug.check_file_context(target) breakout_navigation :finish end end end Pry::Commands.add_command(PryByebug::FinishCommand)
Version data entries
13 entries across 12 versions & 3 rubygems