Sha256: f6f263a162372b150f9afd70218ee0281b22c43831208ea758cc55c4fabf139a
Contents?: true
Size: 623 Bytes
Versions: 13
Compression:
Stored size: 623 Bytes
Contents
require 'pry-byebug/helpers/navigation' module PryByebug # # Travel up the frame stack # class UpCommand < Pry::ClassCommand include Helpers::Navigation match 'up' group 'Byebug' description 'Move current frame up.' banner <<-BANNER Usage: up [TIMES] Move current frame up. By default, moves by 1 frame. Examples: up #=> Move up 1 frame. up 5 #=> Move up 5 frames. BANNER def process PryByebug.check_file_context(target) breakout_navigation :up, times: args.first end end end Pry::Commands.add_command(PryByebug::UpCommand)
Version data entries
13 entries across 12 versions & 3 rubygems