class DEBUGGER__::Breakpoint

def skip_path?(path)

def skip_path?(path)
  case @path
  when Regexp
    !path.match?(@path)
  when String
    !path.include?(@path)
  else
    super
  end
end