2007-12-25 02:51  Rocky Bernstein

	* trunk/AUTHORS, trunk/ChangeLog, trunk/README, ChangeLog,
	  trunk/lib/ChangeLog, trunk/test/breakpoints.cmd,
	  trunk/test/breakpoints.right: breakpoints.*: main -> Object. Add
	  bad Class name test
	  AUTHOR: Add Anders
	  README: note ruby-debug-extra. More precise (I think)

2007-12-24 00:25  Rocky Bernstein

	* trunk/ChangeLog, trunk/Rakefile, ChangeLog, trunk/lib/ChangeLog:
	  Rakefile: set up gem unit test for ruby-debug-base. Add file in
	  test/
	  so we could do the same for ruby-debug were it not for other
	  mysterious
	  problems.

2007-12-23 17:33  Rocky Bernstein

	* trunk/CHANGES, trunk/ChangeLog, trunk/Makefile.am,
	  trunk/Rakefile, trunk/doc, ChangeLog, trunk/lib/ChangeLog,
	  trunk/svn2cl_usermap, trunk/test/test-columnize.rb,
	  trunk/test/test-ruby-debug-base.rb,
	  trunk/test/test-ruby-debug.rb: Go over packaging:
	  ChangeLogs for ruby-debug-base (in ext and lib) separate from CLI
	  ChangeLog
	  ChangeLogs now map userid to names
	  ruby-debug-base regression test included in ruby-debug-base
	  Columnize test separated. (It will disappear when ruby-debug
	  requires it
	  as an external)

2007-12-17 05:43  Rocky Bernstein

	* ruby_debug.c: Doc typo.

2007-12-16 21:31  Rocky Bernstein

	* trunk, trunk/ChangeLog, trunk/cli/ruby-debug/commands/info.rb,
	  trunk/doc, trunk/emacs, ., trunk/lib/ruby-debug-base.rb,
	  trunk/test/helper.rb, trunk/test/info-var-bug.rb,
	  trunk/test/info-var.cmd, trunk/test/info-var.right,
	  trunk/test/runall, trunk/test/test-breakpoints.rb,
	  trunk/test/test-display.rb, trunk/test/test-help.rb,
	  trunk/test/test-info-var.rb: Add "info variables test".
	  
	  ruby-debug-base.rb: Not sure how test(?M, file) ever worked
	  before but change
	  to use File.stat(file).mtime
	  info.rb: ignore debugger variables which are sometimes set.

2007-12-14 11:56  Rocky Bernstein

	* trunk/configure.ac, trunk/doc/ruby-debug.texi, ruby_debug.c:
	  Change version to 0.10.0

2007-12-14 03:22  Rocky Bernstein

	* trunk/CHANGES, trunk/configure.ac, trunk/doc/rdebug.1,
	  trunk/doc/ruby-debug.texi, ruby_debug.c: ruby-debug.c,
	  configure.ac, ruby-debug.texi: Up version to 0.9.9
	  rdebug.1: document --no-quit
	  ruby-debu.texi: More work on Emacs section.

2007-12-02 21:47  Rocky Bernstein

	* trunk/cli/ruby-debug/commands/enable.rb,
	  trunk/cli/ruby-debug/commands/info.rb,
	  trunk/emacs/rdebug-test.el, trunk/emacs/rdebug.el, ruby_debug.c,
	  trunk/test/breakpoints.cmd, trunk/test/breakpoints.right: Allow
	  enabling/disabling breakpoints. Add unit test of
	  enabling/disabling and
	  emacs regexp checking. Adjust rdebug.el accordingly.

2007-11-24 11:01  Rocky Bernstein

	* ruby_debug.c: Some documentation typos.

2007-11-24 04:07  Rocky Bernstein

	* ruby_debug.c: Ooops, forgot to do frame_locals and update the
	  rb_define_method
	  argument count in a couple of places.

2007-11-24 03:00  Rocky Bernstein

	* trunk/Rakefile, trunk/doc/Makefile.am, trunk/doc/ruby-debug.texi,
	  ruby_debug.c, trunk/test/test-ruby-debug.rb: ruby_debug.c:
	  context.frame things now allow the frame postion number to be
	  optional. We'll assume 0 (the top) as the default.
	  
	  test-ruby-debug.rb: add tests of the above an of these routines
	  in general. Make this
	  be able to run outside of rake.
	  
	  Rakefile: Removed emacs/elisp since that's now part of a
	  different package.
	  
	  doc/Makefile.am: Make manual page
	  
	  doc/ruby-debug.texi: try to clarify blocks/frames. Redo incorrect
	  frame passages as a result of vestiges of the bashdb manual.

