Sha256: 0ca21711410863843535fbcc624087aaa95f57b56b981d12924e387770823bc3
Contents?: true
Size: 654 Bytes
Versions: 6772
Compression:
Stored size: 654 Bytes
Contents
# frozen_string_literal: true 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
6,772 entries across 6,768 versions & 30 rubygems