ruby-debug-ide 0.4.17.beta5 → 0.4.17.beta6

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 ADDED
@@ -0,0 +1,75 @@
1
+ This document is not maintained since version 0.1.10. See ``Changes'' section
2
+ in the ``ruby-debug-ide protocol'' document:
3
+
4
+ http://debug-commons.rubyforge.org/protocol-spec.html
5
+
6
+ and ChangeLog for details. protocol-spec.html is generated from
7
+ doc/protocol-spec.texi file.
8
+
9
+ ========================================================================
10
+
11
+ 0.1.9 - 0.1.10
12
+ --------------
13
+
14
+ * fixed bug when inspected variable's to_s methods returns non-String.
15
+ Returns diagonstic message now.
16
+ * do not use '==' from within debugger to prevent runtime error
17
+ * Workarounding JRuby issue (http://jira.codehaus.org/browse/JRUBY-2063)
18
+ * switching to ruby-debug-base 0.1.10 (all tests pass)
19
+
20
+ 0.1.8 - 0.1.9
21
+ -------------
22
+
23
+ * be sure 'exit' is always called.
24
+ * to_inspect = str.gsub(/\\n/, "\n") in debug_eval() to make possible to
25
+ evaluate multiline expressions. Frontend must escape new lines
26
+ accordingly.
27
+ * prevent exception when to_s returns nil on being evaluated value
28
+
29
+ 0.1.7 - 0.1.8
30
+ -------------
31
+
32
+ * fixed error during breakpoint removing
33
+ * (protocols merge) print debug message on $stderr like classic debugger
34
+
35
+ 0.1.6 - 0.1.7
36
+ -------------
37
+
38
+ * ensure 'yaml' (is_binary_data?) is always loaded in xml_printer.rb
39
+ * VarInstanceCommand enumerates also variables of an object's class, as it
40
+ is done in the classic-debugger
41
+ * do not send unneeded end-of-lines (fast and classic protocol merging)
42
+ * do not send non-xml PROMPT and CONFIRM + getting rid of 'confirm' methods
43
+ in the whole codebase (fast and classic protocol merging)
44
+ * send info <message> when 'delete' is used without given 'pos' (deleting of
45
+ all breakpoints is not supported)
46
+ * return <error> on 'delete <negative_int>' (protocol unification)
47
+ * always use one-based frame numbering (was not the case in <frame[s]>)
48
+ * send message 'finished' back when exiting
49
+
50
+ 0.1.5 - 0.1.6
51
+ -------------
52
+
53
+ * do not send binary data within values of variables. See
54
+ http://www.netbeans.org/nonav/issues/show_bug.cgi?id=101748 for more
55
+ details
56
+
57
+ 0.1.4 - 0.1.5
58
+ -------------
59
+
60
+ * fixed subtle bug in xml_printer.rb#print_variable which caused the
61
+ debugger to die when == method was overridden and did not count on nil
62
+ parameters
63
+ * Hash and Array subclasses did not have children thus cannot be expanded in
64
+ a GUI. E.g. @params in Rails controller (HashWithIndifferentAccess)
65
+
66
+ 0.1.3 - 0.1.4
67
+ -------------
68
+
69
+ * migration to ruby-debug 0.1.4
70
+
71
+ 0.1.2 - 0.1.3
72
+ -------------
73
+
74
+ * adding step+ and next+ commands (since ruby-debug 0.9.1)
75
+
@@ -0,0 +1,498 @@
1
+ Dennis Ushakov <dennis.ushakov@gmail.com>
2
+ * run context commands on stopped thread to prevent segfaults (3c1b52d5091fccec447d5695d5b43e73f335cc54)
3
+ * enable building without deps (9b597f8ce2b97ed40bb57e55ad178cf8ce270fa9)
4
+ * improved error handling (220d78b8e2be52f8a3b21f34c6c88283b22440d4)
5
+ * show full exception info when failed to evaluate expression (8f4ec5f16dd659e0cada7ff2a218e8768ff87b35)
6
+ * fix config (8440dc7bb51c934f99887ff43cdf805a16664159)
7
+ * edited dependency for 1.9, allow prerelease (14ffae2dd364ad445377b358870c35eabdf9567c)
8
+ * fix incompatibilities with command-line debug (474d3607222a0c9fc78917e7b38051d37b11b75a)
9
+ * fix installation issues with prerelease base gem versions (12fc83ce1f389c1feaaa3899dd716b670909687a)
10
+ * added synchronization between command processors threads (175f2ef890d23d490e04265949853b4202db1860)
11
+ * fixed debug output (0e9dd25a8cdde9195ef2060678fc6272270762f8)
12
+ * fix 1.9 support (725f14095c67c02be8b4f9b8ef2706de70cfa220)
13
+ * just a version bump, because i forgot to push fix for 1.9 (be7c60c446c293d522958fd9c6136dc21ece6dba)
14
+ * fix incompatibilities with command-line debug (37c98589bf1b8d43521bfa71fa75a587130c8494)
15
+ * fix incompatibilities with command-line debug (749ba472d5bd44c1488a7a310fa51712426ab972)
16
+ * fix incompatibilities with command-line debug, one more round (fa3b98788250d028ecac9db3828b14b6df307042)
17
+
18
+ 2009-12-22 14:28 Martin Krauskopf
19
+
20
+ * Rakefile, doc/protocol-spec.texi, lib/ruby-debug-ide.rb,
21
+ test/rd_test_base.rb: Increasing version; updating changes
22
+
23
+ 2009-12-22 14:23 Martin Krauskopf
24
+
25
+ * lib/ruby-debug/commands/variables.rb: Fix for possible
26
+ NoSuchMethodException (by Oleg Shpynov)
27
+
28
+ 2009-09-09 12:24 Martin Krauskopf
29
+
30
+ * ChangeLog, Rakefile, ext/mkrf_conf.rb, lib/ruby-debug-ide.rb,
31
+ test/rd_test_base.rb: Do not try to install native extension for
32
+ JRuby.
33
+
34
+ 2009-08-31 12:00 Martin Krauskopf
35
+
36
+ * ChangeLog: ChangeLog update
37
+
38
+ 2009-08-31 11:59 Martin Krauskopf
39
+
40
+ * Rakefile, bin/rdebug-ide, ext/extconf.rb, ext/mkrf_conf.rb,
41
+ lib/ruby-debug-ide.rb, lib/ruby-debug.rb, test/rd_test_base.rb:
42
+ 1)fixed bug #27009, 2)rename to ruby-debug-ide.rb (both by Mark
43
+ Moseley)
44
+
45
+ - to not collide with lib/ruby-debug.rb from ruby-debug-cli
46
+
47
+ 2009-08-26 19:06 Martin Krauskopf
48
+
49
+ * ChangeLog, Rakefile, bin/rdebug-ide, ext, ext/extconf.rb,
50
+ lib/ruby-debug.rb, lib/ruby-debug/command.rb,
51
+ lib/ruby-debug/event_processor.rb, lib/ruby-debug/processor.rb,
52
+ lib/ruby-debug/xml_printer.rb: Patch by Mark Moseley supporting
53
+ ruby-debug-base19.
54
+
55
+ Dynamically installs right ruby-debug-base dependency depending
56
+ on the version
57
+ of a Ruby platform being used. ruby-debug-base19 is the only
58
+ solution these
59
+ days for 1.9 debugging, so might be temporary solution until
60
+ ruby-debug
61
+ projects brings official version.
62
+
63
+ 2009-08-26 17:36 Martin Krauskopf
64
+
65
+ * lib/ruby-debug.rb: One more try for the right value for default
66
+ 'host' value.
67
+
68
+ 127.0.0.1 seemingly works with all systems and with IPv6 as well.
69
+ "localhost" and nil on have problems on some systems.
70
+
71
+ 2009-08-21 08:43 Martin Krauskopf
72
+
73
+ * lib/ruby-debug.rb: Ruby 1.9.x vs Java vs 'localhost' seems to be
74
+ problematic as well
75
+
76
+ 2009-06-04 16:02 Martin Krauskopf
77
+
78
+ * Rakefile, lib/ruby-debug.rb, test/rd_test_base.rb: Increasing
79
+ trung version
80
+
81
+ 2009-06-04 15:59 Martin Krauskopf
82
+
83
+ * ChangeLog, bin/rdebug-ide: Mentioning RubyMine among
84
+ ruby-debug-ide clients.
85
+
86
+ 2009-05-21 18:16 Martin Krauskopf
87
+
88
+ * ChangeLog: Changelog update
89
+
90
+ 2009-05-21 18:01 Martin Krauskopf
91
+
92
+ * Rakefile, doc/protocol-spec.texi, lib/ruby-debug.rb,
93
+ test/rd_test_base.rb: Added Debugger::start_server (ticket
94
+ #25972), patch by Tim Hanson
95
+
96
+ 2009-03-12 11:38 Martin Krauskopf
97
+
98
+ * ChangeLog, Rakefile, doc/protocol-spec.texi, lib/ruby-debug.rb,
99
+ test/rd_test_base.rb: Oops. 0.4.5 was not released yet, so it is
100
+ the rigth version, not 0.4.6, reverting.
101
+
102
+ 2009-03-12 11:31 Martin Krauskopf
103
+
104
+ * Rakefile, doc/protocol-spec.texi, lib/ruby-debug.rb,
105
+ lib/ruby-debug/commands/catchpoint.rb, test/rd_test_base.rb:
106
+ Possibility to remove catchpoints (patch by Chris Williams)
107
+
108
+ 2009-02-03 09:34 Martin Krauskopf
109
+
110
+ * Rakefile, bin/rdebug-ide, doc/protocol-spec.texi,
111
+ lib/ruby-debug.rb, test/rd_test_base.rb: 1) bugfix: syntax error
112
+ with Ruby 1.9 (patch by Mikael Rudberg) 2) 0.4.5 territory
113
+
114
+ 2009-01-14 07:19 Martin Krauskopf
115
+
116
+ * doc/protocol-spec.texi: completeng missing changes
117
+
118
+ 2009-01-13 10:00 Martin Krauskopf
119
+
120
+ * Rakefile, doc/protocol-spec.texi, lib/ruby-debug.rb,
121
+ test/rd_test_base.rb: 1) bugfix: print out backtrace when
122
+ debuggee fails. 2) version to 0.4.4
123
+
124
+ 2009-01-13 09:54 Martin Krauskopf
125
+
126
+ * Rakefile: Release appropriate files like license, tests, changes,
127
+ ... withing the gem.
128
+
129
+ 2008-12-19 08:23 Martin Krauskopf
130
+
131
+ * Rakefile, lib/ruby-debug.rb, test/rd_test_base.rb: Depends on the
132
+ "~> 0.10.3.x", rather then on 0.10.3 exactly. Increasing version
133
+ to 0.4.3.
134
+
135
+ 2008-12-19 08:20 Martin Krauskopf
136
+
137
+ * doc/protocol-spec.texi: typo
138
+
139
+ 2008-11-24 12:59 Martin Krauskopf
140
+
141
+ * doc/protocol-spec.texi: Changes between 0.3.1 and 0.3.2
142
+
143
+ 2008-11-21 10:56 Martin Krauskopf
144
+
145
+ * ChangeLog, Rakefile, doc/protocol-spec.texi,
146
+ etc/build_and_install.sh, lib/ruby-debug.rb,
147
+ test/rd_test_base.rb: Dependency changed to
148
+ ruby-debug-base-0.10.3 which fixes various bugs and contains
149
+ bunch of RFEs
150
+
151
+ 2008-11-10 09:22 Martin Krauskopf
152
+
153
+ * ChangeLog, doc/protocol-spec.texi: Changes for 0.4.1
154
+
155
+ 2008-11-10 08:15 Martin Krauskopf
156
+
157
+ * bin/rdebug-ide, lib/ruby-debug.rb, lib/ruby-debug/xml_printer.rb:
158
+ Making '-x' switch actually work. Commenting out sending <trace>
159
+ elements to the debugger. To be decided. There are large amount
160
+ of such events. For now servers rather for developers.
161
+
162
+ 2008-11-09 23:39 Martin Krauskopf
163
+
164
+ * bin/rdebug-ide, lib/ruby-debug.rb: --stop switch: stop at the
165
+ first line when the script is loaded. Utilized by remote
166
+ debugging.
167
+ s/Debugger#main/Debugger#debug_program (similarly to ruby-debug)
168
+
169
+ 2008-11-09 00:28 Martin Krauskopf
170
+
171
+ * lib/ruby-debug/commands/eval.rb,
172
+ lib/ruby-debug/commands/frame.rb, lib/ruby-debug/xml_printer.rb:
173
+ Fixing CLI verbose when -d is used. Some usused code
174
+
175
+ 2008-11-08 18:43 Martin Krauskopf
176
+
177
+ * doc/protocol-spec.texi, lib/ruby-debug/xml_printer.rb,
178
+ test/ruby-debug/xml_printer_test.rb: Ensure suspension's file
179
+ attribute contains absolute path.
180
+
181
+ 2008-11-08 18:33 Martin Krauskopf
182
+
183
+ * Rakefile, doc/protocol-spec.texi, etc/build_and_install.sh,
184
+ lib/ruby-debug.rb, lib/ruby-debug/xml_printer.rb,
185
+ nbproject/project.properties, test/rd_test_base.rb,
186
+ test/ruby-debug/xml_printer_test.rb: Ensure frame file attribute
187
+ contains absolute path. Increasing trunk version to 0.4.1
188
+
189
+ 2008-11-02 11:19 Martin Krauskopf
190
+
191
+ * doc/protocol-spec.texi: noting <message> element/event
192
+
193
+ 2008-10-30 02:14 Martin Krauskopf
194
+
195
+ * Rakefile, bin/rdebug-ide, doc/protocol-spec.texi,
196
+ etc/build_and_install.sh, lib/ruby-debug.rb,
197
+ lib/ruby-debug/xml_printer.rb, test/rd_test_base.rb,
198
+ test/ruby-debug, test/ruby-debug/xml_printer_test.rb: New
199
+ --xml-debug switch. To be used by frontend to not mess up
200
+ debuggee output with debugger's debug messages.
201
+
202
+ - increasing version to 0.4.0 (new <message debug='true'...>
203
+ attribute)
204
+ - more robust failures handling in DebugThread
205
+ - some XmlPrinterTest sanity tests
206
+
207
+ 2008-10-13 13:48 Martin Krauskopf
208
+
209
+ * doc/protocol-spec.texi: Mentioning 0.3.1 changes
210
+
211
+ 2008-10-09 06:48 Martin Krauskopf
212
+
213
+ * Rakefile, bin/rdebug-ide, etc/build_and_install.sh,
214
+ lib/ruby-debug.rb, test/rd_test_base.rb: Support for
215
+ '--load-mode' option. Hotfix, likely workaround, for GlassFish
216
+ debugging. Experimental, might be removed in the future.
217
+
218
+ If option is used, it calls Debugger#debug_load with
219
+ increment_start=true
220
+ Increasing version to 0.3.1
221
+
222
+ 2008-09-08 15:17 Martin Krauskopf
223
+
224
+ * ChangeLog: ChangeLog update before 0.3.0 release
225
+
226
+ 2008-09-05 11:52 Martin Krauskopf
227
+
228
+ * Rakefile, doc/protocol-spec.texi, etc/build_and_install.sh,
229
+ lib/ruby-debug.rb, lib/ruby-debug/commands/catchpoint.rb,
230
+ lib/ruby-debug/xml_printer.rb, test-base/readers.rb,
231
+ test-base/test_base.rb, test/rd_catchpoint_test.rb,
232
+ test/rd_test_base.rb: Setting catchpoint now answers with
233
+ <conditionSet> instead of just <message> providing better control
234
+ at frontend side.
235
+ Increasing version to 0.3.0 (incompatible protocol change)
236
+
237
+ 2008-09-03 14:14 Martin Krauskopf
238
+
239
+ * lib/ruby-debug/processor.rb: Do not swallow exceptions
240
+
241
+ 2008-09-02 18:24 Martin Krauskopf
242
+
243
+ * test-base/test_base.rb: Be sure socket is flushed during tests
244
+
245
+ 2008-09-02 13:55 Martin Krauskopf
246
+
247
+ * test-base/stepping_breakpoints_test.rb: ruby-debug-base fixes
248
+ stepping behaviour. Re-enabling common tests again
249
+
250
+ 2008-09-02 13:54 Martin Krauskopf
251
+
252
+ * test-base/test_base.rb, test/rd_test_base.rb: Do not hardcode
253
+ port for test server. Find always free one to prevent batch test
254
+ fails.
255
+
256
+ 2008-09-02 13:49 Martin Krauskopf
257
+
258
+ * nbproject/project.properties, nbproject/project.xml: Tweaking
259
+ NetBeans project metadata to include bin directory as a source
260
+ root
261
+
262
+ 2008-09-02 13:48 Martin Krauskopf
263
+
264
+ * Rakefile: Switching trunk dependency on recently released
265
+ ruby-debug-base 0.10.2
266
+
267
+ 2008-08-12 16:10 Martin Krauskopf
268
+
269
+ * ChangeLog, Rakefile, doc/protocol-spec.texi,
270
+ etc/build_and_install.sh, lib/ruby-debug.rb: Switching trunk to
271
+ 0.2.2
272
+
273
+ 2008-08-12 16:00 Martin Krauskopf
274
+
275
+ * lib/ruby-debug/xml_printer.rb, test-base/variables_test.rb:
276
+ debugging is terminated when object's to_s method raises an
277
+ exception
278
+
279
+ 2008-07-31 15:10 Martin Krauskopf
280
+
281
+ * nbproject: ignore private folder
282
+
283
+ 2008-07-31 15:09 Martin Krauskopf
284
+
285
+ * nbproject, nbproject/project.properties, nbproject/project.xml:
286
+ Adding NetBeans project metadata.
287
+
288
+ 2008-07-31 13:39 Martin Krauskopf
289
+
290
+ * doc/protocol-spec.texi: - pushing changes to website
291
+ - fixing typo s/workardouning/workarounding
292
+
293
+ 2008-07-31 13:23 Martin Krauskopf
294
+
295
+ * ChangeLog: ChangeLog update before tagging 0.2.1
296
+
297
+ 2008-07-31 13:20 Martin Krauskopf
298
+
299
+ * doc/protocol-spec.texi: Updating Changes between 0.2.0 and 0.2.1
300
+
301
+ 2008-07-31 13:13 Martin Krauskopf
302
+
303
+ * test-base/stepping_breakpoints_test.rb: tweaking tests for bugs
304
+ in MRI to catch it once it is fixed
305
+
306
+ 2008-07-31 13:12 Martin Krauskopf
307
+
308
+ * Rakefile, lib/ruby-debug.rb: Hotfixing problem with running Ruby
309
+ on Mac. See 'Debugger timing out' thread:
310
+ http://ruby.netbeans.org/servlets/BrowseList?list=users&by=thread&from=861334
311
+ Still continuing on 0.2.x row (changing dependeny on
312
+ ruby-debug-base back to 0.10.1)
313
+
314
+ 2008-07-14 22:40 Martin Krauskopf
315
+
316
+ * Rakefile: Make trunk dependent on ruby-debug-base 0.10.2 which
317
+ fixed important "finish" bug
318
+
319
+ 2008-06-22 07:10 Martin Krauskopf
320
+
321
+ * CHANGES, Rakefile, etc/build_and_install.sh, lib/ruby-debug.rb:
322
+ increasing trunk version to 0.2.1
323
+ - CHANGES no longer maintained
324
+
325
+ 2008-06-22 06:58 Martin Krauskopf
326
+
327
+ * ChangeLog: ChangeLog update before tagging 0.2.0
328
+
329
+ 2008-06-17 12:40 Martin Krauskopf
330
+
331
+ * test/rd_test_base.rb: Fixing test loadpath
332
+
333
+ 2008-06-17 11:52 Martin Krauskopf
334
+
335
+ * test-base/variables_test.rb: New version of Rubies (Ruby 1.8.7
336
+ and JRuby 1.1.2) handle stack differently
337
+
338
+ 2008-06-17 09:20 Martin Krauskopf
339
+
340
+ * lib/ruby-debug.rb: s/Debugger::VERSION/0.2.0; former one points
341
+ to ruby-debug-base version
342
+
343
+ 2008-06-12 06:41 Martin Krauskopf
344
+
345
+ * CHANGES, Rakefile, doc/protocol-spec.texi,
346
+ etc/build_and_install.sh: New version will be 0.2.0, since there
347
+ is slight incompatible change (see spec)
348
+
349
+ 2008-05-23 12:48 Martin Krauskopf
350
+
351
+ * doc/protocol-spec.texi: - documenting catchpoitns
352
+ - mentioning "catch off" in uncompatible changes
353
+
354
+ 2008-05-21 14:01 Martin Krauskopf
355
+
356
+ * ChangeLog, test/rd_catchpoint_test.rb: Adding test for catchpoint
357
+
358
+ 2008-05-21 13:32 Martin Krauskopf
359
+
360
+ * doc/protocol-spec.texi: s/0.1.1/trunk (not sure whether it will
361
+ be 0.1.11 or 0.2.0)
362
+ - since tag for enable/disable command
363
+
364
+ 2008-05-21 13:22 Martin Krauskopf
365
+
366
+ * doc/protocol-spec.texi: - enabled/disable breakpoint feature
367
+ - typo in delete command
368
+
369
+ 2008-05-21 13:21 Martin Krauskopf
370
+
371
+ * lib/ruby-debug/command.rb, lib/ruby-debug/commands/enable.rb,
372
+ lib/ruby-debug/helper.rb, lib/ruby-debug/xml_printer.rb,
373
+ test-base/readers.rb, test-base/test_base.rb,
374
+ test/rd_enable_disable_test.rb: Enabled/Disable breakpoint
375
+ feature
376
+
377
+ 2008-05-21 12:39 Martin Krauskopf
378
+
379
+ * doc/protocol-spec.texi: Deleting Breakpoint
380
+
381
+ 2008-05-17 21:06 Martin Krauskopf
382
+
383
+ * doc/protocol-spec.texi: - changes section
384
+ - continuing with protocol description
385
+
386
+ 2008-05-17 21:04 Martin Krauskopf
387
+
388
+ * lib/ruby-debug/commands/catchpoint.rb, test-base/inspect_test.rb,
389
+ test-base/readers.rb, test-base/test_base.rb: Tweaking
390
+ catchpoint.rb and addng basic test
391
+
392
+ 2008-05-15 20:59 Martin Krauskopf
393
+
394
+ * lib/ruby-debug/event_processor.rb: I've got the deadlock
395
+ suggesting that Debugger::DebuggerThread instance was being
396
+ traced from tests. Putting 'assertion' forbidding it
397
+
398
+ 2008-05-15 20:56 Martin Krauskopf
399
+
400
+ * lib/ruby-debug.rb: Sanity check whether control thread starts up
401
+ (#20121)
402
+
403
+ 2008-05-15 14:13 Martin Krauskopf
404
+
405
+ * doc/protocol-spec.texi: - fixing version
406
+ - RDEBUG_IDE variable
407
+
408
+ 2008-05-15 13:52 Martin Krauskopf
409
+
410
+ * doc/protocol-spec.texi: Fixing 'cond' section
411
+
412
+ 2008-05-15 10:58 Martin Krauskopf
413
+
414
+ * lib/ruby-debug/event_processor.rb: Preventing possible race
415
+ condition between a program thread and control thread
416
+
417
+ 2008-05-14 21:16 Martin Krauskopf
418
+
419
+ * lib/ruby-debug/processor.rb: State and ControlState does not need
420
+ to keep commands' classes
421
+ (they are used in CLI debugger from 'help' command)
422
+
423
+ 2008-05-13 18:58 Martin Krauskopf
424
+
425
+ * doc, doc/protocol-spec.texi: Some works on ruby-debug-ide
426
+ protocol specification, far from complete
427
+
428
+ 2008-05-13 18:04 Martin Krauskopf
429
+
430
+ * lib/ruby-debug/command.rb, lib/ruby-debug/commands/condition.rb,
431
+ lib/ruby-debug/xml_printer.rb, test-base/condition_test.rb,
432
+ test-base/readers.rb, test-base/test_base.rb,
433
+ test/rd_condition_test.rb: Support for setting condition on
434
+ breakpoints
435
+ - condition.rb copy-pasted (then tweaked) from ruby-debug until
436
+ we find better way
437
+
438
+ 2008-05-09 14:56 Martin Krauskopf
439
+
440
+ * lib/ruby-debug.rb, lib/ruby-debug/event_processor.rb,
441
+ test-base/stepping_breakpoints_test.rb,
442
+ test-base/threads_and_frames_test.rb: - implementing
443
+ Context#at_return to make 'finish' work with MRI (not used by
444
+ JRuby yet)
445
+ - tweaking test for different behaviours of interpreters
446
+
447
+ 2008-05-08 21:40 Martin Krauskopf
448
+
449
+ * test-base/threads_and_frames_test.rb: Adding test for 'finish'.
450
+ Currently does not work with MRI:
451
+ ruby-debug issue: [#20039] Finish does not work correctly
452
+
453
+ 2008-05-08 16:49 Martin Krauskopf
454
+
455
+ * Rakefile: - switching trunk to ruby-debug-base(s) 0.10.1
456
+ - remove README to pass the 'gem' task. So far we have no any
457
+ README
458
+
459
+ 2008-05-08 12:55 Martin Krauskopf
460
+
461
+ * ., ChangeLog, ChangeLog.archive, svn2cl_usermap: - archiving
462
+ before-division ChangeLogs
463
+ - ignore pkg and private configuration
464
+
465
+ 2008-05-08 12:17 Martin Krauskopf
466
+
467
+ * ., CHANGES, ChangeLog, MIT-LICENSE, Rakefile, bin,
468
+ bin/rdebug-ide, config.yaml, etc, etc/build_and_install.sh,
469
+ etc/kill_debugger, lib, lib/ruby-debug, lib/ruby-debug.rb,
470
+ lib/ruby-debug/command.rb, lib/ruby-debug/commands,
471
+ lib/ruby-debug/commands/breakpoints.rb,
472
+ lib/ruby-debug/commands/catchpoint.rb,
473
+ lib/ruby-debug/commands/control.rb,
474
+ lib/ruby-debug/commands/eval.rb,
475
+ lib/ruby-debug/commands/frame.rb,
476
+ lib/ruby-debug/commands/inspect.rb,
477
+ lib/ruby-debug/commands/load.rb,
478
+ lib/ruby-debug/commands/stepping.rb,
479
+ lib/ruby-debug/commands/threads.rb,
480
+ lib/ruby-debug/commands/variables.rb,
481
+ lib/ruby-debug/event_processor.rb, lib/ruby-debug/helper.rb,
482
+ lib/ruby-debug/interface.rb, lib/ruby-debug/printers.rb,
483
+ lib/ruby-debug/processor.rb, lib/ruby-debug/xml_printer.rb, test,
484
+ test-base, test-base/basic_test.rb, test-base/inspect_test.rb,
485
+ test-base/readers.rb, test-base/stepping_breakpoints_test.rb,
486
+ test-base/test_base.rb, test-base/threads_and_frames_test.rb,
487
+ test-base/variables_test.rb, test/rd_basic_test.rb,
488
+ test/rd_inspect_test.rb, test/rd_stepping_breakpoints_test.rb,
489
+ test/rd_test_base.rb, test/rd_threads_and_frames_test.rb,
490
+ test/rd_variables_test.rb: Dividing 'debug-commons' into two
491
+ projects:
492
+ - ruby-debug-ide: wrapper for ruby-debug-base
493
+ - classic-debug-ide: wrapper for classic debug.rb
494
+ to make further development more smooth. classic-debug-ide is
495
+ getting
496
+ deprecated by availability of ruby-debug-base for MRI, JRuby and
497
+ Rubinius
498
+