2007-11-15 19:03  Rocky Bernstein

	* ruby_debug.c: Fix misspelling of declared.

2007-10-12 01:45  Rocky Bernstein

	* ruby_debug.c, trunk/test/breakpoints.cmd: Bug in setting a
	  breakpoint at a main method (e.g. main.gcd). Inside
	  breakpoint_by method we seem to get nil for the class name. The
	  fix
	  here is to change that to the string "main". Better might be to
	  have
	  that class name not be nil.
	  
	  test/breakpoints.cmd has a sequence of commands that when run on
	  gcd.rb will show the problem.

2007-08-05 22:10  Rocky Bernstein

	* ruby_debug.c: Typo.

2007-08-04 13:36  Rocky Bernstein

	* trunk/cli/ruby-debug/command.rb,
	  trunk/cli/ruby-debug/commands/display.rb,
	  trunk/cli/ruby-debug/commands/eval.rb,
	  trunk/cli/ruby-debug/commands/settings.rb,
	  trunk/cli/ruby-debug/commands/show.rb,
	  trunk/cli/ruby-debug/commands/stepping.rb,
	  trunk/cli/ruby-debug/processor.rb, trunk/doc/ruby-debug.texi,
	  ruby_debug.c: settings, processor, show: display expressions
	  should be shown when line tracing. To this end change always_run
	  from
	  a boolean on integer "level" number.
	  
	  eval.rb pc -> putl
	  
	  ruby_debug.c: replace a non-word in a comment its equivalent
	  ruby-debug.texi: document recent changes pc->putl, display
	  expresions appear when line tracing

2007-07-21 13:54  Rocky Bernstein

	* trunk/cli/ruby-debug/command.rb, ruby_debug.c, trunk/runner.sh:
	  Changes to make ruby-debug work for 1.9 (at least minimally).
	  ruby_debug.c: parameter saving seems to have a bug in it. Don't
	  turn on by default.
	  runner.sh: set which ruby using environment variable RUBY.

2007-07-19 03:08  Rocky Bernstein

	* trunk/cli/ruby-debug/command.rb,
	  trunk/cli/ruby-debug/commands/eval.rb,
	  trunk/cli/ruby-debug/commands/frame.rb,
	  trunk/cli/ruby-debug/commands/settings.rb,
	  trunk/cli/ruby-debug/commands/show.rb, ruby_debug.c: Add "set"
	  option to save scalar values and class names on each call.
	  Add pc (print columnized) and ps (print sorted columnized).

2007-06-21 10:39  Rocky Bernstein

	* trunk/Rakefile, trunk/cli/ruby-debug/command.rb,
	  trunk/cli/ruby-debug/commands/script.rb,
	  trunk/doc/ruby-debug.texi, ruby_debug.c,
	  trunk/test/test-ruby-debug.rb: test-ruby-debug.rb, Rakefile:
	  revise so "rake test" works with recent reorganization.
	  ruby-debug.c: remove unused variable declaration (and compile
	  warning)
	  command.rb: remove a warning given when "$DEBUG" or warnings are
	  set
	  script.rb: rename "script" to "source" to be more in line with
	  gdb
	  ruby-debug.texi: document "source" command, .rdebugrc and how
	  command files
	  work.

2007-06-05 16:36  Kent Sibilev

	* trunk/bin/rdebug, trunk/cli/ruby-debug/command.rb,
	  trunk/cli/ruby-debug/commands/breakpoints.rb,
	  trunk/cli/ruby-debug/commands/control.rb,
	  trunk/cli/ruby-debug/commands/display.rb,
	  trunk/cli/ruby-debug/commands/eval.rb,
	  trunk/cli/ruby-debug/commands/frame.rb,
	  trunk/cli/ruby-debug/commands/help.rb,
	  trunk/cli/ruby-debug/commands/info.rb,
	  trunk/cli/ruby-debug/commands/method.rb,
	  trunk/cli/ruby-debug/commands/script.rb,
	  trunk/cli/ruby-debug/commands/settings.rb,
	  trunk/cli/ruby-debug/commands/show.rb,
	  trunk/cli/ruby-debug/commands/stepping.rb,
	  trunk/cli/ruby-debug/commands/threads.rb,
	  trunk/cli/ruby-debug/commands/variables.rb,
	  trunk/cli/ruby-debug/interface.rb,
	  trunk/cli/ruby-debug/processor.rb, ruby_debug.c,
	  trunk/lib/ruby-debug-base.rb: code reorganization.
	  reverted 'run' command.

