Class: PryByebug::StepCommand

Inherits:
Pry::ClassCommand
  • Object
show all
Includes:
Helpers::Navigation
Defined in:
lib/pry-byebug/commands/step.rb

Overview

Run a number of Ruby statements and then stop again

Instance Method Summary collapse

Methods included from Helpers::Navigation

#breakout_navigation

Instance Method Details

#processObject



24
25
26
27
28
# File 'lib/pry-byebug/commands/step.rb', line 24

def process
  PryByebug.check_file_context(target)

  breakout_navigation :step, times: args.first
end