module Rib::Byebug::Imp

Public Instance Methods

byebug() click to toggle source
# File lib/rib/extra/byebug.rb, line 12
def byebug
  return if Rib::Byebug.disabled?

  ::Byebug::RibProcessor.start
end
finish() click to toggle source
# File lib/rib/extra/byebug.rb, line 30
def finish
  throw :rib_byebug, [:finish]
end
location() click to toggle source
# File lib/rib/extra/byebug.rb, line 18
def location
  Rib.shell.config[:byebug].location
end
next(lines=1) click to toggle source
# File lib/rib/extra/byebug.rb, line 26
def next lines=1
  throw :rib_byebug, [:next, lines]
end
step(times=1) click to toggle source
# File lib/rib/extra/byebug.rb, line 22
def step times=1
  throw :rib_byebug, [:step, times]
end