2007-06-05 03:48  Kent Sibilev

	* trunk/cli/ruby-debug/command.rb,
	  trunk/cli/ruby-debug/commands/control.rb, ruby_debug.c: tabs to
	  spaces
	  changed copy.args to play nicely with GC

2007-06-03 02:44  Rocky Bernstein

	* trunk/bin/rdebug, trunk/cli/ruby-debug/commands/control.rb,
	  trunk/cli/ruby-debug/processor.rb, ruby_debug.c: Get warm restart
	  working for one thread - it might even work on OSX ;-)

2007-05-25 07:48  Rocky Bernstein

	* trunk/cli/ruby-debug/command.rb, ruby_debug.c: Have to back off
	  from showing parameter values since we are showing the
	  dynamic value. So instead we show the paramater class.
	  
	  It should be possible to show the value however if
	  --keep-frame-bindings is
	  true.

2007-05-24 13:03  Rocky Bernstein

	* branches/rocky, branches/rocky/Rakefile,
	  branches/rocky/cli/ruby-debug/command.rb,
	  branches/rocky/cli/ruby-debug/commands/frame.rb,
	  branches/rocky/cli/ruby-debug/commands/help.rb,
	  branches/rocky/cli/ruby-debug/commands/method.rb,
	  branches/rocky/cli/ruby-debug/commands/settings.rb,
	  branches/rocky/cli/ruby-debug/commands/threads.rb,
	  branches/rocky/cli/ruby-debug/commands/variables.rb,
	  branches/rocky/ext/ruby_debug.c, trunk/Rakefile,
	  trunk/cli/ruby-debug/command.rb,
	  trunk/cli/ruby-debug/commands/frame.rb,
	  trunk/cli/ruby-debug/commands/help.rb,
	  trunk/cli/ruby-debug/commands/method.rb,
	  trunk/cli/ruby-debug/commands/settings.rb,
	  trunk/cli/ruby-debug/commands/threads.rb,
	  trunk/cli/ruby-debug/commands/variables.rb, ruby_debug.c: Add
	  sandbox for rocky to work in

2007-05-17 03:55  Kent Sibilev

	* ruby_debug.c: removed debug message

2007-05-09 16:56  Kent Sibilev

	* trunk/CHANGES, trunk/bin/rdebug, ruby_debug.c: '-r' option can be
	  used to require additional libraries

2007-04-27 06:07  Kent Sibilev

	* ruby_debug.c: Ctrl-C exits irb and continutes execution bypassing
	  the debugger prompt

2007-04-07 23:21  Kent Sibilev

	* ruby_debug.c: removed wrong if node check

2007-04-04 20:23  Kent Sibilev

	* trunk/CHANGES, ruby_debug.c: added hit conditions to breakpoints

2007-04-03 18:05  Kent Sibilev

	* ruby_debug.c: Fixed file comparision on Windows platform

2007-04-03 01:48  Kent Sibilev

	* trunk/CHANGES, trunk/cli/ruby-debug/command.rb,
	  trunk/cli/ruby-debug/commands/settings.rb,
	  trunk/cli/ruby-debug/commands/stepping.rb, ruby_debug.c: Added
	  force parameter to stepping commands

2007-04-03 01:16  Kent Sibilev

	* trunk/CHANGES, trunk/cli/ruby-debug/commands/stepping.rb,
	  ruby_debug.c: added force option to Context#step_over

2007-04-02 20:55  Kent Sibilev

	* trunk/CHANGES, trunk/cli/ruby-debug/commands/breakpoints.rb,
	  ruby_debug.c: fixed incorrect stack calculation
	  break help fix

2007-03-30 08:03  Kent Sibilev

	* ruby_debug.c:

2007-03-30 07:40  Kent Sibilev

	* ruby_debug.c:

