├── AUTHORS ├── CHANGES ├── ChangeLog ├── INSTALL.SVN ├── LICENSE ├── Makefile.am ├── README ├── Rakefile ├── autogen.sh ├── bin └── rdebug ├── cli ├── ruby-debug.rb └── ruby-debug │ ├── command.rb │ ├── commands │ ├── breakpoints.rb │ ├── catchpoint.rb │ ├── condition.rb │ ├── continue.rb │ ├── control.rb │ ├── display.rb │ ├── edit.rb │ ├── enable.rb │ ├── eval.rb │ ├── finish.rb │ ├── frame.rb │ ├── help.rb │ ├── info.rb │ ├── irb.rb │ ├── jump.rb │ ├── kill.rb │ ├── list.rb │ ├── method.rb │ ├── quit.rb │ ├── reload.rb │ ├── save.rb │ ├── set.rb │ ├── show.rb │ ├── skip.rb │ ├── source.rb │ ├── stepping.rb │ ├── threads.rb │ ├── tmate.rb │ ├── trace.rb │ └── variables.rb │ ├── debugger.rb │ ├── helper.rb │ ├── interface.rb │ └── processor.rb ├── configure.ac ├── doc ├── .cvsignore ├── Makefile.am ├── emacs-notes.txt ├── hanoi.rb ├── primes.rb ├── rdebug-emacs.texi ├── rdebug.1 ├── ruby-debug.texi ├── test-tri2.rb ├── tri3.rb └── triangle.rb ├── emacs ├── Makefile.am ├── rdebug-annotate.el ├── rdebug-breaks.el ├── rdebug-cmd.el ├── rdebug-core.el ├── rdebug-dbg.el ├── rdebug-error.el ├── rdebug-fns.el ├── rdebug-frames.el ├── rdebug-gud.el ├── rdebug-help.el ├── rdebug-info.el ├── rdebug-layouts.el ├── rdebug-locring.el ├── rdebug-output.el ├── rdebug-regexp.el ├── rdebug-secondary.el ├── rdebug-shortkey.el ├── rdebug-source.el ├── rdebug-track.el ├── rdebug-varbuf.el ├── rdebug-vars.el ├── rdebug-watch.el ├── rdebug.el └── test │ ├── elk-test.el │ ├── test-annotate.el │ ├── test-cmd.el │ ├── test-core.el │ ├── test-fns.el │ ├── test-frames.el │ ├── test-gud.el │ ├── test-indent.el │ ├── test-regexp.el │ └── test-shortkey.el ├── ext └── ruby_debug │ ├── breakpoint.c │ ├── extconf.rb │ ├── ruby_debug.c │ └── ruby_debug.h ├── lib ├── ChangeLog └── ruby-debug-base.rb ├── rdbg.rb ├── ruby-debug.gemspec ├── runner.sh ├── svn2cl_usermap └── test ├── .cvsignore ├── base ├── base.rb ├── binding.rb ├── catchpoint.rb └── load.rb ├── bp_loop_issue.rb ├── classes.rb ├── cli └── commands │ ├── catchpoint_test.rb │ └── unit │ └── regexp.rb ├── config.yaml ├── data ├── annotate.cmd ├── annotate.right ├── break_bad.cmd ├── break_bad.right ├── break_loop_bug.cmd ├── break_loop_bug.right ├── breakpoints.cmd ├── breakpoints.right ├── catch.cmd ├── catch.right ├── catch2.cmd ├── catch2.right ├── catch3.cmd ├── catch3.right ├── condition.cmd ├── condition.right ├── ctrl.cmd ├── ctrl.right ├── display.cmd ├── display.right ├── dollar-0.right ├── dollar-0a.right ├── dollar-0b.right ├── edit.cmd ├── edit.right ├── emacs_basic.cmd ├── emacs_basic.right ├── enable.cmd ├── enable.right ├── finish.cmd ├── finish.right ├── frame.cmd ├── frame.right ├── help.cmd ├── help.right ├── history.right ├── info-thread.cmd ├── info-thread.right ├── info-var-bug2.cmd ├── info-var-bug2.right ├── info-var.cmd ├── info-var.right ├── info.cmd ├── info.right ├── jump.cmd ├── jump.right ├── jump2.cmd ├── jump2.right ├── linetrace.cmd ├── linetrace.right ├── list.cmd ├── list.right ├── method.cmd ├── method.right ├── methodsig.cmd ├── methodsig.right ├── next.cmd ├── next.right ├── noquit.right ├── output.cmd ├── output.right ├── pm-bug.cmd ├── pm-bug.right ├── post-mortem-next.cmd ├── post-mortem-next.right ├── post-mortem-osx.right ├── post-mortem.cmd ├── post-mortem.right ├── quit.cmd ├── quit.right ├── raise.cmd ├── raise.right ├── save.cmd ├── save.right ├── scope-var.cmd ├── scope-var.right ├── setshow.cmd ├── setshow.right ├── source.cmd ├── source.right ├── stepping.cmd ├── stepping.right ├── test-init-cygwin.right ├── test-init-osx.right ├── test-init.right └── trace.right ├── dollar-0.rb ├── gcd-dbg-nox.rb ├── gcd-dbg.rb ├── gcd.rb ├── helper.rb ├── info-var-bug.rb ├── info-var-bug2.rb ├── jump.rb ├── jump2.rb ├── next.rb ├── null.rb ├── output.rb ├── pm-base.rb ├── pm-bug.rb ├── pm-catch.rb ├── pm-catch2.rb ├── pm-catch3.rb ├── pm.rb ├── raise.rb ├── rdebug-save.1 ├── runall ├── scope-var.rb ├── tdebug.rb ├── test-annotate.rb ├── test-break-bad.rb ├── test-breakpoints.rb ├── test-catch.rb ├── test-catch2.rb ├── test-catch3.rb ├── test-condition.rb ├── test-ctrl.rb ├── test-display.rb ├── test-dollar-0.rb ├── test-edit.rb ├── test-emacs-basic.rb ├── test-enable.rb ├── test-finish.rb ├── test-frame.rb ├── test-help.rb ├── test-hist.rb ├── test-info-thread.rb ├── test-info-var.rb ├── test-info.rb ├── test-init.rb ├── test-jump.rb ├── test-list.rb ├── test-method.rb ├── test-next.rb ├── test-output.rb ├── test-quit.rb ├── test-raise.rb ├── test-save.rb ├── test-scope-var.rb ├── test-setshow.rb ├── test-source.rb ├── test-stepping.rb ├── test-trace.rb ├── thread1.rb └── trunc-call.rb /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/CHANGES -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL.SVN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/INSTALL.SVN -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/README -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/Rakefile -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/autogen.sh -------------------------------------------------------------------------------- /bin/rdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/bin/rdebug -------------------------------------------------------------------------------- /cli/ruby-debug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug.rb -------------------------------------------------------------------------------- /cli/ruby-debug/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/command.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/breakpoints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/breakpoints.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/catchpoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/catchpoint.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/condition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/condition.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/continue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/continue.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/control.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/display.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/display.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/edit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/edit.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/enable.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/eval.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/eval.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/finish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/finish.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/frame.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/frame.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/help.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/info.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/irb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/irb.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/jump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/jump.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/kill.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/kill.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/list.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/method.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/quit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/quit.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/reload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/reload.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/save.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/save.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/set.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/show.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/show.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/skip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/skip.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/source.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/stepping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/stepping.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/threads.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/threads.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/tmate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/tmate.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/trace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/trace.rb -------------------------------------------------------------------------------- /cli/ruby-debug/commands/variables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/commands/variables.rb -------------------------------------------------------------------------------- /cli/ruby-debug/debugger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/debugger.rb -------------------------------------------------------------------------------- /cli/ruby-debug/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/helper.rb -------------------------------------------------------------------------------- /cli/ruby-debug/interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/interface.rb -------------------------------------------------------------------------------- /cli/ruby-debug/processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/cli/ruby-debug/processor.rb -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/doc/.cvsignore -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/emacs-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/doc/emacs-notes.txt -------------------------------------------------------------------------------- /doc/hanoi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/doc/hanoi.rb -------------------------------------------------------------------------------- /doc/primes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/doc/primes.rb -------------------------------------------------------------------------------- /doc/rdebug-emacs.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/doc/rdebug-emacs.texi -------------------------------------------------------------------------------- /doc/rdebug.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/doc/rdebug.1 -------------------------------------------------------------------------------- /doc/ruby-debug.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/doc/ruby-debug.texi -------------------------------------------------------------------------------- /doc/test-tri2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/doc/test-tri2.rb -------------------------------------------------------------------------------- /doc/tri3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/doc/tri3.rb -------------------------------------------------------------------------------- /doc/triangle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/doc/triangle.rb -------------------------------------------------------------------------------- /emacs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/Makefile.am -------------------------------------------------------------------------------- /emacs/rdebug-annotate.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-annotate.el -------------------------------------------------------------------------------- /emacs/rdebug-breaks.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-breaks.el -------------------------------------------------------------------------------- /emacs/rdebug-cmd.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-cmd.el -------------------------------------------------------------------------------- /emacs/rdebug-core.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-core.el -------------------------------------------------------------------------------- /emacs/rdebug-dbg.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-dbg.el -------------------------------------------------------------------------------- /emacs/rdebug-error.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-error.el -------------------------------------------------------------------------------- /emacs/rdebug-fns.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-fns.el -------------------------------------------------------------------------------- /emacs/rdebug-frames.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-frames.el -------------------------------------------------------------------------------- /emacs/rdebug-gud.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-gud.el -------------------------------------------------------------------------------- /emacs/rdebug-help.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-help.el -------------------------------------------------------------------------------- /emacs/rdebug-info.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-info.el -------------------------------------------------------------------------------- /emacs/rdebug-layouts.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-layouts.el -------------------------------------------------------------------------------- /emacs/rdebug-locring.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-locring.el -------------------------------------------------------------------------------- /emacs/rdebug-output.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-output.el -------------------------------------------------------------------------------- /emacs/rdebug-regexp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-regexp.el -------------------------------------------------------------------------------- /emacs/rdebug-secondary.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-secondary.el -------------------------------------------------------------------------------- /emacs/rdebug-shortkey.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-shortkey.el -------------------------------------------------------------------------------- /emacs/rdebug-source.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-source.el -------------------------------------------------------------------------------- /emacs/rdebug-track.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-track.el -------------------------------------------------------------------------------- /emacs/rdebug-varbuf.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-varbuf.el -------------------------------------------------------------------------------- /emacs/rdebug-vars.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-vars.el -------------------------------------------------------------------------------- /emacs/rdebug-watch.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug-watch.el -------------------------------------------------------------------------------- /emacs/rdebug.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/rdebug.el -------------------------------------------------------------------------------- /emacs/test/elk-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/test/elk-test.el -------------------------------------------------------------------------------- /emacs/test/test-annotate.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/test/test-annotate.el -------------------------------------------------------------------------------- /emacs/test/test-cmd.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/test/test-cmd.el -------------------------------------------------------------------------------- /emacs/test/test-core.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/test/test-core.el -------------------------------------------------------------------------------- /emacs/test/test-fns.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/test/test-fns.el -------------------------------------------------------------------------------- /emacs/test/test-frames.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/test/test-frames.el -------------------------------------------------------------------------------- /emacs/test/test-gud.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/test/test-gud.el -------------------------------------------------------------------------------- /emacs/test/test-indent.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/test/test-indent.el -------------------------------------------------------------------------------- /emacs/test/test-regexp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/test/test-regexp.el -------------------------------------------------------------------------------- /emacs/test/test-shortkey.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/emacs/test/test-shortkey.el -------------------------------------------------------------------------------- /ext/ruby_debug/breakpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/ext/ruby_debug/breakpoint.c -------------------------------------------------------------------------------- /ext/ruby_debug/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/ext/ruby_debug/extconf.rb -------------------------------------------------------------------------------- /ext/ruby_debug/ruby_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/ext/ruby_debug/ruby_debug.c -------------------------------------------------------------------------------- /ext/ruby_debug/ruby_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/ext/ruby_debug/ruby_debug.h -------------------------------------------------------------------------------- /lib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/lib/ChangeLog -------------------------------------------------------------------------------- /lib/ruby-debug-base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/lib/ruby-debug-base.rb -------------------------------------------------------------------------------- /rdbg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/rdbg.rb -------------------------------------------------------------------------------- /ruby-debug.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/ruby-debug.gemspec -------------------------------------------------------------------------------- /runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/runner.sh -------------------------------------------------------------------------------- /svn2cl_usermap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/svn2cl_usermap -------------------------------------------------------------------------------- /test/.cvsignore: -------------------------------------------------------------------------------- 1 | config.private.yaml 2 | -------------------------------------------------------------------------------- /test/base/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/base/base.rb -------------------------------------------------------------------------------- /test/base/binding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/base/binding.rb -------------------------------------------------------------------------------- /test/base/catchpoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/base/catchpoint.rb -------------------------------------------------------------------------------- /test/base/load.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/base/load.rb -------------------------------------------------------------------------------- /test/bp_loop_issue.rb: -------------------------------------------------------------------------------- 1 | 1.upto(2) { 2 | sleep 0.01 3 | } 4 | -------------------------------------------------------------------------------- /test/classes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/classes.rb -------------------------------------------------------------------------------- /test/cli/commands/catchpoint_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/cli/commands/catchpoint_test.rb -------------------------------------------------------------------------------- /test/cli/commands/unit/regexp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/cli/commands/unit/regexp.rb -------------------------------------------------------------------------------- /test/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/config.yaml -------------------------------------------------------------------------------- /test/data/annotate.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/annotate.cmd -------------------------------------------------------------------------------- /test/data/annotate.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/annotate.right -------------------------------------------------------------------------------- /test/data/break_bad.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/break_bad.cmd -------------------------------------------------------------------------------- /test/data/break_bad.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/break_bad.right -------------------------------------------------------------------------------- /test/data/break_loop_bug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/break_loop_bug.cmd -------------------------------------------------------------------------------- /test/data/break_loop_bug.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/break_loop_bug.right -------------------------------------------------------------------------------- /test/data/breakpoints.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/breakpoints.cmd -------------------------------------------------------------------------------- /test/data/breakpoints.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/breakpoints.right -------------------------------------------------------------------------------- /test/data/catch.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/catch.cmd -------------------------------------------------------------------------------- /test/data/catch.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/catch.right -------------------------------------------------------------------------------- /test/data/catch2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/catch2.cmd -------------------------------------------------------------------------------- /test/data/catch2.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/catch2.right -------------------------------------------------------------------------------- /test/data/catch3.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/catch3.cmd -------------------------------------------------------------------------------- /test/data/catch3.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/catch3.right -------------------------------------------------------------------------------- /test/data/condition.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/condition.cmd -------------------------------------------------------------------------------- /test/data/condition.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/condition.right -------------------------------------------------------------------------------- /test/data/ctrl.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/ctrl.cmd -------------------------------------------------------------------------------- /test/data/ctrl.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/ctrl.right -------------------------------------------------------------------------------- /test/data/display.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/display.cmd -------------------------------------------------------------------------------- /test/data/display.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/display.right -------------------------------------------------------------------------------- /test/data/dollar-0.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/dollar-0.right -------------------------------------------------------------------------------- /test/data/dollar-0a.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/dollar-0a.right -------------------------------------------------------------------------------- /test/data/dollar-0b.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/dollar-0b.right -------------------------------------------------------------------------------- /test/data/edit.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/edit.cmd -------------------------------------------------------------------------------- /test/data/edit.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/edit.right -------------------------------------------------------------------------------- /test/data/emacs_basic.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/emacs_basic.cmd -------------------------------------------------------------------------------- /test/data/emacs_basic.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/emacs_basic.right -------------------------------------------------------------------------------- /test/data/enable.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/enable.cmd -------------------------------------------------------------------------------- /test/data/enable.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/enable.right -------------------------------------------------------------------------------- /test/data/finish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/finish.cmd -------------------------------------------------------------------------------- /test/data/finish.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/finish.right -------------------------------------------------------------------------------- /test/data/frame.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/frame.cmd -------------------------------------------------------------------------------- /test/data/frame.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/frame.right -------------------------------------------------------------------------------- /test/data/help.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/help.cmd -------------------------------------------------------------------------------- /test/data/help.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/help.right -------------------------------------------------------------------------------- /test/data/history.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/history.right -------------------------------------------------------------------------------- /test/data/info-thread.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/info-thread.cmd -------------------------------------------------------------------------------- /test/data/info-thread.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/info-thread.right -------------------------------------------------------------------------------- /test/data/info-var-bug2.cmd: -------------------------------------------------------------------------------- 1 | step 2 | info variables 3 | quit 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/data/info-var-bug2.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/info-var-bug2.right -------------------------------------------------------------------------------- /test/data/info-var.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/info-var.cmd -------------------------------------------------------------------------------- /test/data/info-var.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/info-var.right -------------------------------------------------------------------------------- /test/data/info.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/info.cmd -------------------------------------------------------------------------------- /test/data/info.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/info.right -------------------------------------------------------------------------------- /test/data/jump.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/jump.cmd -------------------------------------------------------------------------------- /test/data/jump.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/jump.right -------------------------------------------------------------------------------- /test/data/jump2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/jump2.cmd -------------------------------------------------------------------------------- /test/data/jump2.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/jump2.right -------------------------------------------------------------------------------- /test/data/linetrace.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/linetrace.cmd -------------------------------------------------------------------------------- /test/data/linetrace.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/linetrace.right -------------------------------------------------------------------------------- /test/data/list.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/list.cmd -------------------------------------------------------------------------------- /test/data/list.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/list.right -------------------------------------------------------------------------------- /test/data/method.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/method.cmd -------------------------------------------------------------------------------- /test/data/method.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/method.right -------------------------------------------------------------------------------- /test/data/methodsig.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/methodsig.cmd -------------------------------------------------------------------------------- /test/data/methodsig.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/methodsig.right -------------------------------------------------------------------------------- /test/data/next.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/next.cmd -------------------------------------------------------------------------------- /test/data/next.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/next.right -------------------------------------------------------------------------------- /test/data/noquit.right: -------------------------------------------------------------------------------- 1 | The program has finished and will be restarted. 2 | -------------------------------------------------------------------------------- /test/data/output.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/output.cmd -------------------------------------------------------------------------------- /test/data/output.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/output.right -------------------------------------------------------------------------------- /test/data/pm-bug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/pm-bug.cmd -------------------------------------------------------------------------------- /test/data/pm-bug.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/pm-bug.right -------------------------------------------------------------------------------- /test/data/post-mortem-next.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/post-mortem-next.cmd -------------------------------------------------------------------------------- /test/data/post-mortem-next.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/post-mortem-next.right -------------------------------------------------------------------------------- /test/data/post-mortem-osx.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/post-mortem-osx.right -------------------------------------------------------------------------------- /test/data/post-mortem.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/post-mortem.cmd -------------------------------------------------------------------------------- /test/data/post-mortem.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/post-mortem.right -------------------------------------------------------------------------------- /test/data/quit.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/quit.cmd -------------------------------------------------------------------------------- /test/data/quit.right: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/data/raise.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/raise.cmd -------------------------------------------------------------------------------- /test/data/raise.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/raise.right -------------------------------------------------------------------------------- /test/data/save.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/save.cmd -------------------------------------------------------------------------------- /test/data/save.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/save.right -------------------------------------------------------------------------------- /test/data/scope-var.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/scope-var.cmd -------------------------------------------------------------------------------- /test/data/scope-var.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/scope-var.right -------------------------------------------------------------------------------- /test/data/setshow.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/setshow.cmd -------------------------------------------------------------------------------- /test/data/setshow.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/setshow.right -------------------------------------------------------------------------------- /test/data/source.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/source.cmd -------------------------------------------------------------------------------- /test/data/source.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/source.right -------------------------------------------------------------------------------- /test/data/stepping.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/stepping.cmd -------------------------------------------------------------------------------- /test/data/stepping.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/stepping.right -------------------------------------------------------------------------------- /test/data/test-init-cygwin.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/test-init-cygwin.right -------------------------------------------------------------------------------- /test/data/test-init-osx.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/test-init-osx.right -------------------------------------------------------------------------------- /test/data/test-init.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/test-init.right -------------------------------------------------------------------------------- /test/data/trace.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/data/trace.right -------------------------------------------------------------------------------- /test/dollar-0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/dollar-0.rb -------------------------------------------------------------------------------- /test/gcd-dbg-nox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/gcd-dbg-nox.rb -------------------------------------------------------------------------------- /test/gcd-dbg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/gcd-dbg.rb -------------------------------------------------------------------------------- /test/gcd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/gcd.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/info-var-bug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/info-var-bug.rb -------------------------------------------------------------------------------- /test/info-var-bug2.rb: -------------------------------------------------------------------------------- 1 | s = '<%= PRODUCT[:name] %>' 2 | y = 0 3 | -------------------------------------------------------------------------------- /test/jump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/jump.rb -------------------------------------------------------------------------------- /test/jump2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/jump2.rb -------------------------------------------------------------------------------- /test/next.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/next.rb -------------------------------------------------------------------------------- /test/null.rb: -------------------------------------------------------------------------------- 1 | # Nothing here. Move along. 2 | -------------------------------------------------------------------------------- /test/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/output.rb -------------------------------------------------------------------------------- /test/pm-base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/pm-base.rb -------------------------------------------------------------------------------- /test/pm-bug.rb: -------------------------------------------------------------------------------- 1 | a = 1 2 | @x = 2 3 | raise 4 | -------------------------------------------------------------------------------- /test/pm-catch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/pm-catch.rb -------------------------------------------------------------------------------- /test/pm-catch2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/pm-catch2.rb -------------------------------------------------------------------------------- /test/pm-catch3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/pm-catch3.rb -------------------------------------------------------------------------------- /test/pm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/pm.rb -------------------------------------------------------------------------------- /test/raise.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | raise "abc" 4 | -------------------------------------------------------------------------------- /test/rdebug-save.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/rdebug-save.1 -------------------------------------------------------------------------------- /test/runall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/runall -------------------------------------------------------------------------------- /test/scope-var.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/scope-var.rb -------------------------------------------------------------------------------- /test/tdebug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/tdebug.rb -------------------------------------------------------------------------------- /test/test-annotate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-annotate.rb -------------------------------------------------------------------------------- /test/test-break-bad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-break-bad.rb -------------------------------------------------------------------------------- /test/test-breakpoints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-breakpoints.rb -------------------------------------------------------------------------------- /test/test-catch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-catch.rb -------------------------------------------------------------------------------- /test/test-catch2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-catch2.rb -------------------------------------------------------------------------------- /test/test-catch3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-catch3.rb -------------------------------------------------------------------------------- /test/test-condition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-condition.rb -------------------------------------------------------------------------------- /test/test-ctrl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-ctrl.rb -------------------------------------------------------------------------------- /test/test-display.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-display.rb -------------------------------------------------------------------------------- /test/test-dollar-0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-dollar-0.rb -------------------------------------------------------------------------------- /test/test-edit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-edit.rb -------------------------------------------------------------------------------- /test/test-emacs-basic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-emacs-basic.rb -------------------------------------------------------------------------------- /test/test-enable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-enable.rb -------------------------------------------------------------------------------- /test/test-finish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-finish.rb -------------------------------------------------------------------------------- /test/test-frame.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-frame.rb -------------------------------------------------------------------------------- /test/test-help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-help.rb -------------------------------------------------------------------------------- /test/test-hist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-hist.rb -------------------------------------------------------------------------------- /test/test-info-thread.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-info-thread.rb -------------------------------------------------------------------------------- /test/test-info-var.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-info-var.rb -------------------------------------------------------------------------------- /test/test-info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-info.rb -------------------------------------------------------------------------------- /test/test-init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-init.rb -------------------------------------------------------------------------------- /test/test-jump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-jump.rb -------------------------------------------------------------------------------- /test/test-list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-list.rb -------------------------------------------------------------------------------- /test/test-method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-method.rb -------------------------------------------------------------------------------- /test/test-next.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-next.rb -------------------------------------------------------------------------------- /test/test-output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-output.rb -------------------------------------------------------------------------------- /test/test-quit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-quit.rb -------------------------------------------------------------------------------- /test/test-raise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-raise.rb -------------------------------------------------------------------------------- /test/test-save.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-save.rb -------------------------------------------------------------------------------- /test/test-scope-var.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-scope-var.rb -------------------------------------------------------------------------------- /test/test-setshow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-setshow.rb -------------------------------------------------------------------------------- /test/test-source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-source.rb -------------------------------------------------------------------------------- /test/test-stepping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-stepping.rb -------------------------------------------------------------------------------- /test/test-trace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/test-trace.rb -------------------------------------------------------------------------------- /test/thread1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/thread1.rb -------------------------------------------------------------------------------- /test/trunc-call.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-moseley/ruby-debug/HEAD/test/trunc-call.rb --------------------------------------------------------------------------------