Sha256: cef107ddae7111726cb4e767c0fcaaf8a51ea6125d06bfa697fb83dbfceabd81
Contents?: true
Size: 540 Bytes
Versions: 6488
Compression:
Stored size: 540 Bytes
Contents
# frozen_string_literal: true 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
6,488 entries across 6,484 versions & 28 rubygems