2007-03-30 07:39  Kent Sibilev

	* ruby_debug.c:

2007-03-30 07:21  Kent Sibilev

	* trunk/CHANGES, ruby_debug.c: All Ruby's 'eval' and require/load
	  methods create a new frame.

2007-03-29 02:09  Kent Sibilev

	* trunk/CHANGES, trunk/cli/ruby-debug/command.rb,
	  trunk/cli/ruby-debug/commands/frame.rb,
	  trunk/cli/ruby-debug/commands/settings.rb, ruby_debug.c: Added
	  new Context.frame_class method
	  
	  'frame' command will display a class name along with method name
	  
	  Added new 'fullpath' setting.

2007-03-29 00:45  Kent Sibilev

	* trunk/CHANGES, ruby_debug.c: too many internal changes require a
	  new major release

2007-03-29 00:27  Kent Sibilev

	* ruby_debug.c: remove useless stops when performing 'step_over'
	  operation

2007-03-28 20:36  Kent Sibilev

	* trunk/CHANGES, trunk/cli/ruby-debug/commands/stepping.rb,
	  ruby_debug.c: Added the possibility to add a temporary
	  context-specific breakpoint.
	  
	  Context#breakpoint and Context#set_breakpoint methods are added.
	  
	  'cont' command now accepts a numerical parameter which implements
	  'Continue until line' behavior.

2007-03-27 23:26  Kent Sibilev

	* ruby_debug.c: fixed previous optimization for Proc objects

2007-03-27 23:22  Kent Sibilev

	* ruby_debug.c: we don't need to create a new frame if there is no
	  block for a c-call

2007-03-27 23:08  Kent Sibilev

	* trunk/CHANGES, ruby_debug.c: Calling a method with a block will
	  create a new frame. This changes the behavior of 'next' command.
	  So in order to step into a block, 'step' command must be used.
	  That fixes bug #9629.

2007-03-27 22:50  Kent Sibilev

	* ruby_debug.c: step over shouldn't check that we moved to another
	  line

2007-03-26 14:27  Kent Sibilev

	* ruby_debug.c: ditto

2007-03-26 02:51  Kent Sibilev

	* ruby_debug.c: the frame must be captured when calling Proc#call
	  method

2007-03-24 18:17  Kent Sibilev

	* branches/stable, trunk: stable becomes the trunk

2007-03-24 18:03  Kent Sibilev

	* branches/stable/ext/ruby_debug.c: ported stop reason from the
	  trunk

2007-03-19 07:46  Kent Sibilev

	* branches/stable/cli/debugger.rb,
	  branches/stable/cli/ruby-debug.rb,
	  branches/stable/ext/ruby_debug.c: fixes processor to handler
	  renaming
	  added a shortcut module

2007-02-27 08:02  Kent Sibilev

	* branches/stable/Rakefile, branches/stable/cli,
	  branches/stable/cli/ruby-debug,
	  branches/stable/cli/ruby-debug/command.rb,
	  branches/stable/cli/ruby-debug/commands,
	  branches/stable/cli/ruby-debug/interface.rb,
	  branches/stable/cli/ruby-debug/processor.rb,
	  branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug-base.rb,
	  branches/stable/lib/ruby-debug.rb,
	  branches/stable/lib/ruby-debug/command.rb,
	  branches/stable/lib/ruby-debug/commands,
	  branches/stable/lib/ruby-debug/interface.rb,
	  branches/stable/lib/ruby-debug/processor.rb: repackaging
	  ruby-debug

2007-02-23 20:56  Kent Sibilev

	* branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug.rb: added an option for
	  Debugger.debug_load to stop at the first line of code

2007-02-09 16:56  Kent Sibilev

	* branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug.rb: in remote mode the debugger
	  shouldn't stop inside of rdebug script

2007-02-07 02:42  Kent Sibilev

	* branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug/commands/threads.rb,
	  branches/stable/lib/ruby-debug/processor.rb: should use ignored?
	  method to check for the debugger's thread

2007-02-05 20:34  Kent Sibilev

	* branches/stable/ext, branches/stable/ext/ruby_debug.c,
	  branches/stable/ext/win32: --

2007-02-05 20:16  Kent Sibilev

	* branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug/commands/frame.rb: fixed another
	  issue where a bogus frame is being left in the stack

