ruby-debug 0.10.3 → 0.10.4
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.
- data/CHANGES +15 -0
- data/ChangeLog +461 -104
- data/Rakefile +69 -13
- data/VERSION +3 -0
- data/bin/rdebug +2 -1
- data/cli/ruby-debug.rb +8 -5
- data/cli/ruby-debug/command.rb +43 -4
- data/cli/ruby-debug/commands/breakpoints.rb +3 -1
- data/cli/ruby-debug/commands/catchpoint.rb +5 -3
- data/cli/ruby-debug/commands/{continue.RB.save → continue.RB} +0 -0
- data/cli/ruby-debug/commands/eval.rb +4 -1
- data/cli/ruby-debug/commands/frame.rb +11 -10
- data/cli/ruby-debug/commands/help.rb +5 -0
- data/cli/ruby-debug/commands/info.rb +6 -3
- data/cli/ruby-debug/commands/irb.rb +115 -12
- data/cli/ruby-debug/commands/kill.rb +50 -0
- data/cli/ruby-debug/commands/list.rb +3 -3
- data/cli/ruby-debug/commands/quit.rb +12 -6
- data/cli/ruby-debug/commands/raise.RB +41 -0
- data/cli/ruby-debug/commands/show.rb +26 -28
- data/cli/ruby-debug/helper.rb +5 -0
- data/cli/ruby-debug/interface.rb +53 -25
- data/cli/ruby-debug/processor.RB +484 -0
- data/cli/ruby-debug/processor.rb +140 -56
- data/rdbg.rb +0 -0
- data/runner.sh +7 -0
- data/test/base/base.rb +0 -0
- data/test/base/binding.rb +0 -0
- data/test/base/catchpoint.rb +0 -0
- data/test/base/reload_bug.rb +8 -0
- data/test/brkpt-class-bug.rb +8 -0
- data/test/cli/commands/unit/regexp.rb +11 -0
- data/test/config.yaml +8 -0
- data/test/data/annotate.cmd +1 -1
- data/test/data/annotate.right +3 -3
- data/test/data/break_bad.cmd +1 -1
- data/test/data/break_bad.right +1 -1
- data/test/data/break_loop_bug.right +1 -1
- data/test/data/breakpoints.cmd +1 -1
- data/test/data/breakpoints.right +3 -3
- data/test/data/brkpt-class-bug.cmd +9 -0
- data/test/data/brkpt-class-bug.right +18 -0
- data/test/data/catch.right +2 -0
- data/test/data/condition.cmd +1 -0
- data/test/data/condition.right +5 -3
- data/test/data/ctrl.right +2 -2
- data/test/data/display.right +1 -1
- data/test/data/emacs_basic.right +2 -2
- data/test/data/except-bug1.cmd +7 -0
- data/test/data/except-bug1.right +13 -0
- data/test/data/file-with-space.cmd +7 -0
- data/test/data/file-with-space.right +9 -0
- data/test/data/finish.right +1 -1
- data/test/data/frame.cmd +7 -1
- data/test/data/frame.right +12 -1
- data/test/data/info-var.right +1 -1
- data/test/data/info.cmd +1 -0
- data/test/data/info.right +21 -2
- data/test/data/list.right +1 -1
- data/test/data/method.right +1 -1
- data/test/data/post-mortem.right +5 -4
- data/test/data/save.right +1 -1
- data/test/data/setshow.cmd +0 -10
- data/test/data/setshow.right +0 -17
- data/test/dollar-0.rb +0 -0
- data/test/except-bug1.rb +4 -0
- data/test/file with space.rb +1 -0
- data/test/gcd-dbg.rb +0 -0
- data/test/helper.rb +7 -1
- data/test/pm-base.rb +0 -0
- data/test/pm.rb +1 -1
- data/test/raise.rb +0 -0
- data/test/rdebug-save.1 +7 -0
- data/test/tdebug.rb +2 -2
- data/test/test-annotate.rb +0 -0
- data/test/test-break-bad.rb +0 -0
- data/test/test-breakpoints.rb +0 -0
- data/test/test-brkpt-class-bug.rb +26 -0
- data/test/test-catch.rb +1 -1
- data/test/test-condition.rb +1 -1
- data/test/test-ctrl.rb +1 -0
- data/test/test-display.rb +0 -0
- data/test/test-dollar-0.rb +0 -0
- data/test/test-edit.rb +0 -0
- data/test/test-emacs-basic.rb +0 -0
- data/test/test-enable.rb +0 -0
- data/test/test-except-bug1.rb +31 -0
- data/test/test-file-with-space.rb +30 -0
- data/test/test-finish.rb +0 -0
- data/test/test-frame.rb +0 -0
- data/test/test-help.rb +0 -0
- data/test/test-hist.rb +0 -0
- data/test/test-info-thread.rb +0 -0
- data/test/test-info-var.rb +0 -0
- data/test/test-info.rb +0 -0
- data/test/test-init.rb +7 -1
- data/test/test-list.rb +0 -0
- data/test/test-method.rb +0 -0
- data/test/test-output.rb +0 -0
- data/test/test-pm.rb +0 -0
- data/test/test-quit.rb +0 -0
- data/test/test-raise.rb +1 -1
- data/test/test-save.rb +7 -1
- data/test/test-setshow.rb +0 -0
- data/test/test-source.rb +0 -0
- data/test/test-stepping.rb +0 -0
- data/test/test-trace.rb +0 -0
- metadata +211 -180
data/CHANGES
CHANGED
@@ -1,3 +1,18 @@
|
|
1
|
+
0.10.4
|
2
|
+
10/27/10
|
3
|
+
|
4
|
+
- Various bug fixes:
|
5
|
+
* reload command.
|
6
|
+
* plain 'info' command
|
7
|
+
* improve list and list - (backwards) handling when hitting end of file
|
8
|
+
- Add ability to specify port to debug on
|
9
|
+
- Allow breakpoints at class methods
|
10
|
+
- "quit!" is same as "quit unconditionally"
|
11
|
+
- irb improvements: Access to non-executing rdebug commands inside irb via
|
12
|
+
"dbgr" method
|
13
|
+
- Go over documentation including that created by rdoc.
|
14
|
+
- For emacs package: add README, INSTALL, AUTHORS.
|
15
|
+
|
1
16
|
0.10.3
|
2
17
|
11/17/08
|
3
18
|
|
data/ChangeLog
CHANGED
@@ -1,3 +1,361 @@
|
|
1
|
+
2010-10-27 12:58 Rocky Bernstein
|
2
|
+
|
3
|
+
* ChangeLog, ext/ruby_debug.c, lib/ChangeLog: Get ready for release
|
4
|
+
0.10.4
|
5
|
+
|
6
|
+
2010-10-21 21:03 Rocky Bernstein
|
7
|
+
|
8
|
+
* ext/ruby_debug.c: Remove gcc warning and redundant code.
|
9
|
+
Rubyforge Issue #28654. Thanks to Mamoru Tasaka.
|
10
|
+
|
11
|
+
2010-10-15 15:16 Rocky Bernstein
|
12
|
+
|
13
|
+
* cli/ruby-debug/command.rb, cli/ruby-debug/commands/help.rb,
|
14
|
+
cli/ruby-debug/commands/quit.rb: More rdoc work.
|
15
|
+
|
16
|
+
2010-10-15 14:45 Rocky Bernstein
|
17
|
+
|
18
|
+
* CHANGES, ChangeLog, INSTALL.SVN, Rakefile,
|
19
|
+
cli/ruby-debug/command.rb, cli/ruby-debug/interface.rb,
|
20
|
+
cli/ruby-debug/processor.rb, cross-compile.sh, ext/breakpoint.c,
|
21
|
+
ext/ruby_debug.c, lib/ChangeLog, lib/ruby-debug-base.rb: Go over
|
22
|
+
documentation (1st pass) including that created by rdoc.
|
23
|
+
Better instructions for how to build on MS Windows and the
|
24
|
+
include
|
25
|
+
cross-compile.sh script I use.
|
26
|
+
Update rubyforge URL's used to building ChangeLogs.
|
27
|
+
|
28
|
+
2010-10-14 01:41 Rocky Bernstein
|
29
|
+
|
30
|
+
* CHANGES, ChangeLog, cli/ruby-debug/commands/list.rb,
|
31
|
+
lib/ChangeLog, test/data/list.right: improve list and list -
|
32
|
+
(backwards) handling when hitting end of file.
|
33
|
+
|
34
|
+
2010-09-20 11:06 Rocky Bernstein
|
35
|
+
|
36
|
+
* ChangeLog, Rakefile, lib/ChangeLog, test/test-init.rb: "rake
|
37
|
+
test" of ruby-debug gem should now work without requiring or
|
38
|
+
using ruby-debug-base code. Rubyforge tracker #28560.
|
39
|
+
|
40
|
+
2010-09-20 09:33 Rocky Bernstein
|
41
|
+
|
42
|
+
* ChangeLog, Rakefile, lib/ChangeLog: Make sure version file is
|
43
|
+
closed. Thanks to Mamoru Tasaka. Tracker #28581.
|
44
|
+
|
45
|
+
2010-09-16 06:56 Rocky Bernstein
|
46
|
+
|
47
|
+
* test/helper.rb: The EMACS environment variable(s) cause output to
|
48
|
+
get prefaced with
|
49
|
+
null which messes up file compares. So turn off EMACS output
|
50
|
+
processing in testing.
|
51
|
+
|
52
|
+
2010-09-15 16:58 Rocky Bernstein
|
53
|
+
|
54
|
+
* ChangeLog, Rakefile, ext/ruby_debug.c, lib/ChangeLog: Rakefile:
|
55
|
+
make rake --prereqs work if only ruby-debug.tar.gz is used. Add
|
56
|
+
test/config.yml to gem. See tracker #28560.
|
57
|
+
ruby_debug.c: 10.0.4.rc2 now
|
58
|
+
|
59
|
+
2010-09-12 01:30 Rocky Bernstein
|
60
|
+
|
61
|
+
* ChangeLog, doc/home-page.html, doc/rdebug-emacs.texi,
|
62
|
+
lib/ChangeLog, test/pm.rb: pm.rb: spelling mistake
|
63
|
+
|
64
|
+
2010-08-28 18:26 Rocky Bernstein
|
65
|
+
|
66
|
+
* cli/ruby-debug/commands/frame.rb: Spelling mistake:
|
67
|
+
resyncronization -> resynchronization
|
68
|
+
|
69
|
+
2010-08-13 05:32 Rocky Bernstein
|
70
|
+
|
71
|
+
* ChangeLog, cli/ruby-debug/commands/frame.rb,
|
72
|
+
cli/ruby-debug/helper.rb, cli/ruby-debug/processor.rb,
|
73
|
+
ext/ruby_debug.c, lib/ChangeLog: Add Debugger.inside_emacs?
|
74
|
+
Environment variable EMACS for inside Emacs is deprecated in
|
75
|
+
favor of INSIDE_EMACS. Rubyforge #28465.
|
76
|
+
|
77
|
+
2010-08-03 02:53 Rocky Bernstein
|
78
|
+
|
79
|
+
* emacs/rdebug-breaks.el: Off by one on showing breakpoint
|
80
|
+
positions
|
81
|
+
|
82
|
+
2010-08-02 19:07 Rocky Bernstein
|
83
|
+
|
84
|
+
* doc/rdebug-emacs.texi: More small document changes
|
85
|
+
|
86
|
+
2010-08-02 18:03 Rocky Bernstein
|
87
|
+
|
88
|
+
* doc/rdebug-emacs.texi: A couple more small emacs doc changes
|
89
|
+
|
90
|
+
2010-08-02 17:45 Rocky Bernstein
|
91
|
+
|
92
|
+
* doc/rdebug-emacs.texi, emacs/INSTALL, emacs/README: More small
|
93
|
+
changes to docs.
|
94
|
+
|
95
|
+
2010-08-02 12:51 Rocky Bernstein
|
96
|
+
|
97
|
+
* CHANGES, ChangeLog, INSTALL.SVN, configure.ac, emacs/AUTHORS,
|
98
|
+
emacs/INSTALL, emacs/Makefile.am, emacs/README, emacs/rdebug.el,
|
99
|
+
lib/ChangeLog: Go over installation instructions for Emacs.
|
100
|
+
Add a basic files, README, INSTALL and AUTHORS.
|
101
|
+
Change version from 0.10.4vc to 0.10.4rc1
|
102
|
+
|
103
|
+
2010-05-26 20:11 Rocky Bernstein
|
104
|
+
|
105
|
+
* cli/ruby-debug/commands/eval.rb, cli/ruby-debug/commands/kill.rb,
|
106
|
+
test/.cvsignore, test/data/except-bug1.cmd,
|
107
|
+
test/data/except-bug1.right, test/except-bug1.rb,
|
108
|
+
test/test-except-bug1.rb: Another bug in showing variables in
|
109
|
+
post-mortem. Not sure if this is the best fix though.
|
110
|
+
kill.rb: fix syntax bug
|
111
|
+
|
112
|
+
2010-05-06 21:59 Rocky Bernstein
|
113
|
+
|
114
|
+
* ChangeLog, cli/ruby-debug/commands/frame.rb, lib/ChangeLog,
|
115
|
+
test/data/catch.right: More explicit about incomplete saved
|
116
|
+
frames. Now reads:
|
117
|
+
Warning: saved frames may be incomplete;
|
118
|
+
compare debugger backtrace (bt) with Ruby caller(0).
|
119
|
+
|
120
|
+
2010-04-19 02:46 Rocky Bernstein
|
121
|
+
|
122
|
+
* CHANGES, ChangeLog: What's up.
|
123
|
+
|
124
|
+
2010-04-19 02:40 Rocky Bernstein
|
125
|
+
|
126
|
+
* cli/ruby-debug/commands/irb.rb, cli/ruby-debug/processor.rb:
|
127
|
+
Document irb "dbgr" command. rbdbgr -> rdebug in irb variables.
|
128
|
+
|
129
|
+
2010-04-18 14:52 Rocky Bernstein
|
130
|
+
|
131
|
+
* test/file with space.rb: Forgot to add file to test against
|
132
|
+
|
133
|
+
2010-04-18 14:49 Rocky Bernstein
|
134
|
+
|
135
|
+
* CHANGES, bin/rdebug, test/data/file-with-space.cmd,
|
136
|
+
test/data/file-with-space.right, test/tdebug.rb,
|
137
|
+
test/test-file-with-space.rb: Add test for filename with embedded
|
138
|
+
space.
|
139
|
+
|
140
|
+
2010-04-18 13:49 Rocky Bernstein
|
141
|
+
|
142
|
+
* cli/ruby-debug/commands/show.rb, cli/ruby-debug/interface.rb,
|
143
|
+
test/data/setshow.cmd, test/data/setshow.right: Tolerate Ruby
|
144
|
+
without readline better. Tracker #23925
|
145
|
+
|
146
|
+
2010-04-18 07:18 Rocky Bernstein
|
147
|
+
|
148
|
+
* CHANGES, Rakefile, lib/ruby-debug-base.rb,
|
149
|
+
test/base/reload_bug.rb: Fix bug in "reload" command. tracker
|
150
|
+
#26130
|
151
|
+
|
152
|
+
2010-04-15 18:48 Rocky Bernstein
|
153
|
+
|
154
|
+
* ChangeLog, cli/ruby-debug/commands/info.rb, test/data/info.cmd,
|
155
|
+
test/data/info.right: Fix bug if info not given with any
|
156
|
+
parameters. rubyforge bug #26895.
|
157
|
+
|
158
|
+
2010-04-15 18:45 Rocky Bernstein
|
159
|
+
|
160
|
+
* test/brkpt-class-bug.rb: Had forgot to add Ruby file to test
|
161
|
+
brkpt-class bug.
|
162
|
+
|
163
|
+
2010-03-21 23:09 Rocky Bernstein
|
164
|
+
|
165
|
+
* ChangeLog, cli/ruby-debug.rb, lib/ChangeLog: Add ability to start
|
166
|
+
remote debugging on random ports and to query those ports.
|
167
|
+
Tracker #27889 from Hongli Lai.
|
168
|
+
|
169
|
+
2010-03-21 22:54 Rocky Bernstein
|
170
|
+
|
171
|
+
* ext/breakpoint.c, ext/ruby_debug.c, ext/ruby_debug.h,
|
172
|
+
test/data/brkpt-class-bug.cmd, test/data/brkpt-class-bug.right,
|
173
|
+
test/test-brkpt-class-bug.rb: Allow breakpoints at class methods.
|
174
|
+
Patch #26987 from Mark Moseley. See also
|
175
|
+
http://www.ruby-forum.com/topic/193901
|
176
|
+
|
177
|
+
2010-03-16 04:23 Rocky Bernstein
|
178
|
+
|
179
|
+
* ChangeLog, ext/ruby_debug.c, lib/ChangeLog: Fix for what looks
|
180
|
+
like an optimization bug on 64-bit gcc systems with optimization.
|
181
|
+
The Symptom is that debugger "catch" causes the program to
|
182
|
+
immediately terminate when the Ruby exception is raised. Possibly
|
183
|
+
a problem in using INT2FIX(FIX2INT...)..) and/or possibly a bug
|
184
|
+
in those macros.
|
185
|
+
|
186
|
+
2010-03-12 20:27 Rocky Bernstein
|
187
|
+
|
188
|
+
* ChangeLog, Rakefile, cli/ruby-debug/commands/irb.rb,
|
189
|
+
cli/ruby-debug/commands/kill.rb, cli/ruby-debug/processor.rb,
|
190
|
+
lib/ChangeLog: irb.rb: Goodness backported from rbdbgr. Add IRB
|
191
|
+
'q' for quit and ability to
|
192
|
+
run debugger commands from inside irb via dbgr, e.g. >> dbgr
|
193
|
+
'where'
|
194
|
+
|
195
|
+
kill.rb: remove spurious debug output
|
196
|
+
|
197
|
+
Rakefile: add install targets (backport from rbdbgr)
|
198
|
+
|
199
|
+
2009-12-10 09:17 Rocky Bernstein
|
200
|
+
|
201
|
+
* Rakefile: Newer rake doesn't allow nested arrays in Filelists.
|
202
|
+
But that's kind of beside the point since I meant += rather than
|
203
|
+
<<.
|
204
|
+
|
205
|
+
2009-11-30 19:13 Rocky Bernstein
|
206
|
+
|
207
|
+
* cli/ruby-debug/commands/frame.rb, test/data/frame.cmd,
|
208
|
+
test/data/frame.right: Make sure we don't match more than 'down'
|
209
|
+
or 'up' when not followed by a space. Tracker #26554
|
210
|
+
|
211
|
+
2009-11-28 22:56 Rocky Bernstein
|
212
|
+
|
213
|
+
* ChangeLog, emacs/rdebug-annotate.el, emacs/rdebug-breaks.el,
|
214
|
+
emacs/rdebug-core.el, emacs/rdebug-info.el,
|
215
|
+
emacs/rdebug-source.el, emacs/rdebug-track.el, lib/ChangeLog: Fix
|
216
|
+
problem caused by gdb-ui renamed to gdb-mi. Rubyforge tracker
|
217
|
+
#27152
|
218
|
+
Remove all Emacs byte compile warning messages.
|
219
|
+
|
220
|
+
Note however all of this code will eventually be phased out in
|
221
|
+
favor
|
222
|
+
of emacs-dbgr (on github).
|
223
|
+
|
224
|
+
2009-09-24 20:37 Rocky Bernstein
|
225
|
+
|
226
|
+
* cli/ruby-debug/commands/breakpoints.rb,
|
227
|
+
cli/ruby-debug/commands/info.rb, test/data/annotate.right,
|
228
|
+
test/data/break_loop_bug.right, test/data/breakpoints.right,
|
229
|
+
test/data/catch.right, test/data/condition.cmd,
|
230
|
+
test/data/condition.right, test/data/display.right,
|
231
|
+
test/data/emacs_basic.right, test/data/finish.right,
|
232
|
+
test/data/info-var.right, test/data/info.right,
|
233
|
+
test/data/method.right, test/data/save.right, test/test-catch.rb,
|
234
|
+
test/test-condition.rb, test/test-raise.rb: Duplicate class names
|
235
|
+
was masking tests from being run. Thanks to Mark Moseley for
|
236
|
+
pointing out the bug.
|
237
|
+
|
238
|
+
set basename now extends to breakpoint positions to facilitate
|
239
|
+
testing.
|
240
|
+
|
241
|
+
2009-04-12 00:42 Rocky Bernstein
|
242
|
+
|
243
|
+
* test/helper.rb, test/tdebug.rb: Track rdebug change -- really
|
244
|
+
should remove tdebug.rb. Add -d ($DEBUG) option to helper
|
245
|
+
|
246
|
+
2009-04-11 16:34 Rocky Bernstein
|
247
|
+
|
248
|
+
* bin/rdebug: Quote rdebug filenames before shelling to syntax
|
249
|
+
check - tracker #23862
|
250
|
+
|
251
|
+
2009-04-10 09:35 Rocky Bernstein
|
252
|
+
|
253
|
+
* configure.ac: Ooops - need to get my story straight.
|
254
|
+
|
255
|
+
2009-04-04 14:11 Rocky Bernstein
|
256
|
+
|
257
|
+
* ChangeLog, lib/ChangeLog, test/data/save.right,
|
258
|
+
test/test-save.rb: Make test-save less installation-specific
|
259
|
+
|
260
|
+
2009-04-04 08:42 Kent Sibilev
|
261
|
+
|
262
|
+
* cli/ruby-debug/commands/irb.rb: fixed IRB initialization in Ruby
|
263
|
+
1.8.7
|
264
|
+
|
265
|
+
'irb' command blows up when debugger is started with
|
266
|
+
./script/server --debugger
|
267
|
+
|
268
|
+
2009-03-31 09:49 Rocky Bernstein
|
269
|
+
|
270
|
+
* emacs/rdebug-locring.el: Comment change
|
271
|
+
|
272
|
+
2009-03-29 03:00 Rocky Bernstein
|
273
|
+
|
274
|
+
* ChangeLog, cli/ruby-debug/commands/breakpoints.rb, lib/ChangeLog,
|
275
|
+
test/data/annotate.right, test/data/breakpoints.right,
|
276
|
+
test/data/emacs_basic.right, test/data/info.right,
|
277
|
+
test/data/save.right: Canonicalize breakpoint locations a little
|
278
|
+
better. More work should be done and more work should be done on
|
279
|
+
the testing side too.
|
280
|
+
|
281
|
+
2009-03-17 10:35 Rocky Bernstein
|
282
|
+
|
283
|
+
* cli/ruby-debug/commands/irb.rb: Document irb additions old and
|
284
|
+
new
|
285
|
+
|
286
|
+
2009-03-17 10:33 Rocky Bernstein
|
287
|
+
|
288
|
+
* cli/ruby-debug/commands/irb.rb: irb "next" -> "n" since "next" is
|
289
|
+
a reserved word.
|
290
|
+
|
291
|
+
2009-03-17 10:30 Rocky Bernstein
|
292
|
+
|
293
|
+
* cli/ruby-debug/commands/irb.rb: Fix some irb -d breakage when set
|
294
|
+
autoirb is in effect
|
295
|
+
|
296
|
+
2009-03-17 10:22 Rocky Bernstein
|
297
|
+
|
298
|
+
* cli/ruby-debug/commands/irb.rb: Add "next" and "step" commands in
|
299
|
+
irb
|
300
|
+
|
301
|
+
2009-03-17 02:05 Rocky Bernstein
|
302
|
+
|
303
|
+
* cli/ruby-debug/commands/irb.rb, cli/ruby-debug/processor.rb,
|
304
|
+
configure.ac, test/data/ctrl.right, test/data/post-mortem.right,
|
305
|
+
test/test-ctrl.rb: configure.ac: in 0.10.4vc now. Add -d in irb
|
306
|
+
facilitate debugger testing via global $rdebug_state. Also set
|
307
|
+
$rdebug_state in debuggertesting is set.
|
308
|
+
"kill" is now allowed as a control command, this adjusts output.
|
309
|
+
and this changes
|
310
|
+
|
311
|
+
2009-03-11 23:42 Rocky Bernstein
|
312
|
+
|
313
|
+
* ChangeLog, doc/ruby-debug.texi, lib/ChangeLog: update texinfo for
|
314
|
+
catch
|
315
|
+
|
316
|
+
2009-03-11 18:57 Rocky Bernstein
|
317
|
+
|
318
|
+
* cli/ruby-debug/commands/catchpoint.rb, emacs/rdebug-core.el,
|
319
|
+
emacs/rdebug-track.el, emacs/test/test-regexp.el: Update "catch"
|
320
|
+
command help string. Reindent some emacs files to make tests
|
321
|
+
happy.
|
322
|
+
|
323
|
+
2009-02-10 04:32 Rocky Bernstein
|
324
|
+
|
325
|
+
* emacs/rdebug-core.el: Remove the annoying disappearing command
|
326
|
+
window when we there's an initial error in running the Ruby
|
327
|
+
program
|
328
|
+
|
329
|
+
2009-01-23 20:51 Rocky Bernstein
|
330
|
+
|
331
|
+
* doc/ruby-debug.texi: Show how to add a new command
|
332
|
+
|
333
|
+
2009-01-23 17:20 Rocky Bernstein
|
334
|
+
|
335
|
+
* cli/ruby-debug/commands/kill.rb, cli/ruby-debug/processor.rb: Add
|
336
|
+
a kill command
|
337
|
+
|
338
|
+
2008-12-24 03:32 Rocky Bernstein
|
339
|
+
|
340
|
+
* test/cli/commands/unit/regexp.rb: One more quit test.
|
341
|
+
|
342
|
+
2008-12-24 03:21 Rocky Bernstein
|
343
|
+
|
344
|
+
* cli/ruby-debug/commands/quit.rb, doc/ruby-debug.texi,
|
345
|
+
test/cli/commands/unit/regexp.rb, test/data/annotate.cmd,
|
346
|
+
test/data/annotate.right, test/data/break_bad.cmd,
|
347
|
+
test/data/break_bad.right, test/data/breakpoints.cmd,
|
348
|
+
test/data/breakpoints.right: Allow ! suffix on {q{,uit},exit} to
|
349
|
+
be the same as "unconditionally" #23299
|
350
|
+
|
351
|
+
2008-11-25 02:43 Rocky Bernstein
|
352
|
+
|
353
|
+
* ChangeLog, cli/ruby-debug/commands/frame.rb, configure.ac,
|
354
|
+
doc/ruby-debug.texi, ext/ruby_debug.c, lib/ChangeLog,
|
355
|
+
test/data/frame.cmd, test/data/frame.right: Frame without a frame
|
356
|
+
number means frame 0, same as gdb. We are now in 0.10.4 territory
|
357
|
+
now.
|
358
|
+
|
1
359
|
2008-11-17 07:34 Rocky Bernstein
|
2
360
|
|
3
361
|
* CHANGES: Last commit before release.
|
@@ -5059,435 +5417,434 @@
|
|
5059
5417
|
|
5060
5418
|
2007-03-24 18:11 Kent Sibilev
|
5061
5419
|
|
5062
|
-
*
|
5420
|
+
*
|
5063
5421
|
|
5064
5422
|
2007-03-24 18:03 Kent Sibilev
|
5065
5423
|
|
5066
|
-
*
|
5424
|
+
* ported stop reason from the trunk
|
5067
5425
|
|
5068
5426
|
2007-03-19 08:05 Kent Sibilev
|
5069
5427
|
|
5070
|
-
*
|
5428
|
+
*
|
5071
5429
|
|
5072
5430
|
2007-03-19 07:59 Kent Sibilev
|
5073
5431
|
|
5074
|
-
*
|
5432
|
+
*
|
5075
5433
|
|
5076
5434
|
2007-03-19 07:46 Kent Sibilev
|
5077
5435
|
|
5078
|
-
*
|
5436
|
+
* fixes processor to handler renaming
|
5079
5437
|
added a shortcut module
|
5080
5438
|
|
5081
5439
|
2007-03-15 04:00 Kent Sibilev
|
5082
5440
|
|
5083
|
-
*
|
5441
|
+
*
|
5084
5442
|
|
5085
5443
|
2007-03-15 02:59 Kent Sibilev
|
5086
5444
|
|
5087
|
-
*
|
5445
|
+
*
|
5088
5446
|
|
5089
5447
|
2007-03-15 02:58 Kent Sibilev
|
5090
5448
|
|
5091
|
-
*
|
5449
|
+
* added 'set autoirb' setting
|
5092
5450
|
|
5093
5451
|
2007-03-15 02:46 Kent Sibilev
|
5094
5452
|
|
5095
|
-
*
|
5453
|
+
*
|
5096
5454
|
|
5097
5455
|
2007-03-15 02:39 Kent Sibilev
|
5098
5456
|
|
5099
|
-
*
|
5457
|
+
*
|
5100
5458
|
|
5101
5459
|
2007-03-15 02:32 Kent Sibilev
|
5102
5460
|
|
5103
|
-
*
|
5461
|
+
*
|
5104
5462
|
|
5105
5463
|
2007-03-15 02:32 Kent Sibilev
|
5106
5464
|
|
5107
|
-
*
|
5465
|
+
* fixed help command
|
5108
5466
|
|
5109
5467
|
2007-03-13 17:06 Kent Sibilev
|
5110
5468
|
|
5111
|
-
*
|
5469
|
+
* missing file
|
5112
5470
|
|
5113
5471
|
2007-03-13 17:06 Kent Sibilev
|
5114
5472
|
|
5115
|
-
*
|
5473
|
+
* fixed rdoc
|
5116
5474
|
|
5117
5475
|
2007-03-06 22:15 Kent Sibilev
|
5118
5476
|
|
5119
|
-
*
|
5477
|
+
* updated help for list and eval commands
|
5120
5478
|
|
5121
5479
|
2007-03-06 19:51 Kent Sibilev
|
5122
5480
|
|
5123
|
-
*
|
5481
|
+
* pass the current state to the interface object if it accepts it
|
5124
5482
|
|
5125
5483
|
2007-03-01 23:44 Kent Sibilev
|
5126
5484
|
|
5127
|
-
*
|
5485
|
+
* fixed post-mortem
|
5128
5486
|
|
5129
5487
|
2007-02-27 08:02 Kent Sibilev
|
5130
5488
|
|
5131
|
-
*
|
5489
|
+
* repackaging ruby-debug
|
5132
5490
|
|
5133
5491
|
2007-02-23 20:56 Kent Sibilev
|
5134
5492
|
|
5135
|
-
*
|
5136
|
-
|
5493
|
+
* added an option for Debugger.debug_load to stop at the first line
|
5494
|
+
of code
|
5137
5495
|
|
5138
5496
|
2007-02-12 06:59 Kent Sibilev
|
5139
5497
|
|
5140
|
-
*
|
5498
|
+
* added --emacs option
|
5141
5499
|
|
5142
5500
|
2007-02-09 16:56 Kent Sibilev
|
5143
5501
|
|
5144
|
-
*
|
5502
|
+
* in remote mode the debugger shouldn't stop inside of rdebug
|
5145
5503
|
script
|
5146
5504
|
|
5147
5505
|
2007-02-09 06:59 Kent Sibilev
|
5148
5506
|
|
5149
|
-
*
|
5507
|
+
*
|
5150
5508
|
|
5151
5509
|
2007-02-09 06:20 Kent Sibilev
|
5152
5510
|
|
5153
|
-
*
|
5511
|
+
* --
|
5154
5512
|
|
5155
5513
|
2007-02-09 01:00 Kent Sibilev
|
5156
5514
|
|
5157
|
-
*
|
5515
|
+
* fixed code reloading
|
5158
5516
|
made 'reload on' as a part of the 'set' command
|
5159
5517
|
evaluate ~/.rdebugrc as an init script
|
5160
5518
|
|
5161
5519
|
2007-02-07 02:42 Kent Sibilev
|
5162
5520
|
|
5163
|
-
*
|
5521
|
+
* should use ignored? method to check for the debugger's thread
|
5164
5522
|
|
5165
5523
|
2007-02-06 22:21 Kent Sibilev
|
5166
5524
|
|
5167
|
-
*
|
5525
|
+
*
|
5168
5526
|
|
5169
5527
|
2007-02-05 22:48 Kent Sibilev
|
5170
5528
|
|
5171
|
-
*
|
5529
|
+
* --
|
5172
5530
|
|
5173
5531
|
2007-02-05 22:11 Kent Sibilev
|
5174
5532
|
|
5175
|
-
*
|
5533
|
+
* fixed emacs integration
|
5176
5534
|
|
5177
5535
|
2007-02-05 20:40 Kent Sibilev
|
5178
5536
|
|
5179
|
-
*
|
5537
|
+
* --
|
5180
5538
|
|
5181
5539
|
2007-02-05 20:38 Kent Sibilev
|
5182
5540
|
|
5183
|
-
*
|
5541
|
+
* --
|
5184
5542
|
|
5185
5543
|
2007-02-05 20:34 Kent Sibilev
|
5186
5544
|
|
5187
|
-
*
|
5545
|
+
* --
|
5188
5546
|
|
5189
5547
|
2007-02-05 20:16 Kent Sibilev
|
5190
5548
|
|
5191
|
-
*
|
5549
|
+
* fixed another issue where a bogus frame is being left in the
|
5192
5550
|
stack
|
5193
5551
|
|
5194
5552
|
2007-02-05 08:08 Kent Sibilev
|
5195
5553
|
|
5196
|
-
*
|
5554
|
+
* should save frame id as well
|
5197
5555
|
|
5198
5556
|
2007-02-05 07:55 Kent Sibilev
|
5199
5557
|
|
5200
|
-
*
|
5558
|
+
* fix stack corruption error
|
5201
5559
|
|
5202
5560
|
2007-02-05 01:16 Kent Sibilev
|
5203
5561
|
|
5204
|
-
*
|
5205
|
-
information
|
5562
|
+
* store frame's self and dyna_vars along with file/line information
|
5206
5563
|
|
5207
5564
|
2007-02-04 23:36 Kent Sibilev
|
5208
5565
|
|
5209
|
-
*
|
5566
|
+
* seg fault bugfixes
|
5210
5567
|
fixed suspend/resume
|
5211
5568
|
|
5212
5569
|
2007-02-04 05:06 Kent Sibilev
|
5213
5570
|
|
5214
|
-
*
|
5571
|
+
* restore prev patch
|
5215
5572
|
|
5216
5573
|
2007-02-04 03:49 Kent Sibilev
|
5217
5574
|
|
5218
|
-
*
|
5575
|
+
* --
|
5219
5576
|
|
5220
5577
|
2007-02-04 03:49 Kent Sibilev
|
5221
5578
|
|
5222
|
-
*
|
5579
|
+
* A better fix for the segmentation fault
|
5223
5580
|
|
5224
5581
|
2007-02-03 22:02 Kent Sibilev
|
5225
5582
|
|
5226
|
-
*
|
5583
|
+
* found a better patch
|
5227
5584
|
|
5228
5585
|
2007-02-03 20:33 Kent Sibilev
|
5229
5586
|
|
5230
|
-
*
|
5587
|
+
* --
|
5231
5588
|
|
5232
5589
|
2007-02-03 20:24 Kent Sibilev
|
5233
5590
|
|
5234
|
-
*
|
5591
|
+
* fix seg fault by avoiding ruby's bug
|
5235
5592
|
fixed Context#resume
|
5236
5593
|
when handling post-mortem all threads must be suspended
|
5237
5594
|
|
5238
5595
|
2007-02-02 18:47 Kent Sibilev
|
5239
5596
|
|
5240
|
-
*
|
5597
|
+
* removed ambiguity with down command
|
5241
5598
|
|
5242
5599
|
2007-02-01 23:48 Kent Sibilev
|
5243
5600
|
|
5244
|
-
*
|
5601
|
+
* typo
|
5245
5602
|
|
5246
5603
|
2007-02-01 23:10 Kent Sibilev
|
5247
5604
|
|
5248
|
-
*
|
5605
|
+
* changes for build 0.7
|
5249
5606
|
|
5250
5607
|
2007-02-01 22:15 Kent Sibilev
|
5251
5608
|
|
5252
|
-
*
|
5609
|
+
* made eval command available from the control thread
|
5253
5610
|
|
5254
5611
|
2007-02-01 17:30 Kent Sibilev
|
5255
5612
|
|
5256
|
-
*
|
5613
|
+
* fixed dllexport for windows platform
|
5257
5614
|
|
5258
5615
|
2007-02-01 15:49 Kent Sibilev
|
5259
5616
|
|
5260
|
-
*
|
5617
|
+
* ditto
|
5261
5618
|
|
5262
5619
|
2007-02-01 07:22 Kent Sibilev
|
5263
5620
|
|
5264
|
-
*
|
5621
|
+
* added setting command
|
5265
5622
|
added Context#suspended? method
|
5266
5623
|
dispay suspended status in the thread list
|
5267
5624
|
display frame starting from zero
|
5268
5625
|
|
5269
5626
|
2007-01-31 22:12 Kent Sibilev
|
5270
5627
|
|
5271
|
-
*
|
5628
|
+
* store object ids in VALUE type
|
5272
5629
|
|
5273
5630
|
2007-01-31 21:13 Kent Sibilev
|
5274
5631
|
|
5275
|
-
*
|
5632
|
+
* ditto
|
5276
5633
|
|
5277
5634
|
2007-01-31 21:12 Kent Sibilev
|
5278
5635
|
|
5279
|
-
*
|
5636
|
+
* fixed help command
|
5280
5637
|
|
5281
5638
|
2007-01-31 21:04 Kent Sibilev
|
5282
5639
|
|
5283
|
-
*
|
5640
|
+
* ditto
|
5284
5641
|
|
5285
5642
|
2007-01-31 20:44 Kent Sibilev
|
5286
5643
|
|
5287
|
-
*
|
5644
|
+
* make a deep copy when capturing post mortem context
|
5288
5645
|
|
5289
5646
|
2007-01-31 19:39 Kent Sibilev
|
5290
5647
|
|
5291
|
-
*
|
5648
|
+
* fixed frame count
|
5292
5649
|
added frame_self method to context
|
5293
5650
|
|
5294
5651
|
2007-01-31 16:48 Kent Sibilev
|
5295
5652
|
|
5296
|
-
*
|
5653
|
+
* removed all references to frames array
|
5297
5654
|
fixed post-mortem debugging
|
5298
5655
|
|
5299
5656
|
2007-01-31 00:51 Kent Sibilev
|
5300
5657
|
|
5301
|
-
*
|
5658
|
+
* removed obsolete frames usage
|
5302
5659
|
|
5303
5660
|
2007-01-31 00:41 Kent Sibilev
|
5304
5661
|
|
5305
|
-
*
|
5662
|
+
* refactored out frame class and preallocate stack
|
5306
5663
|
made local variable available even when bindings are not
|
5307
5664
|
collected.
|
5308
5665
|
|
5309
5666
|
2007-01-28 20:25 Kent Sibilev
|
5310
5667
|
|
5311
|
-
*
|
5668
|
+
* --
|
5312
5669
|
|
5313
5670
|
2007-01-28 06:22 Kent Sibilev
|
5314
5671
|
|
5315
|
-
*
|
5672
|
+
* - Control thread is always started by rdebug script.
|
5316
5673
|
- Ability to specify negative frame number to frame commands.
|
5317
5674
|
Patch from R. Bernstein.
|
5318
5675
|
|
5319
5676
|
2007-01-28 04:59 Kent Sibilev
|
5320
5677
|
|
5321
|
-
*
|
5678
|
+
* --
|
5322
5679
|
|
5323
5680
|
2007-01-28 04:52 Kent Sibilev
|
5324
5681
|
|
5325
|
-
*
|
5682
|
+
* added top frame caching
|
5326
5683
|
control thread is always started by rdebug script
|
5327
5684
|
|
5328
5685
|
2007-01-28 01:21 Kent Sibilev
|
5329
5686
|
|
5330
|
-
*
|
5687
|
+
*
|
5331
5688
|
|
5332
5689
|
2007-01-27 02:21 Kent Sibilev
|
5333
5690
|
|
5334
|
-
*
|
5691
|
+
* --
|
5335
5692
|
|
5336
5693
|
2007-01-27 01:43 Kent Sibilev
|
5337
5694
|
|
5338
|
-
*
|
5695
|
+
* another performance optimization
|
5339
5696
|
|
5340
5697
|
2007-01-26 20:28 Kent Sibilev
|
5341
5698
|
|
5342
|
-
*
|
5699
|
+
* fixed #7484
|
5343
5700
|
|
5344
5701
|
2007-01-26 19:31 Kent Sibilev
|
5345
5702
|
|
5346
|
-
*
|
5703
|
+
* --
|
5347
5704
|
|
5348
5705
|
2007-01-26 17:59 Kent Sibilev
|
5349
5706
|
|
5350
|
-
*
|
5707
|
+
* revisited file name comparing procedure
|
5351
5708
|
|
5352
5709
|
2007-01-26 09:03 Kent Sibilev
|
5353
5710
|
|
5354
|
-
*
|
5711
|
+
* performance improvements
|
5355
5712
|
|
5356
5713
|
2007-01-26 03:12 Kent Sibilev
|
5357
5714
|
|
5358
|
-
*
|
5715
|
+
* added option to exclude collecting of frame bindings
|
5359
5716
|
|
5360
5717
|
2007-01-25 01:41 Kent Sibilev
|
5361
5718
|
|
5362
|
-
*
|
5719
|
+
* small optimization
|
5363
5720
|
|
5364
5721
|
2007-01-25 00:55 Kent Sibilev
|
5365
5722
|
|
5366
|
-
*
|
5723
|
+
* remove the live thread ref from locker structure as well
|
5367
5724
|
|
5368
5725
|
2007-01-24 20:42 Kent Sibilev
|
5369
5726
|
|
5370
|
-
*
|
5727
|
+
* don't keep a ref to a live thread.
|
5371
5728
|
check contexts that their threads are alive
|
5372
5729
|
|
5373
5730
|
2007-01-24 18:47 Kent Sibilev
|
5374
5731
|
|
5375
|
-
*
|
5732
|
+
* ditto
|
5376
5733
|
|
5377
5734
|
2007-01-24 18:33 Kent Sibilev
|
5378
5735
|
|
5379
|
-
*
|
5736
|
+
* disable tracing when in post-mortem
|
5380
5737
|
added -x/--trace option to rdebug script
|
5381
5738
|
|
5382
5739
|
2007-01-21 08:35 Kent Sibilev
|
5383
5740
|
|
5384
|
-
*
|
5741
|
+
* updated changelog
|
5385
5742
|
|
5386
5743
|
2007-01-21 08:13 Kent Sibilev
|
5387
5744
|
|
5388
|
-
*
|
5745
|
+
*
|
5389
5746
|
|
5390
5747
|
2007-01-21 03:34 Kent Sibilev
|
5391
5748
|
|
5392
|
-
*
|
5749
|
+
* assign an id to the breakpoint
|
5393
5750
|
|
5394
5751
|
2007-01-21 01:20 Kent Sibilev
|
5395
5752
|
|
5396
|
-
*
|
5753
|
+
* added post_mortem_method wrap method
|
5397
5754
|
|
5398
5755
|
2006-12-21 20:30 Kent Sibilev
|
5399
5756
|
|
5400
|
-
*
|
5757
|
+
* fix of restart command for windows platform
|
5401
5758
|
|
5402
5759
|
2006-12-21 20:16 Kent Sibilev
|
5403
5760
|
|
5404
|
-
*
|
5761
|
+
* added 'restart' command
|
5405
5762
|
|
5406
5763
|
2006-12-21 14:24 Kent Sibilev
|
5407
5764
|
|
5408
|
-
*
|
5765
|
+
* update changelog
|
5409
5766
|
|
5410
5767
|
2006-12-21 14:12 Kent Sibilev
|
5411
5768
|
|
5412
|
-
*
|
5769
|
+
* made 'exit' an alias to 'quit'
|
5413
5770
|
fixed the interoperability problem with rspec
|
5414
5771
|
|
5415
5772
|
2006-12-21 13:43 Kent Sibilev
|
5416
5773
|
|
5417
|
-
*
|
5774
|
+
* fixed trace command in post-mortem mode
|
5418
5775
|
|
5419
5776
|
2006-12-21 02:00 Kent Sibilev
|
5420
5777
|
|
5421
|
-
*
|
5778
|
+
* updated changelog
|
5422
5779
|
|
5423
5780
|
2006-12-21 01:59 Kent Sibilev
|
5424
5781
|
|
5425
|
-
*
|
5782
|
+
* initialize only once
|
5426
5783
|
|
5427
5784
|
2006-12-21 01:08 Kent Sibilev
|
5428
5785
|
|
5429
|
-
*
|
5786
|
+
* fixes irb help command
|
5430
5787
|
|
5431
5788
|
2006-12-20 21:19 Kent Sibilev
|
5432
5789
|
|
5433
|
-
*
|
5790
|
+
* check that debugger has been started
|
5434
5791
|
|
5435
5792
|
2006-12-20 20:41 Kent Sibilev
|
5436
5793
|
|
5437
|
-
*
|
5794
|
+
*
|
5438
5795
|
|
5439
5796
|
2006-12-20 20:14 Kent Sibilev
|
5440
5797
|
|
5441
|
-
*
|
5798
|
+
* bumped version
|
5442
5799
|
|
5443
5800
|
2006-12-20 20:08 Kent Sibilev
|
5444
5801
|
|
5445
|
-
*
|
5802
|
+
* added post-mortem option to rdebug
|
5446
5803
|
|
5447
5804
|
2006-12-20 19:38 Kent Sibilev
|
5448
5805
|
|
5449
|
-
*
|
5806
|
+
* initial support for post-mortem debugging
|
5450
5807
|
|
5451
5808
|
2006-12-19 06:13 Kent Sibilev
|
5452
5809
|
|
5453
|
-
*
|
5810
|
+
* removed 'run' alias
|
5454
5811
|
|
5455
5812
|
2006-12-18 08:34 Kent Sibilev
|
5456
5813
|
|
5457
|
-
*
|
5814
|
+
* added irb command
|
5458
5815
|
fixed source_for method
|
5459
5816
|
|
5460
5817
|
2006-12-02 19:15 Kent Sibilev
|
5461
5818
|
|
5462
|
-
*
|
5819
|
+
* added reload command
|
5463
5820
|
|
5464
5821
|
2006-12-02 18:32 Kent Sibilev
|
5465
5822
|
|
5466
|
-
*
|
5823
|
+
* fixed #6518 and #6545
|
5467
5824
|
|
5468
5825
|
2006-12-01 06:49 Kent Sibilev
|
5469
5826
|
|
5470
|
-
*
|
5827
|
+
*
|
5471
5828
|
|
5472
5829
|
2006-12-01 06:47 Kent Sibilev
|
5473
5830
|
|
5474
|
-
*
|
5831
|
+
*
|
5475
5832
|
|
5476
5833
|
2006-11-21 23:29 Kent Sibilev
|
5477
5834
|
|
5478
|
-
*
|
5835
|
+
* ensure that on/off is the last on the line
|
5479
5836
|
|
5480
5837
|
2006-11-16 00:04 Kent Sibilev
|
5481
5838
|
|
5482
|
-
*
|
5839
|
+
* fixed debug_method for assignment methods
|
5483
5840
|
|
5484
5841
|
2006-11-16 00:01 Kent Sibilev
|
5485
5842
|
|
5486
|
-
*
|
5843
|
+
* added the new branch for the stable version
|
5487
5844
|
|
5488
5845
|
2006-10-15 22:43 Kent Sibilev
|
5489
5846
|
|
5490
|
-
*
|
5847
|
+
* branching a stable version
|
5491
5848
|
|
5492
5849
|
2006-10-15 22:26 Kent Sibilev
|
5493
5850
|
|