class Byebug::Skipper::StepsCommand

this class is partially copy/pasted from Byebug::StepsCommand

Public Class Methods

description() click to toggle source
# File lib/byebug/skipper/steps_command.rb, line 12
def self.description
  short_description
end
regexp() click to toggle source
# File lib/byebug/skipper/steps_command.rb, line 4
def self.regexp
  /^ \s* s(?:tep)?s \s* $/x
end
short_description() click to toggle source
# File lib/byebug/skipper/steps_command.rb, line 8
def self.short_description
  "Same as `step` but skips garbage frames, e.g. from gems"
end

Public Instance Methods

execute() click to toggle source
# File lib/byebug/skipper/steps_command.rb, line 16
def execute
  HackyProcessor.hack_into(context)
end