2007-02-05 08:08  Kent Sibilev

	* branches/stable/ext/ruby_debug.c: should save frame id as well

2007-02-05 07:55  Kent Sibilev

	* branches/stable/ext/ruby_debug.c: fix stack corruption error

2007-02-05 01:16  Kent Sibilev

	* branches/stable/ext/ruby_debug.c: store frame's self and
	  dyna_vars along with file/line information

2007-02-04 23:36  Kent Sibilev

	* branches/stable/CHANGES, branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug/commands/settings.rb: seg fault
	  bugfixes
	  fixed suspend/resume

2007-02-04 05:06  Kent Sibilev

	* branches/stable/ext/ruby_debug.c: restore prev patch

2007-02-04 03:49  Kent Sibilev

	* branches/stable/ext/ruby_debug.c: --

2007-02-04 03:49  Kent Sibilev

	* branches/stable/CHANGES, branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug.rb: A better fix for the
	  segmentation fault

2007-02-03 22:02  Kent Sibilev

	* branches/stable/ext/ruby_debug.c: found a better patch

2007-02-03 20:24  Kent Sibilev

	* branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug.rb,
	  branches/stable/lib/ruby-debug/processor.rb: fix seg fault by
	  avoiding ruby's bug
	  fixed Context#resume
	  when handling post-mortem all threads must be suspended

2007-02-02 18:47  Kent Sibilev

	* branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug/commands/frame.rb: removed
	  ambiguity with down command

2007-02-01 22:15  Kent Sibilev

	* branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug/commands/eval.rb: made eval
	  command available from the control thread

2007-02-01 17:30  Kent Sibilev

	* branches/stable/ext/ruby_debug.c: fixed dllexport for windows
	  platform

2007-02-01 15:49  Kent Sibilev

	* branches/stable/ext/ruby_debug.c: ditto

2007-02-01 07:22  Kent Sibilev

	* branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug/command.rb,
	  branches/stable/lib/ruby-debug/commands/breakpoints.rb,
	  branches/stable/lib/ruby-debug/commands/eval.rb,
	  branches/stable/lib/ruby-debug/commands/frame.rb,
	  branches/stable/lib/ruby-debug/commands/list.rb,
	  branches/stable/lib/ruby-debug/commands/settings.rb,
	  branches/stable/lib/ruby-debug/commands/threads.rb: added setting
	  command
	  added Context#suspended? method
	  dispay suspended status in the thread list
	  display frame starting from zero

2007-01-31 22:12  Kent Sibilev

	* branches/stable/ext/ruby_debug.c: store object ids in VALUE type

2007-01-31 21:04  Kent Sibilev

	* branches/stable/ext/ruby_debug.c: ditto

2007-01-31 20:44  Kent Sibilev

	* branches/stable/ext/ruby_debug.c: make a deep copy when capturing
	  post mortem context

2007-01-31 19:39  Kent Sibilev

	* branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug/command.rb: fixed frame count
	  added frame_self method to context

2007-01-31 16:48  Kent Sibilev

	* branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug.rb,
	  branches/stable/lib/ruby-debug/command.rb,
	  branches/stable/lib/ruby-debug/commands/eval.rb,
	  branches/stable/lib/ruby-debug/commands/frame.rb,
	  branches/stable/lib/ruby-debug/commands/irb.rb,
	  branches/stable/lib/ruby-debug/commands/variables.rb,
	  branches/stable/lib/ruby-debug/processor.rb: removed all
	  references to frames array
	  fixed post-mortem debugging

2007-01-31 00:41  Kent Sibilev

	* branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug.rb,
	  branches/stable/lib/ruby-debug/commands/frame.rb,
	  branches/stable/lib/ruby-debug/commands/variables.rb,
	  branches/stable/lib/ruby-debug/processor.rb: refactored out frame
	  class and preallocate stack
	  made local variable available even when bindings are not
	  collected.

2007-01-28 06:22  Kent Sibilev

	* branches/stable/AUTHORS, branches/stable/CHANGES,
	  branches/stable/Rakefile, branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug/commands/frame.rb: - Control
	  thread is always started by rdebug script.
	  - Ability to specify negative frame number to frame commands.
	  Patch from R. Bernstein.

