ruby-debug 0.10.1 → 0.10.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. data/CHANGES +7 -0
  2. data/ChangeLog +315 -278
  3. data/Rakefile +6 -6
  4. data/bin/rdebug +7 -3
  5. data/cli/ruby-debug.rb +2 -2
  6. data/cli/ruby-debug/commands/breakpoints.rb +15 -15
  7. data/cli/ruby-debug/commands/catchpoint.rb +18 -6
  8. data/cli/ruby-debug/commands/continue.rb +12 -6
  9. data/cli/ruby-debug/commands/info.rb +3 -3
  10. data/cli/ruby-debug/commands/irb.rb +2 -2
  11. data/cli/ruby-debug/commands/list.rb +1 -1
  12. data/cli/ruby-debug/commands/method.rb +44 -2
  13. data/cli/ruby-debug/commands/save.rb +16 -6
  14. data/cli/ruby-debug/commands/set.rb +11 -8
  15. data/cli/ruby-debug/commands/show.rb +28 -24
  16. data/cli/ruby-debug/commands/trace.rb +35 -11
  17. data/cli/ruby-debug/commands/variables.rb +47 -4
  18. data/cli/ruby-debug/interface.rb +28 -8
  19. data/cli/ruby-debug/processor.rb +6 -4
  20. data/rdbg.rb +0 -0
  21. data/test/base/base.rb +0 -0
  22. data/test/base/binding.rb +0 -0
  23. data/test/base/catchpoint.rb +0 -0
  24. data/test/bp_loop_issue.rb +3 -0
  25. data/test/classes.rb +11 -0
  26. data/test/cli/commands/catchpoint_test.rb +35 -0
  27. data/test/data/break_loop_bug.cmd +5 -0
  28. data/test/data/break_loop_bug.right +15 -0
  29. data/test/data/breakpoints.cmd +1 -1
  30. data/test/data/breakpoints.right +8 -12
  31. data/test/data/catch.cmd +17 -0
  32. data/test/data/catch.right +37 -0
  33. data/test/data/emacs_basic.right +2 -7
  34. data/test/data/frame.cmd +3 -0
  35. data/test/data/frame.right +4 -0
  36. data/test/data/method.cmd +10 -0
  37. data/test/data/method.right +21 -0
  38. data/test/data/methodsig.cmd +10 -0
  39. data/test/data/methodsig.right +20 -0
  40. data/test/data/output.right +0 -10
  41. data/test/data/quit.right +0 -9
  42. data/test/data/raise.right +1 -1
  43. data/test/data/save.cmd +33 -0
  44. data/test/data/save.right +59 -0
  45. data/test/data/setshow.cmd +13 -0
  46. data/test/data/setshow.right +25 -0
  47. data/test/dollar-0.rb +0 -0
  48. data/test/gcd-dbg.rb +0 -0
  49. data/test/helper.rb +24 -2
  50. data/test/pm-base.rb +0 -0
  51. data/test/pm.rb +0 -0
  52. data/test/raise.rb +0 -0
  53. data/test/tdebug.rb +5 -6
  54. data/test/test-annotate.rb +0 -0
  55. data/test/test-break-bad.rb +11 -0
  56. data/test/test-breakpoints.rb +0 -0
  57. data/test/test-catch.rb +25 -0
  58. data/test/test-condition.rb +0 -0
  59. data/test/test-ctrl.rb +0 -0
  60. data/test/test-display.rb +0 -0
  61. data/test/test-dollar-0.rb +0 -0
  62. data/test/test-edit.rb +0 -0
  63. data/test/test-emacs-basic.rb +2 -2
  64. data/test/test-enable.rb +0 -0
  65. data/test/test-finish.rb +0 -0
  66. data/test/test-frame.rb +11 -3
  67. data/test/test-help.rb +0 -0
  68. data/test/test-hist.rb +0 -0
  69. data/test/test-info-thread.rb +0 -0
  70. data/test/test-info-var.rb +0 -0
  71. data/test/test-info.rb +0 -0
  72. data/test/test-init.rb +3 -1
  73. data/test/test-list.rb +0 -0
  74. data/test/test-method.rb +34 -0
  75. data/test/test-output.rb +0 -0
  76. data/test/test-pm.rb +0 -0
  77. data/test/test-quit.rb +0 -0
  78. data/test/test-raise.rb +0 -0
  79. data/test/test-save.rb +25 -0
  80. data/test/test-setshow.rb +0 -0
  81. data/test/test-source.rb +0 -0
  82. data/test/test-stepping.rb +0 -0
  83. data/test/test-trace.rb +0 -0
  84. metadata +178 -155
  85. data/cli/ruby-debug/commands/disassemble.RB +0 -38
  86. data/test/except-bug2.rb +0 -7
data/CHANGES CHANGED
@@ -1,3 +1,10 @@
1
+ 0.10.2
2
+ - debugger(steps=0) breaks inside of debugger rather than wait for a line event.
3
+ - trace var varname (stop|nostop) added which issues trace_var.
4
+ - start method is now properly defined in Debugger module
5
+ - fixed 'finish' command
6
+ - rdebug script now works with Ruby 1.8.7
7
+
1
8
  0.10.1
2
9
  4/10/08 - in honor of the 30th Birthday of Kate Schwarz
3
10
 