2007-01-28 04:59  Kent Sibilev

	* branches/stable/ext/ruby_debug.c: --

2007-01-28 04:52  Kent Sibilev

	* branches/stable/CHANGES, branches/stable/bin/rdebug,
	  branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug.rb,
	  branches/stable/lib/ruby-debug/commands/control.rb: added top
	  frame caching
	  control thread is always started by rdebug script

2007-01-28 01:21  Kent Sibilev

	* branches/stable/CHANGES, branches/stable/ext/ruby_debug.c:

2007-01-27 01:43  Kent Sibilev

	* branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug.rb,
	  branches/stable/lib/ruby-debug/command.rb,
	  branches/stable/lib/ruby-debug/commands/frame.rb,
	  branches/stable/lib/ruby-debug/commands/stepping.rb,
	  branches/stable/lib/ruby-debug/commands/threads.rb,
	  branches/stable/lib/ruby-debug/commands/tmate.rb,
	  branches/stable/lib/ruby-debug/processor.rb: another performance
	  optimization

2007-01-26 19:31  Kent Sibilev

	* branches/stable/CHANGES, branches/stable/ext/ruby_debug.c,
	  branches/stable/ext/win32/ruby_debug.so: --

2007-01-26 17:59  Kent Sibilev

	* branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug/commands/breakpoints.rb: revisited
	  file name comparing procedure

2007-01-26 09:03  Kent Sibilev

	* branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug/commands/breakpoints.rb:
	  performance improvements

2007-01-26 03:12  Kent Sibilev

	* branches/stable/CHANGES, branches/stable/bin/rdebug,
	  branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug.rb,
	  branches/stable/lib/ruby-debug/command.rb,
	  branches/stable/lib/ruby-debug/commands/irb.rb,
	  branches/stable/lib/ruby-debug/commands/variables.rb,
	  branches/stable/lib/ruby-debug/processor.rb: added option to
	  exclude collecting of frame bindings

2007-01-25 01:41  Kent Sibilev

	* branches/stable/ext/ruby_debug.c: small optimization

2007-01-25 00:55  Kent Sibilev

	* branches/stable/ext/ruby_debug.c: remove the live thread ref from
	  locker structure as well

2007-01-24 20:42  Kent Sibilev

	* branches/stable/CHANGES, branches/stable/ext/ruby_debug.c: don't
	  keep a ref to a live thread.
	  check contexts that their threads are alive

2007-01-21 03:34  Kent Sibilev

	* branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug.rb,
	  branches/stable/lib/ruby-debug/commands/breakpoints.rb: assign an
	  id to the breakpoint

2007-01-21 01:20  Kent Sibilev

	* branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug.rb,
	  branches/stable/lib/ruby-debug/interface.rb,
	  branches/stable/lib/ruby-debug/processor.rb: added
	  post_mortem_method wrap method

2006-12-21 20:30  Kent Sibilev

	* branches/stable/bin/rdebug,
	  branches/stable/ext/win32/ruby_debug.so: fix of restart command
	  for windows platform

2006-12-21 13:43  Kent Sibilev

	* branches/stable/ext/ruby_debug.c,
	  branches/stable/ext/win32/ruby_debug.so,
	  branches/stable/lib/ruby-debug/commands/trace.rb: fixed trace
	  command in post-mortem mode

2006-12-21 01:08  Kent Sibilev

	* branches/stable/ext/ruby_debug.c,
	  branches/stable/ext/win32/ruby_debug.so,
	  branches/stable/lib/ruby-debug/commands/irb.rb: fixes irb help
	  command

2006-12-20 21:19  Kent Sibilev

	* branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug.rb: check that debugger has been
	  started

2006-12-20 20:41  Kent Sibilev

	* branches/stable/ext/win32/ruby_debug.so:

2006-12-20 20:14  Kent Sibilev

	* branches/stable/ext/ruby_debug.c: bumped version

2006-12-20 19:38  Kent Sibilev

	* branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug.rb,
	  branches/stable/lib/ruby-debug/command.rb,
	  branches/stable/lib/ruby-debug/commands/control.rb,
	  branches/stable/lib/ruby-debug/commands/frame.rb,
	  branches/stable/lib/ruby-debug/commands/irb.rb,
	  branches/stable/lib/ruby-debug/commands/stepping.rb,
	  branches/stable/lib/ruby-debug/commands/threads.rb,
	  branches/stable/lib/ruby-debug/commands/tmate.rb,
	  branches/stable/lib/ruby-debug/processor.rb: initial support for
	  post-mortem debugging

2006-12-18 08:34  Kent Sibilev

	* branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug.rb,
	  branches/stable/lib/ruby-debug/commands/irb.rb,
	  branches/stable/lib/ruby-debug/commands/list.rb: added irb
	  command
	  fixed source_for method

2006-12-01 06:47  Kent Sibilev

	* branches/stable/CHANGES, branches/stable/ext/ruby_debug.c,
	  branches/stable/lib/ruby-debug.rb:

2006-11-16 00:01  Kent Sibilev

	* branches/stable: added the new branch for the stable version

2006-10-15 22:43  Kent Sibilev

	* branches/ver_0_4_4: branching a stable version

2006-10-15 22:26  Kent Sibilev

	* win32/ruby_debug.so, trunk/lib/ruby-debug.rb: remove unused
	  require
	  uploaded new windows binary

2006-10-15 21:56  Kent Sibilev

	* ruby_debug.c: Debugger.start yields to the block even if it's
	  already started

2006-10-15 16:54  Kent Sibilev

	* ruby_debug.c, trunk/lib/ruby-debug.rb,
	  trunk/lib/ruby-debug/commands/threads.rb: new logic of context
	  suspend/resume

2006-10-15 07:36  Kent Sibilev

	* trunk/bin/rdebug, ruby_debug.c, trunk/lib/ruby-debug.rb,
	  trunk/lib/ruby-debug/lock.rb: fixed locking of debugger threads

2006-10-14 19:11  Kent Sibilev

	* trunk/Rakefile, ruby_debug.c: make skip status local to a thread
	  instead of globally disabling the debugger.

2006-10-09 22:01  Kent Sibilev

	* ruby_debug.c, win32/ruby_debug.so,
	  trunk/lib/ruby-debug/interface.rb: fixes for windows version

2006-10-09 19:06  Kent Sibilev

	* trunk/CHANGES, ruby_debug.c, trunk/lib/ruby-debug.rb,
	  trunk/lib/ruby-debug/interface.rb: added Debugger.skip and
	  Debugger.debug_at_exit methods

2006-10-09 16:48  Kent Sibilev

	* trunk/.gdb_history, .gdb_history, Makefile, ruby_debug.bundle:
	  remove intermediate files

2006-10-09 16:44  Kent Sibilev

	* trunk, trunk/.gdb_history, trunk/CHANGES, trunk/LICENSE,
	  trunk/README, trunk/Rakefile, trunk/bin, trunk/bin/rdebug,
	  trunk/doc, ., .gdb_history, Makefile, extconf.rb,
	  ruby_debug.bundle, ruby_debug.c, win32, win32/ruby_debug.so,
	  trunk/lib, trunk/lib/ruby-debug, trunk/lib/ruby-debug.rb,
	  trunk/lib/ruby-debug/command.rb, trunk/lib/ruby-debug/commands,
	  trunk/lib/ruby-debug/commands/breakpoints.rb,
	  trunk/lib/ruby-debug/commands/catchpoint.rb,
	  trunk/lib/ruby-debug/commands/control.rb,
	  trunk/lib/ruby-debug/commands/display.rb,
	  trunk/lib/ruby-debug/commands/eval.rb,
	  trunk/lib/ruby-debug/commands/frame.rb,
	  trunk/lib/ruby-debug/commands/help.rb,
	  trunk/lib/ruby-debug/commands/list.rb,
	  trunk/lib/ruby-debug/commands/method.rb,
	  trunk/lib/ruby-debug/commands/script.rb,
	  trunk/lib/ruby-debug/commands/stepping.rb,
	  trunk/lib/ruby-debug/commands/threads.rb,
	  trunk/lib/ruby-debug/commands/tmate.rb,
	  trunk/lib/ruby-debug/commands/trace.rb,
	  trunk/lib/ruby-debug/commands/variables.rb,
	  trunk/lib/ruby-debug/interface.rb, trunk/lib/ruby-debug/lock.rb,
	  trunk/lib/ruby-debug/processor.rb: initial import