data/ChangeLog CHANGED
@@ -1,3 +1,209 @@
1
+ 2008-05-23 14:57 Rocky Bernstein
2
+
3
+ * cli/ruby-debug/commands/save.rb: Catchpoints have changed. Fix
4
+ bug in saving them.
5
+
6
+ 2008-05-23 01:04 Rocky Bernstein
7
+
8
+ * cli/ruby-debug/commands/catchpoint.rb,
9
+ cli/ruby-debug/commands/info.rb, ext/breakpoint.c,
10
+ test/cli/commands/catchpoint_test.rb, test/data/catch.cmd,
11
+ test/data/catch.right, test/test-catch.rb: Lots of bogosity fixed
12
+ in catchpoint handling. Added "catch xxx off".
13
+ Confirm when deleting all catchpoints. Correct C rdoc.
14
+ #20237
15
+
16
+ 2008-05-20 07:20 Rocky Bernstein
17
+
18
+ * doc/rdebug-emacs.texi, doc/ruby-debug.texi: Use a straight quote
19
+ in the typewriter font.
20
+
21
+ 2008-05-17 22:11 Rocky Bernstein
22
+
23
+ * cli/ruby-debug/commands/save.rb: Wording a little closer to gdb's
24
+ ;-)
25
+
26
+ 2008-05-17 11:35 Rocky Bernstein
27
+
28
+ * doc/rdebug-emacs.texi, doc/ruby-debug.texi: e.g. -> e.g.@:
29
+
30
+ 2008-05-15 18:06 Rocky Bernstein
31
+
32
+ * test, test/.cvsignore: Ignore config.private.yaml which folks may
33
+ use/customize to omit tests
34
+
35
+ 2008-05-15 17:52 Rocky Bernstein
36
+
37
+ * Rakefile, test/cli, test/cli/commands,
38
+ test/cli/commands/catchpoint_test.rb: Regression test for recent
39
+ "catch nn off" error. Again from Martin Krauskopf
40
+
41
+ 2008-05-15 16:05 Rocky Bernstein
42
+
43
+ * ChangeLog, cli/ruby-debug/commands/catchpoint.rb, lib/ChangeLog:
44
+ Handle "catch nnn off" Forgotten there during r656.
45
+ From mkrauskopf [#20156].
46
+
47
+ 2008-05-12 03:21 Rocky Bernstein
48
+
49
+ * cli/ruby-debug/commands/irb.rb: Small doc fix.
50
+
51
+ 2008-05-11 15:25 Rocky Bernstein
52
+
53
+ * test/data/raise.right: tdebug.rb got a line shorter.
54
+
55
+ 2008-05-11 09:03 Rocky Bernstein
56
+
57
+ * test/helper.rb, test/test-init.rb: Patch #19934 multi-interpreter
58
+ patch from Martin Krauskopf
59
+
60
+ 2008-05-11 08:38 Rocky Bernstein
61
+
62
+ * bin/rdebug, ext/ruby_debug.c, test/data/output.right,
63
+ test/data/quit.right, test/tdebug.rb: Remove stop in debug_load
64
+ due to Debugger.start getting called twice.
65
+ The fix -- for now -- is to add another parameter to debug_load
66
+ to
67
+ indicate not to increment debug_count. We could also make that
68
+ the
69
+ default in debug_load as well, but debug_load might be useful in
70
+ other
71
+ situations and where control_threads are not relevant (which is
72
+ why we
73
+ need to call Debugger.start rather than let debug_load do it).
74
+
75
+ Bug #19930
76
+
77
+ 2008-05-05 18:05 Rocky Bernstein
78
+
79
+ * ChangeLog, lib/ChangeLog, test/data/frame.right,
80
+ test/test-frame.rb: make test-frame installation independent. Bug
81
+ #19931
82
+
83
+ 2008-05-01 23:16 Rocky Bernstein
84
+
85
+ * doc/ruby-debug.texi: Remove a Texism. texinfo does not do or need
86
+ italic correction.
87
+
88
+ 2008-04-30 20:14 Rocky Bernstein
89
+
90
+ * doc/ruby-debug.texi: Fix doc for binding_n().
91
+
92
+ 2008-04-29 14:00 Rocky Bernstein
93
+
94
+ * cli/ruby-debug/commands/method.rb, doc/ruby-debug.texi,
95
+ test/classes.rb, test/data/methodsig.right: Small doc and test
96
+ improvements on 'method signature'
97
+
98
+ 2008-04-29 13:37 Rocky Bernstein
99
+
100
+ * ChangeLog, cli/ruby-debug/commands/breakpoints.rb,
101
+ cli/ruby-debug/commands/continue.rb, lib/ChangeLog,
102
+ test/data/frame.cmd, test/data/frame.right: Test line number in
103
+ "continue" command for validity.
104
+
105
+ 2008-04-29 09:11 Rocky Bernstein
106
+
107
+ * cli/ruby-debug/commands/method.rb,
108
+ cli/ruby-debug/commands/set.rb,
109
+ cli/ruby-debug/commands/variables.rb, test/classes.rb,
110
+ test/data/method.cmd, test/data/method.right,
111
+ test/data/methodsig.cmd, test/data/methodsig.right,
112
+ test/data/setshow.right, test/test-method.rb: Add "method
113
+ signature" command to show a method's signature.
114
+
115
+ 2008-04-29 08:23 Rocky Bernstein
116
+
117
+ * test/config.yaml: Forgot to add this on last commit.
118
+
119
+ 2008-04-28 16:42 Rocky Bernstein
120
+
121
+ * cli/ruby-debug/commands/set.rb, test/data/setshow.cmd,
122
+ test/data/setshow.right: Catch errors in improper set callstyle
123
+ parameter. Bug #19792
124
+
125
+ 2008-04-28 16:16 Rocky Bernstein
126
+
127
+ * ChangeLog, lib/ChangeLog, test/helper.rb: From Martin Krauskopf
128
+ via patch #19779
129
+
130
+ Allow folks to configure Ruby used for CLI tests in the
131
+ test/config.yaml. The defaults are for native Ruby, so nothing
132
+ needs
133
+ to be done for ruby-debug.
134
+
135
+ Developers of interfaces other than cli might override
136
+ config.yaml by
137
+ customized config.private.yaml which is ignored. So there will be
138
+ no
139
+ trash in e.g. 'svn st' output when developer customize the Ruby
140
+ to be
141
+ used.
142
+
143
+ Handy for alternative interface implementations using
144
+ svn:externals.
145
+
146
+ 2008-04-27 08:28 Rocky Bernstein
147
+
148
+ * emacs/rdebug-cmd.el, emacs/rdebug-track.el: Reduce spurious
149
+ read-only setting when short-key is turned
150
+ on/off in the command buffer.
151
+
152
+ 2008-04-25 02:54 Rocky Bernstein
153
+
154
+ * CHANGES, emacs/rdebug-cmd.el, emacs/rdebug-gud.el,
155
+ emacs/rdebug-source.el, emacs/rdebug-track.el: Try to get
156
+ rdebug-track under control again.
157
+ Remove "<" in the command buffer as a local key setting.
158
+ Make more checkdoc friendly.
159
+
160
+ 2008-04-22 02:49 Rocky Bernstein
161
+
162
+ * doc/ruby-debug.texi, lib/ruby-debug-base.rb: Experiment with
163
+ debugger(steps=0). Puts us in the debugger call, but this may be
164
+ the best we can do for now. See tracker
165
+ #19639.
166
+
167
+ 2008-04-20 21:38 Rocky Bernstein
168
+
169
+ * doc/rdebug-emacs.texi, doc/ruby-debug.texi: rdebug-emacs.texi:
170
+ update nodes so makeinfo will work.
171
+ rdebug-texi: Note slight preference for ruby -rtracer over rdebug
172
+ --trace.
173
+
174
+ 2008-04-19 13:22 Rocky Bernstein
175
+
176
+ * ext/ruby_debug.c, test/bp_loop_issue.rb,
177
+ test/data/break_loop_bug.cmd, test/data/break_loop_bug.right,
178
+ test/data/breakpoints.cmd, test/data/breakpoints.right,
179
+ test/data/emacs_basic.right, test/test-break-bad.rb,
180
+ test/test-emacs-basic.rb: Change test for whether we have moved
181
+ off a line or not for purposes
182
+ of stopping at a breakpoint on a line. The line events for which
183
+ there
184
+ are normally two stops are on NODE if's before the if and after
185
+ the
186
+ expression evaluation. Tracker #19594.
187
+
188
+ 2008-04-16 01:11 Rocky Bernstein
189
+
190
+ * ChangeLog, cli/ruby-debug/commands/show.rb,
191
+ cli/ruby-debug/interface.rb, cli/ruby-debug/processor.rb,
192
+ ext/ruby_debug.c, lib/ChangeLog, test/data/setshow.cmd,
193
+ test/data/setshow.right: In 0.10.2 now. Some work to cope systems
194
+ without readline. More work is needed.
195
+ Add test of "set autoeval." Undefined command message more
196
+ closely like gdb's.
197
+
198
+ 2008-04-15 23:56 Rocky Bernstein
199
+
200
+ * doc/ruby-debug.texi: Note that Debugger.start is currently broken
201
+ when used with a block.
202
+
203
+ 2008-04-11 22:24 Anders Lindgren
204
+
205
+ * doc/rdebug-emacs.texi: Section on 'customize' added.
206
+
1
207
  2008-04-10 08:49 Rocky Bernstein
2
208
 
3
209
  * ChangeLog, cli/ruby-debug/command.rb, lib/ChangeLog: linecache is
@@ -4169,16 +4375,8 @@
4169
4375
 
4170
4376
  2007-05-24 13:03 Rocky Bernstein
4171
4377
 
4172
- * branches/rocky, branches/rocky/Rakefile,
4173
- branches/rocky/cli/ruby-debug/command.rb,
4174
- branches/rocky/cli/ruby-debug/commands/frame.rb,
4175
- branches/rocky/cli/ruby-debug/commands/help.rb,
4176
- branches/rocky/cli/ruby-debug/commands/method.rb,
4177
- branches/rocky/cli/ruby-debug/commands/settings.rb,
4178
- branches/rocky/cli/ruby-debug/commands/threads.rb,
4179
- branches/rocky/cli/ruby-debug/commands/variables.rb,
4180
- branches/rocky/ext/ruby_debug.c, Rakefile,
4181
- cli/ruby-debug/command.rb, cli/ruby-debug/commands/frame.rb,
4378
+ * Rakefile, cli/ruby-debug/command.rb,
4379
+ cli/ruby-debug/commands/frame.rb,
4182
4380
  cli/ruby-debug/commands/help.rb,
4183
4381
  cli/ruby-debug/commands/method.rb,
4184
4382
  cli/ruby-debug/commands/settings.rb,
@@ -4550,600 +4748,439 @@
4550
4748
 
4551
4749
  2007-03-24 18:17 Kent Sibilev
4552
4750
 
4553
- * branches/stable, .: stable becomes the trunk
4751
+ * .: stable becomes the trunk
4554
4752
 
4555
4753
  2007-03-24 18:11 Kent Sibilev
4556
4754
 
4557
- * branches/stable/runner.sh:
4755
+ * :
4558
4756
 
4559
4757
  2007-03-24 18:03 Kent Sibilev
4560
4758
 
4561
- * branches/stable/ext/ruby_debug.c: ported stop reason from the
4562
- trunk
4759
+ * : ported stop reason from the trunk
4563
4760
 
4564
4761
  2007-03-19 08:05 Kent Sibilev
4565
4762
 
4566
- * branches/stable/CHANGES:
4763
+ * :
4567
4764
 
4568
4765
  2007-03-19 07:59 Kent Sibilev
4569
4766
 
4570
- * branches/stable/cli/debugger.rb,
4571
- branches/stable/cli/ruby-debug/debugger.rb:
4767
+ * :
4572
4768
 
4573
4769
  2007-03-19 07:46 Kent Sibilev
4574
4770
 
4575
- * branches/stable/cli/debugger.rb,
4576
- branches/stable/cli/ruby-debug.rb,
4577
- branches/stable/ext/ruby_debug.c: fixes processor to handler
4578
- renaming
4771
+ * : fixes processor to handler renaming
4579
4772
  added a shortcut module
4580
4773
 
4581
4774
  2007-03-15 04:00 Kent Sibilev
4582
4775
 
4583
- * branches/stable/Rakefile:
4776
+ * :
4584
4777
 
4585
4778
  2007-03-15 02:59 Kent Sibilev
4586
4779
 
4587
- * branches/stable/cli/ruby-debug/commands/settings.rb:
4780
+ * :
4588
4781
 
4589
4782
  2007-03-15 02:58 Kent Sibilev
4590
4783
 
4591
- * branches/stable/CHANGES,
4592
- branches/stable/cli/ruby-debug/commands/settings.rb: added 'set
4593
- autoirb' setting
4784
+ * : added 'set autoirb' setting
4594
4785
 
4595
4786
  2007-03-15 02:46 Kent Sibilev
4596
4787
 
4597
- * branches/stable/cli/ruby-debug/commands/display.rb:
4788
+ * :
4598
4789
 
4599
4790
  2007-03-15 02:39 Kent Sibilev
4600
4791
 
4601
- * branches/stable/CHANGES:
4792
+ * :
4602
4793
 
4603
4794
  2007-03-15 02:32 Kent Sibilev
4604
4795
 
4605
- * branches/stable/cli/ruby-debug/command.rb:
4796
+ * :
4606
4797
 
4607
4798
  2007-03-15 02:32 Kent Sibilev
4608
4799
 
4609
- * branches/stable/cli/ruby-debug/commands/control.rb,
4610
- branches/stable/cli/ruby-debug/commands/display.rb,
4611
- branches/stable/cli/ruby-debug/commands/help.rb: fixed help
4612
- command
4800
+ * : fixed help command
4613
4801
 
4614
4802
  2007-03-13 17:06 Kent Sibilev
4615
4803
 
4616
- * branches/stable/cli/ruby-debug.rb: missing file
4804
+ * : missing file
4617
4805
 
4618
4806
  2007-03-13 17:06 Kent Sibilev
4619
4807
 
4620
- * branches/stable/Rakefile,
4621
- branches/stable/cli/ruby-debug/commands/list.rb,
4622
- branches/stable/lib/ruby-debug-base.rb: fixed rdoc
4808
+ * : fixed rdoc
4623
4809
 
4624
4810
  2007-03-06 22:15 Kent Sibilev
4625
4811
 
4626
- * branches/stable/cli/ruby-debug/commands/eval.rb,
4627
- branches/stable/cli/ruby-debug/commands/list.rb: updated help for
4628
- list and eval commands
4812
+ * : updated help for list and eval commands
4629
4813
 
4630
4814
  2007-03-06 19:51 Kent Sibilev
4631
4815
 
4632
- * branches/stable/cli/ruby-debug/processor.rb: pass the current
4633
- state to the interface object if it accepts it
4816
+ * : pass the current state to the interface object if it accepts it
4634
4817
 
4635
4818
  2007-03-01 23:44 Kent Sibilev
4636
4819
 
4637
- * branches/stable/lib/ruby-debug,
4638
- branches/stable/lib/ruby-debug-base.rb: fixed post-mortem
4820
+ * : fixed post-mortem
4639
4821
 
4640
4822
  2007-02-27 08:02 Kent Sibilev
4641
4823
 
4642
- * branches/stable/Rakefile, branches/stable/cli,
4643
- branches/stable/cli/ruby-debug,
4644
- branches/stable/cli/ruby-debug/command.rb,
4645
- branches/stable/cli/ruby-debug/commands,
4646
- branches/stable/cli/ruby-debug/interface.rb,
4647
- branches/stable/cli/ruby-debug/processor.rb,
4648
- branches/stable/ext/ruby_debug.c,
4649
- branches/stable/lib/ruby-debug-base.rb,
4650
- branches/stable/lib/ruby-debug.rb,
4651
- branches/stable/lib/ruby-debug/command.rb,
4652
- branches/stable/lib/ruby-debug/commands,
4653
- branches/stable/lib/ruby-debug/interface.rb,
4654
- branches/stable/lib/ruby-debug/processor.rb: repackaging
4655
- ruby-debug
4824
+ * : repackaging ruby-debug
4656
4825
 
4657
4826
  2007-02-23 20:56 Kent Sibilev
4658
4827
 
4659
- * branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
4660
- branches/stable/lib/ruby-debug.rb: added an option for
4661
- Debugger.debug_load to stop at the first line of code
4828
+ * : added an option for Debugger.debug_load to stop at the first
4829
+ line of code
4662
4830
 
4663
4831
  2007-02-12 06:59 Kent Sibilev
4664
4832
 
4665
- * branches/stable/bin/rdebug,
4666
- branches/stable/lib/ruby-debug/processor.rb: added --emacs option
4833
+ * : added --emacs option
4667
4834
 
4668
4835
  2007-02-09 16:56 Kent Sibilev
4669
4836
 
4670
- * branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
4671
- branches/stable/lib/ruby-debug.rb: in remote mode the debugger
4672
- shouldn't stop inside of rdebug script
4837
+ * : in remote mode the debugger shouldn't stop inside of rdebug
4838
+ script
4673
4839
 
4674
4840
  2007-02-09 06:59 Kent Sibilev
4675
4841
 
4676
- * branches/stable/CHANGES:
4842
+ * :
4677
4843
 
4678
4844
  2007-02-09 06:20 Kent Sibilev
4679
4845
 
4680
- * branches/stable/bin/rdebug,
4681
- branches/stable/lib/ruby-debug/interface.rb: --
4846
+ * : --
4682
4847
 
4683
4848
  2007-02-09 01:00 Kent Sibilev
4684
4849
 
4685
- * branches/stable/bin/rdebug, branches/stable/lib/ruby-debug.rb,
4686
- branches/stable/lib/ruby-debug/commands/list.rb,
4687
- branches/stable/lib/ruby-debug/commands/settings.rb: fixed code
4688
- reloading
4850
+ * : fixed code reloading
4689
4851
  made 'reload on' as a part of the 'set' command
4690
4852
  evaluate ~/.rdebugrc as an init script
4691
4853
 
4692
4854
  2007-02-07 02:42 Kent Sibilev
4693
4855
 
4694
- * branches/stable/ext/ruby_debug.c,
4695
- branches/stable/lib/ruby-debug/commands/threads.rb,
4696
- branches/stable/lib/ruby-debug/processor.rb: should use ignored?
4697
- method to check for the debugger's thread
4856
+ * : should use ignored? method to check for the debugger's thread
4698
4857
 
4699
4858
  2007-02-06 22:21 Kent Sibilev
4700
4859
 
4701
- * branches/stable/lib/ruby-debug/command.rb:
4860
+ * :
4702
4861
 
4703
4862
  2007-02-05 22:48 Kent Sibilev
4704
4863
 
4705
- * branches/stable/lib/ruby-debug/commands/frame.rb: --
4864
+ * : --
4706
4865
 
4707
4866
  2007-02-05 22:11 Kent Sibilev
4708
4867
 
4709
- * branches/stable/lib/ruby-debug/commands/frame.rb: fixed emacs
4710
- integration
4868
+ * : fixed emacs integration
4711
4869
 
4712
4870
  2007-02-05 20:40 Kent Sibilev
4713
4871
 
4714
- * branches/stable/CHANGES: --
4872
+ * : --
4715
4873
 
4716
4874
  2007-02-05 20:38 Kent Sibilev
4717
4875
 
4718
- * branches/stable/CHANGES: --
4876
+ * : --
4719
4877
 
4720
4878
  2007-02-05 20:34 Kent Sibilev
4721
4879
 
4722
- * branches/stable/ext, branches/stable/ext/ruby_debug.c,
4723
- branches/stable/ext/win32: --
4880
+ * : --
4724
4881
 
4725
4882
  2007-02-05 20:16 Kent Sibilev
4726
4883
 
4727
- * branches/stable/ext/ruby_debug.c,
4728
- branches/stable/lib/ruby-debug/commands/frame.rb: fixed another
4729
- issue where a bogus frame is being left in the stack
4884
+ * : fixed another issue where a bogus frame is being left in the
4885
+ stack
4730
4886
 
4731
4887
  2007-02-05 08:08 Kent Sibilev
4732
4888
 
4733
- * branches/stable/ext/ruby_debug.c: should save frame id as well
4889
+ * : should save frame id as well
4734
4890
 
4735
4891
  2007-02-05 07:55 Kent Sibilev
4736
4892
 
4737
- * branches/stable/ext/ruby_debug.c: fix stack corruption error
4893
+ * : fix stack corruption error
4738
4894
 
4739
4895
  2007-02-05 01:16 Kent Sibilev
4740
4896
 
4741
- * branches/stable/ext/ruby_debug.c: store frame's self and
4742
- dyna_vars along with file/line information
4897
+ * : store frame's self and dyna_vars along with file/line
4898
+ information
4743
4899
 
4744
4900
  2007-02-04 23:36 Kent Sibilev
4745
4901
 
4746
- * branches/stable/CHANGES, branches/stable/ext/ruby_debug.c,
4747
- branches/stable/lib/ruby-debug/commands/settings.rb: seg fault
4748
- bugfixes
4902
+ * : seg fault bugfixes
4749
4903
  fixed suspend/resume
4750
4904
 
4751
4905
  2007-02-04 05:06 Kent Sibilev
4752
4906
 
4753
- * branches/stable/ext/ruby_debug.c: restore prev patch
4907
+ * : restore prev patch
4754
4908
 
4755
4909
  2007-02-04 03:49 Kent Sibilev
4756
4910
 
4757
- * branches/stable/ext/ruby_debug.c: --
4911
+ * : --
4758
4912
 
4759
4913
  2007-02-04 03:49 Kent Sibilev
4760
4914
 
4761
- * branches/stable/CHANGES, branches/stable/ext/ruby_debug.c,
4762
- branches/stable/lib/ruby-debug.rb: A better fix for the
4763
- segmentation fault
4915
+ * : A better fix for the segmentation fault
4764
4916
 
4765
4917
  2007-02-03 22:02 Kent Sibilev
4766
4918
 
4767
- * branches/stable/ext/ruby_debug.c: found a better patch
4919
+ * : found a better patch
4768
4920
 
4769
4921
  2007-02-03 20:33 Kent Sibilev
4770
4922
 
4771
- * branches/stable/CHANGES: --
4923
+ * : --
4772
4924
 
4773
4925
  2007-02-03 20:24 Kent Sibilev
4774
4926
 
4775
- * branches/stable/ext/ruby_debug.c,
4776
- branches/stable/lib/ruby-debug.rb,
4777
- branches/stable/lib/ruby-debug/processor.rb: fix seg fault by
4778
- avoiding ruby's bug
4927
+ * : fix seg fault by avoiding ruby's bug
4779
4928
  fixed Context#resume
4780
4929
  when handling post-mortem all threads must be suspended
4781
4930
 
4782
4931
  2007-02-02 18:47 Kent Sibilev
4783
4932
 
4784
- * branches/stable/ext/ruby_debug.c,
4785
- branches/stable/lib/ruby-debug/commands/frame.rb: removed
4786
- ambiguity with down command
4933
+ * : removed ambiguity with down command
4787
4934
 
4788
4935
  2007-02-01 23:48 Kent Sibilev
4789
4936
 
4790
- * branches/stable/lib/ruby-debug/commands/settings.rb: typo
4937
+ * : typo
4791
4938
 
4792
4939
  2007-02-01 23:10 Kent Sibilev
4793
4940
 
4794
- * branches/stable/CHANGES: changes for build 0.7
4941
+ * : changes for build 0.7
4795
4942
 
4796
4943
  2007-02-01 22:15 Kent Sibilev
4797
4944
 
4798
- * branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
4799
- branches/stable/lib/ruby-debug/commands/eval.rb: made eval
4800
- command available from the control thread
4945
+ * : made eval command available from the control thread
4801
4946
 
4802
4947
  2007-02-01 17:30 Kent Sibilev
4803
4948
 
4804
- * branches/stable/ext/ruby_debug.c: fixed dllexport for windows
4805
- platform
4949
+ * : fixed dllexport for windows platform
4806
4950
 
4807
4951
  2007-02-01 15:49 Kent Sibilev
4808
4952
 
4809
- * branches/stable/ext/ruby_debug.c: ditto
4953
+ * : ditto
4810
4954
 
4811
4955
  2007-02-01 07:22 Kent Sibilev
4812
4956
 
4813
- * branches/stable/ext/ruby_debug.c,
4814
- branches/stable/lib/ruby-debug/command.rb,
4815
- branches/stable/lib/ruby-debug/commands/breakpoints.rb,
4816
- branches/stable/lib/ruby-debug/commands/eval.rb,
4817
- branches/stable/lib/ruby-debug/commands/frame.rb,
4818
- branches/stable/lib/ruby-debug/commands/list.rb,
4819
- branches/stable/lib/ruby-debug/commands/settings.rb,
4820
- branches/stable/lib/ruby-debug/commands/threads.rb: added setting
4821
- command
4957
+ * : added setting command
4822
4958
  added Context#suspended? method
4823
4959
  dispay suspended status in the thread list
4824
4960
  display frame starting from zero
4825
4961
 
4826
4962
  2007-01-31 22:12 Kent Sibilev
4827
4963
 
4828
- * branches/stable/ext/ruby_debug.c: store object ids in VALUE type
4964
+ * : store object ids in VALUE type
4829
4965
 
4830
4966
  2007-01-31 21:13 Kent Sibilev
4831
4967
 
4832
- * branches/stable/lib/ruby-debug/commands/frame.rb: ditto
4968
+ * : ditto
4833
4969
 
4834
4970
  2007-01-31 21:12 Kent Sibilev
4835
4971
 
4836
- * branches/stable/lib/ruby-debug/commands/frame.rb: fixed help
4837
- command
4972
+ * : fixed help command
4838
4973
 
4839
4974
  2007-01-31 21:04 Kent Sibilev
4840
4975
 
4841
- * branches/stable/ext/ruby_debug.c: ditto
4976
+ * : ditto
4842
4977
 
4843
4978
  2007-01-31 20:44 Kent Sibilev
4844
4979
 
4845
- * branches/stable/ext/ruby_debug.c: make a deep copy when capturing
4846
- post mortem context
4980
+ * : make a deep copy when capturing post mortem context
4847
4981
 
4848
4982
  2007-01-31 19:39 Kent Sibilev
4849
4983
 
4850
- * branches/stable/ext/ruby_debug.c,
4851
- branches/stable/lib/ruby-debug/command.rb: fixed frame count
4984
+ * : fixed frame count
4852
4985
  added frame_self method to context
4853
4986
 
4854
4987
  2007-01-31 16:48 Kent Sibilev
4855
4988
 
4856
- * branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
4857
- branches/stable/lib/ruby-debug.rb,
4858
- branches/stable/lib/ruby-debug/command.rb,
4859
- branches/stable/lib/ruby-debug/commands/eval.rb,
4860
- branches/stable/lib/ruby-debug/commands/frame.rb,
4861
- branches/stable/lib/ruby-debug/commands/irb.rb,
4862
- branches/stable/lib/ruby-debug/commands/variables.rb,
4863
- branches/stable/lib/ruby-debug/processor.rb: removed all
4864
- references to frames array
4989
+ * : removed all references to frames array
4865
4990
  fixed post-mortem debugging
4866
4991
 
4867
4992
  2007-01-31 00:51 Kent Sibilev
4868
4993
 
4869
- * branches/stable/lib/ruby-debug/commands/stepping.rb,
4870
- branches/stable/lib/ruby-debug/commands/threads.rb,
4871
- branches/stable/lib/ruby-debug/commands/tmate.rb,
4872
- branches/stable/lib/ruby-debug/processor.rb: removed obsolete
4873
- frames usage
4994
+ * : removed obsolete frames usage
4874
4995
 
4875
4996
  2007-01-31 00:41 Kent Sibilev
4876
4997
 
4877
- * branches/stable/ext/ruby_debug.c,
4878
- branches/stable/lib/ruby-debug.rb,
4879
- branches/stable/lib/ruby-debug/commands/frame.rb,
4880
- branches/stable/lib/ruby-debug/commands/variables.rb,
4881
- branches/stable/lib/ruby-debug/processor.rb: refactored out frame
4882
- class and preallocate stack
4998
+ * : refactored out frame class and preallocate stack
4883
4999
  made local variable available even when bindings are not
4884
5000
  collected.
4885
5001
 
4886
5002
  2007-01-28 20:25 Kent Sibilev
4887
5003
 
4888
- * branches/stable/lib/ruby-debug.rb: --
5004
+ * : --
4889
5005
 
4890
5006
  2007-01-28 06:22 Kent Sibilev
4891
5007
 
4892
- * branches/stable/AUTHORS, branches/stable/CHANGES,
4893
- branches/stable/Rakefile, branches/stable/ext/ruby_debug.c,
4894
- branches/stable/lib/ruby-debug/commands/frame.rb: - Control
4895
- thread is always started by rdebug script.
5008
+ * : - Control thread is always started by rdebug script.
4896
5009
  - Ability to specify negative frame number to frame commands.
4897
5010
  Patch from R. Bernstein.
4898
5011
 
4899
5012
  2007-01-28 04:59 Kent Sibilev
4900
5013
 
4901
- * branches/stable/ext/ruby_debug.c: --
5014
+ * : --
4902
5015
 
4903
5016
  2007-01-28 04:52 Kent Sibilev
4904
5017
 
4905
- * branches/stable/CHANGES, branches/stable/bin/rdebug,
4906
- branches/stable/ext/ruby_debug.c,
4907
- branches/stable/lib/ruby-debug.rb,
4908
- branches/stable/lib/ruby-debug/commands/control.rb: added top
4909
- frame caching
5018
+ * : added top frame caching
4910
5019
  control thread is always started by rdebug script
4911
5020
 
4912
5021
  2007-01-28 01:21 Kent Sibilev
4913
5022
 
4914
- * branches/stable/CHANGES, branches/stable/ext/ruby_debug.c:
5023
+ * :
4915
5024
 
4916
5025
  2007-01-27 02:21 Kent Sibilev
4917
5026
 
4918
- * branches/stable/CHANGES: --
5027
+ * : --
4919
5028
 
4920
5029
  2007-01-27 01:43 Kent Sibilev
4921
5030
 
4922
- * branches/stable/bin/rdebug, branches/stable/ext/ruby_debug.c,
4923
- branches/stable/lib/ruby-debug.rb,
4924
- branches/stable/lib/ruby-debug/command.rb,
4925
- branches/stable/lib/ruby-debug/commands/frame.rb,
4926
- branches/stable/lib/ruby-debug/commands/stepping.rb,
4927
- branches/stable/lib/ruby-debug/commands/threads.rb,
4928
- branches/stable/lib/ruby-debug/commands/tmate.rb,
4929
- branches/stable/lib/ruby-debug/processor.rb: another performance
4930
- optimization
5031
+ * : another performance optimization
4931
5032
 
4932
5033
  2007-01-26 20:28 Kent Sibilev
4933
5034
 
4934
- * branches/stable/lib/ruby-debug.rb: fixed #7484
5035
+ * : fixed #7484
4935
5036
 
4936
5037
  2007-01-26 19:31 Kent Sibilev
4937
5038
 
4938
- * branches/stable/CHANGES, branches/stable/ext/ruby_debug.c,
4939
- branches/stable/ext/win32/ruby_debug.so: --
5039
+ * : --
4940
5040
 
4941
5041
  2007-01-26 17:59 Kent Sibilev
4942
5042
 
4943
- * branches/stable/ext/ruby_debug.c,
4944
- branches/stable/lib/ruby-debug/commands/breakpoints.rb: revisited
4945
- file name comparing procedure
5043
+ * : revisited file name comparing procedure
4946
5044
 
4947
5045
  2007-01-26 09:03 Kent Sibilev
4948
5046
 
4949
- * branches/stable/ext/ruby_debug.c,
4950
- branches/stable/lib/ruby-debug/commands/breakpoints.rb:
4951
- performance improvements
5047
+ * : performance improvements
4952
5048
 
4953
5049
  2007-01-26 03:12 Kent Sibilev
4954
5050
 
4955
- * branches/stable/CHANGES, branches/stable/bin/rdebug,
4956
- branches/stable/ext/ruby_debug.c,
4957
- branches/stable/lib/ruby-debug.rb,
4958
- branches/stable/lib/ruby-debug/command.rb,
4959
- branches/stable/lib/ruby-debug/commands/irb.rb,
4960
- branches/stable/lib/ruby-debug/commands/variables.rb,
4961
- branches/stable/lib/ruby-debug/processor.rb: added option to
4962
- exclude collecting of frame bindings
5051
+ * : added option to exclude collecting of frame bindings
4963
5052
 
4964
5053
  2007-01-25 01:41 Kent Sibilev
4965
5054
 
4966
- * branches/stable/ext/ruby_debug.c: small optimization
5055
+ * : small optimization
4967
5056
 
4968
5057
  2007-01-25 00:55 Kent Sibilev
4969
5058
 
4970
- * branches/stable/ext/ruby_debug.c: remove the live thread ref from
4971
- locker structure as well
5059
+ * : remove the live thread ref from locker structure as well
4972
5060
 
4973
5061
  2007-01-24 20:42 Kent Sibilev
4974
5062
 
4975
- * branches/stable/CHANGES, branches/stable/ext/ruby_debug.c: don't
4976
- keep a ref to a live thread.
5063
+ * : don't keep a ref to a live thread.
4977
5064
  check contexts that their threads are alive
4978
5065
 
4979
5066
  2007-01-24 18:47 Kent Sibilev
4980
5067
 
4981
- * branches/stable/bin/rdebug: ditto
5068
+ * : ditto
4982
5069
 
4983
5070
  2007-01-24 18:33 Kent Sibilev
4984
5071
 
4985
- * branches/stable/bin/rdebug, branches/stable/lib/ruby-debug.rb:
4986
- disable tracing when in post-mortem
5072
+ * : disable tracing when in post-mortem
4987
5073
  added -x/--trace option to rdebug script
4988
5074
 
4989
5075
  2007-01-21 08:35 Kent Sibilev
4990
5076
 
4991
- * branches/stable/CHANGES: updated changelog
5077
+ * : updated changelog
4992
5078
 
4993
5079
  2007-01-21 08:13 Kent Sibilev
4994
5080
 
4995
- * branches/stable/lib/ruby-debug/commands/breakpoints.rb:
5081
+ * :
4996
5082
 
4997
5083
  2007-01-21 03:34 Kent Sibilev
4998
5084
 
4999
- * branches/stable/ext/ruby_debug.c,
5000
- branches/stable/lib/ruby-debug.rb,
5001
- branches/stable/lib/ruby-debug/commands/breakpoints.rb: assign an
5002
- id to the breakpoint
5085
+ * : assign an id to the breakpoint
5003
5086
 
5004
5087
  2007-01-21 01:20 Kent Sibilev
5005
5088
 
5006
- * branches/stable/ext/ruby_debug.c,
5007
- branches/stable/lib/ruby-debug.rb,
5008
- branches/stable/lib/ruby-debug/interface.rb,
5009
- branches/stable/lib/ruby-debug/processor.rb: added
5010
- post_mortem_method wrap method
5089
+ * : added post_mortem_method wrap method
5011
5090
 
5012
5091
  2006-12-21 20:30 Kent Sibilev
5013
5092
 
5014
- * branches/stable/bin/rdebug,
5015
- branches/stable/ext/win32/ruby_debug.so: fix of restart command
5016
- for windows platform
5093
+ * : fix of restart command for windows platform
5017
5094
 
5018
5095
  2006-12-21 20:16 Kent Sibilev
5019
5096
 
5020
- * branches/stable/CHANGES, branches/stable/bin/rdebug,
5021
- branches/stable/lib/ruby-debug/commands/control.rb,
5022
- branches/stable/lib/ruby-debug/commands/frame.rb: added 'restart'
5023
- command
5097
+ * : added 'restart' command
5024
5098
 
5025
5099
  2006-12-21 14:24 Kent Sibilev
5026
5100
 
5027
- * branches/stable/CHANGES: update changelog
5101
+ * : update changelog
5028
5102
 
5029
5103
  2006-12-21 14:12 Kent Sibilev
5030
5104
 
5031
- * branches/stable/lib/ruby-debug/command.rb,
5032
- branches/stable/lib/ruby-debug/commands/control.rb,
5033
- branches/stable/lib/ruby-debug/commands/stepping.rb,
5034
- branches/stable/lib/ruby-debug/commands/threads.rb,
5035
- branches/stable/lib/ruby-debug/processor.rb: made 'exit' an alias
5036
- to 'quit'
5105
+ * : made 'exit' an alias to 'quit'
5037
5106
  fixed the interoperability problem with rspec
5038
5107
 
5039
5108
  2006-12-21 13:43 Kent Sibilev
5040
5109
 
5041
- * branches/stable/ext/ruby_debug.c,
5042
- branches/stable/ext/win32/ruby_debug.so,
5043
- branches/stable/lib/ruby-debug/commands/trace.rb: fixed trace
5044
- command in post-mortem mode
5110
+ * : fixed trace command in post-mortem mode
5045
5111
 
5046
5112
  2006-12-21 02:00 Kent Sibilev
5047
5113
 
5048
- * branches/stable/CHANGES: updated changelog
5114
+ * : updated changelog
5049
5115
 
5050
5116
  2006-12-21 01:59 Kent Sibilev
5051
5117
 
5052
- * branches/stable/lib/ruby-debug/commands/irb.rb: initialize only
5053
- once
5118
+ * : initialize only once
5054
5119
 
5055
5120
  2006-12-21 01:08 Kent Sibilev
5056
5121
 
5057
- * branches/stable/ext/ruby_debug.c,
5058
- branches/stable/ext/win32/ruby_debug.so,
5059
- branches/stable/lib/ruby-debug/commands/irb.rb: fixes irb help
5060
- command
5122
+ * : fixes irb help command
5061
5123
 
5062
5124
  2006-12-20 21:19 Kent Sibilev
5063
5125
 
5064
- * branches/stable/ext/ruby_debug.c,
5065
- branches/stable/lib/ruby-debug.rb: check that debugger has been
5066
- started
5126
+ * : check that debugger has been started
5067
5127
 
5068
5128
  2006-12-20 20:41 Kent Sibilev
5069
5129
 
5070
- * branches/stable/ext/win32/ruby_debug.so:
5130
+ * :
5071
5131
 
5072
5132
  2006-12-20 20:14 Kent Sibilev
5073
5133
 
5074
- * branches/stable/ext/ruby_debug.c: bumped version
5134
+ * : bumped version
5075
5135
 
5076
5136
  2006-12-20 20:08 Kent Sibilev
5077
5137
 
5078
- * branches/stable/bin/rdebug, branches/stable/lib/ruby-debug.rb:
5079
- added post-mortem option to rdebug
5138
+ * : added post-mortem option to rdebug
5080
5139
 
5081
5140
  2006-12-20 19:38 Kent Sibilev
5082
5141
 
5083
- * branches/stable/ext/ruby_debug.c,
5084
- branches/stable/lib/ruby-debug.rb,
5085
- branches/stable/lib/ruby-debug/command.rb,
5086
- branches/stable/lib/ruby-debug/commands/control.rb,
5087
- branches/stable/lib/ruby-debug/commands/frame.rb,
5088
- branches/stable/lib/ruby-debug/commands/irb.rb,
5089
- branches/stable/lib/ruby-debug/commands/stepping.rb,
5090
- branches/stable/lib/ruby-debug/commands/threads.rb,
5091
- branches/stable/lib/ruby-debug/commands/tmate.rb,
5092
- branches/stable/lib/ruby-debug/processor.rb: initial support for
5093
- post-mortem debugging
5142
+ * : initial support for post-mortem debugging
5094
5143
 
5095
5144
  2006-12-19 06:13 Kent Sibilev
5096
5145
 
5097
- * branches/stable/lib/ruby-debug/commands/stepping.rb: removed
5098
- 'run' alias
5146
+ * : removed 'run' alias
5099
5147
 
5100
5148
  2006-12-18 08:34 Kent Sibilev
5101
5149
 
5102
- * branches/stable/ext/ruby_debug.c,
5103
- branches/stable/lib/ruby-debug.rb,
5104
- branches/stable/lib/ruby-debug/commands/irb.rb,
5105
- branches/stable/lib/ruby-debug/commands/list.rb: added irb
5106
- command
5150
+ * : added irb command
5107
5151
  fixed source_for method
5108
5152
 
5109
5153
  2006-12-02 19:15 Kent Sibilev
5110
5154
 
5111
- * branches/stable/CHANGES, branches/stable/lib/ruby-debug.rb,
5112
- branches/stable/lib/ruby-debug/commands/list.rb: added reload
5113
- command
5155
+ * : added reload command
5114
5156
 
5115
5157
  2006-12-02 18:32 Kent Sibilev
5116
5158
 
5117
- * branches/stable/lib/ruby-debug/command.rb,
5118
- branches/stable/lib/ruby-debug/processor.rb: fixed #6518 and
5119
- #6545
5159
+ * : fixed #6518 and #6545
5120
5160
 
5121
5161
  2006-12-01 06:49 Kent Sibilev
5122
5162
 
5123
- * branches/stable/CHANGES:
5163
+ * :
5124
5164
 
5125
5165
  2006-12-01 06:47 Kent Sibilev
5126
5166
 
5127
- * branches/stable/CHANGES, branches/stable/ext/ruby_debug.c,
5128
- branches/stable/lib/ruby-debug.rb:
5167
+ * :
5129
5168
 
5130
5169
  2006-11-21 23:29 Kent Sibilev
5131
5170
 
5132
- * branches/stable/lib/ruby-debug/commands/eval.rb: ensure that
5133
- on/off is the last on the line
5171
+ * : ensure that on/off is the last on the line
5134
5172
 
5135
5173
  2006-11-16 00:04 Kent Sibilev
5136
5174
 
5137
- * branches/stable/lib/ruby-debug.rb: fixed debug_method for
5138
- assignment methods
5175
+ * : fixed debug_method for assignment methods
5139
5176
 
5140
5177
  2006-11-16 00:01 Kent Sibilev
5141
5178
 
5142
- * branches/stable: added the new branch for the stable version
5179
+ * : added the new branch for the stable version
5143
5180
 
5144
5181
  2006-10-15 22:43 Kent Sibilev
5145
5182
 
5146
- * branches/ver_0_4_4: branching a stable version
5183
+ * : branching a stable version
5147
5184
 
5148
5185
  2006-10-15 22:26 Kent Sibilev
5149
5186