ruby-debug-ide 0.4.3 → 0.4.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 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
+
data/ChangeLog ADDED
@@ -0,0 +1,381 @@
1
+ 2009-01-13 10:00 Martin Krauskopf
2
+
3
+ * Rakefile, doc/protocol-spec.texi, lib/ruby-debug.rb,
4
+ test/rd_test_base.rb: 1) bugfix: print out backtrace when
5
+ debuggee fails. 2) version to 0.4.4
6
+
7
+ 2009-01-13 09:54 Martin Krauskopf
8
+
9
+ * Rakefile: Release appropriate files like license, tests, changes,
10
+ ... withing the gem.
11
+
12
+ 2008-12-19 08:23 Martin Krauskopf
13
+
14
+ * Rakefile, lib/ruby-debug.rb, test/rd_test_base.rb: Depends on the
15
+ "~> 0.10.3.x", rather then on 0.10.3 exactly. Increasing version
16
+ to 0.4.3.
17
+
18
+ 2008-12-19 08:20 Martin Krauskopf
19
+
20
+ * doc/protocol-spec.texi: typo
21
+
22
+ 2008-11-24 12:59 Martin Krauskopf
23
+
24
+ * doc/protocol-spec.texi: Changes between 0.3.1 and 0.3.2
25
+
26
+ 2008-11-21 10:56 Martin Krauskopf
27
+
28
+ * ChangeLog, Rakefile, doc/protocol-spec.texi,
29
+ etc/build_and_install.sh, lib/ruby-debug.rb,
30
+ test/rd_test_base.rb: Dependency changed to
31
+ ruby-debug-base-0.10.3 which fixes various bugs and contains
32
+ bunch of RFEs
33
+
34
+ 2008-11-10 09:22 Martin Krauskopf
35
+
36
+ * ChangeLog, doc/protocol-spec.texi: Changes for 0.4.1
37
+
38
+ 2008-11-10 08:15 Martin Krauskopf
39
+
40
+ * bin/rdebug-ide, lib/ruby-debug.rb, lib/ruby-debug/xml_printer.rb:
41
+ Making '-x' switch actually work. Commenting out sending <trace>
42
+ elements to the debugger. To be decided. There are large amount
43
+ of such events. For now servers rather for developers.
44
+
45
+ 2008-11-09 23:39 Martin Krauskopf
46
+
47
+ * bin/rdebug-ide, lib/ruby-debug.rb: --stop switch: stop at the
48
+ first line when the script is loaded. Utilized by remote
49
+ debugging.
50
+ s/Debugger#main/Debugger#debug_program (similarly to ruby-debug)
51
+
52
+ 2008-11-09 00:28 Martin Krauskopf
53
+
54
+ * lib/ruby-debug/commands/eval.rb,
55
+ lib/ruby-debug/commands/frame.rb, lib/ruby-debug/xml_printer.rb:
56
+ Fixing CLI verbose when -d is used. Some usused code
57
+
58
+ 2008-11-08 18:43 Martin Krauskopf
59
+
60
+ * doc/protocol-spec.texi, lib/ruby-debug/xml_printer.rb,
61
+ test/ruby-debug/xml_printer_test.rb: Ensure suspension's file
62
+ attribute contains absolute path.
63
+
64
+ 2008-11-08 18:33 Martin Krauskopf
65
+
66
+ * Rakefile, doc/protocol-spec.texi, etc/build_and_install.sh,
67
+ lib/ruby-debug.rb, lib/ruby-debug/xml_printer.rb,
68
+ nbproject/project.properties, test/rd_test_base.rb,
69
+ test/ruby-debug/xml_printer_test.rb: Ensure frame file attribute
70
+ contains absolute path. Increasing trunk version to 0.4.1
71
+
72
+ 2008-11-02 11:19 Martin Krauskopf
73
+
74
+ * doc/protocol-spec.texi: noting <message> element/event
75
+
76
+ 2008-10-30 02:14 Martin Krauskopf
77
+
78
+ * Rakefile, bin/rdebug-ide, doc/protocol-spec.texi,
79
+ etc/build_and_install.sh, lib/ruby-debug.rb,
80
+ lib/ruby-debug/xml_printer.rb, test/rd_test_base.rb,
81
+ test/ruby-debug, test/ruby-debug/xml_printer_test.rb: New
82
+ --xml-debug switch. To be used by frontend to not mess up
83
+ debuggee output with debugger's debug messages.
84
+
85
+ - increasing version to 0.4.0 (new <message debug='true'...>
86
+ attribute)
87
+ - more robust failures handling in DebugThread
88
+ - some XmlPrinterTest sanity tests
89
+
90
+ 2008-10-13 13:48 Martin Krauskopf
91
+
92
+ * doc/protocol-spec.texi: Mentioning 0.3.1 changes
93
+
94
+ 2008-10-09 06:48 Martin Krauskopf
95
+
96
+ * Rakefile, bin/rdebug-ide, etc/build_and_install.sh,
97
+ lib/ruby-debug.rb, test/rd_test_base.rb: Support for
98
+ '--load-mode' option. Hotfix, likely workaround, for GlassFish
99
+ debugging. Experimental, might be removed in the future.
100
+
101
+ If option is used, it calls Debugger#debug_load with
102
+ increment_start=true
103
+ Increasing version to 0.3.1
104
+
105
+ 2008-09-08 15:17 Martin Krauskopf
106
+
107
+ * ChangeLog: ChangeLog update before 0.3.0 release
108
+
109
+ 2008-09-05 11:52 Martin Krauskopf
110
+
111
+ * Rakefile, doc/protocol-spec.texi, etc/build_and_install.sh,
112
+ lib/ruby-debug.rb, lib/ruby-debug/commands/catchpoint.rb,
113
+ lib/ruby-debug/xml_printer.rb, test-base/readers.rb,
114
+ test-base/test_base.rb, test/rd_catchpoint_test.rb,
115
+ test/rd_test_base.rb: Setting catchpoint now answers with
116
+ <conditionSet> instead of just <message> providing better control
117
+ at frontend side.
118
+ Increasing version to 0.3.0 (incompatible protocol change)
119
+
120
+ 2008-09-03 14:14 Martin Krauskopf
121
+
122
+ * lib/ruby-debug/processor.rb: Do not swallow exceptions
123
+
124
+ 2008-09-02 18:24 Martin Krauskopf
125
+
126
+ * test-base/test_base.rb: Be sure socket is flushed during tests
127
+
128
+ 2008-09-02 13:55 Martin Krauskopf
129
+
130
+ * test-base/stepping_breakpoints_test.rb: ruby-debug-base fixes
131
+ stepping behaviour. Re-enabling common tests again
132
+
133
+ 2008-09-02 13:54 Martin Krauskopf
134
+
135
+ * test-base/test_base.rb, test/rd_test_base.rb: Do not hardcode
136
+ port for test server. Find always free one to prevent batch test
137
+ fails.
138
+
139
+ 2008-09-02 13:49 Martin Krauskopf
140
+
141
+ * nbproject/project.properties, nbproject/project.xml: Tweaking
142
+ NetBeans project metadata to include bin directory as a source
143
+ root
144
+
145
+ 2008-09-02 13:48 Martin Krauskopf
146
+
147
+ * Rakefile: Switching trunk dependency on recently released
148
+ ruby-debug-base 0.10.2
149
+
150
+ 2008-08-12 16:10 Martin Krauskopf
151
+
152
+ * ChangeLog, Rakefile, doc/protocol-spec.texi,
153
+ etc/build_and_install.sh, lib/ruby-debug.rb: Switching trunk to
154
+ 0.2.2
155
+
156
+ 2008-08-12 16:00 Martin Krauskopf
157
+
158
+ * lib/ruby-debug/xml_printer.rb, test-base/variables_test.rb:
159
+ debugging is terminated when object's to_s method raises an
160
+ exception
161
+
162
+ 2008-07-31 15:10 Martin Krauskopf
163
+
164
+ * nbproject: ignore private folder
165
+
166
+ 2008-07-31 15:09 Martin Krauskopf
167
+
168
+ * nbproject, nbproject/project.properties, nbproject/project.xml:
169
+ Adding NetBeans project metadata.
170
+
171
+ 2008-07-31 13:39 Martin Krauskopf
172
+
173
+ * doc/protocol-spec.texi: - pushing changes to website
174
+ - fixing typo s/workardouning/workarounding
175
+
176
+ 2008-07-31 13:23 Martin Krauskopf
177
+
178
+ * ChangeLog: ChangeLog update before tagging 0.2.1
179
+
180
+ 2008-07-31 13:20 Martin Krauskopf
181
+
182
+ * doc/protocol-spec.texi: Updating Changes between 0.2.0 and 0.2.1
183
+
184
+ 2008-07-31 13:13 Martin Krauskopf
185
+
186
+ * test-base/stepping_breakpoints_test.rb: tweaking tests for bugs
187
+ in MRI to catch it once it is fixed
188
+
189
+ 2008-07-31 13:12 Martin Krauskopf
190
+
191
+ * Rakefile, lib/ruby-debug.rb: Hotfixing problem with running Ruby
192
+ on Mac. See 'Debugger timing out' thread:
193
+ http://ruby.netbeans.org/servlets/BrowseList?list=users&by=thread&from=861334
194
+ Still continuing on 0.2.x row (changing dependeny on
195
+ ruby-debug-base back to 0.10.1)
196
+
197
+ 2008-07-14 22:40 Martin Krauskopf
198
+
199
+ * Rakefile: Make trunk dependent on ruby-debug-base 0.10.2 which
200
+ fixed important "finish" bug
201
+
202
+ 2008-06-22 07:10 Martin Krauskopf
203
+
204
+ * CHANGES, Rakefile, etc/build_and_install.sh, lib/ruby-debug.rb:
205
+ increasing trunk version to 0.2.1
206
+ - CHANGES no longer maintained
207
+
208
+ 2008-06-22 06:58 Martin Krauskopf
209
+
210
+ * ChangeLog: ChangeLog update before tagging 0.2.0
211
+
212
+ 2008-06-17 12:40 Martin Krauskopf
213
+
214
+ * test/rd_test_base.rb: Fixing test loadpath
215
+
216
+ 2008-06-17 11:52 Martin Krauskopf
217
+
218
+ * test-base/variables_test.rb: New version of Rubies (Ruby 1.8.7
219
+ and JRuby 1.1.2) handle stack differently
220
+
221
+ 2008-06-17 09:20 Martin Krauskopf
222
+
223
+ * lib/ruby-debug.rb: s/Debugger::VERSION/0.2.0; former one points
224
+ to ruby-debug-base version
225
+
226
+ 2008-06-12 06:41 Martin Krauskopf
227
+
228
+ * CHANGES, Rakefile, doc/protocol-spec.texi,
229
+ etc/build_and_install.sh: New version will be 0.2.0, since there
230
+ is slight incompatible change (see spec)
231
+
232
+ 2008-05-23 12:48 Martin Krauskopf
233
+
234
+ * doc/protocol-spec.texi: - documenting catchpoitns
235
+ - mentioning "catch off" in uncompatible changes
236
+
237
+ 2008-05-21 14:01 Martin Krauskopf
238
+
239
+ * ChangeLog, test/rd_catchpoint_test.rb: Adding test for catchpoint
240
+
241
+ 2008-05-21 13:32 Martin Krauskopf
242
+
243
+ * doc/protocol-spec.texi: s/0.1.1/trunk (not sure whether it will
244
+ be 0.1.11 or 0.2.0)
245
+ - since tag for enable/disable command
246
+
247
+ 2008-05-21 13:22 Martin Krauskopf
248
+
249
+ * doc/protocol-spec.texi: - enabled/disable breakpoint feature
250
+ - typo in delete command
251
+
252
+ 2008-05-21 13:21 Martin Krauskopf
253
+
254
+ * lib/ruby-debug/command.rb, lib/ruby-debug/commands/enable.rb,
255
+ lib/ruby-debug/helper.rb, lib/ruby-debug/xml_printer.rb,
256
+ test-base/readers.rb, test-base/test_base.rb,
257
+ test/rd_enable_disable_test.rb: Enabled/Disable breakpoint
258
+ feature
259
+
260
+ 2008-05-21 12:39 Martin Krauskopf
261
+
262
+ * doc/protocol-spec.texi: Deleting Breakpoint
263
+
264
+ 2008-05-17 21:06 Martin Krauskopf
265
+
266
+ * doc/protocol-spec.texi: - changes section
267
+ - continuing with protocol description
268
+
269
+ 2008-05-17 21:04 Martin Krauskopf
270
+
271
+ * lib/ruby-debug/commands/catchpoint.rb, test-base/inspect_test.rb,
272
+ test-base/readers.rb, test-base/test_base.rb: Tweaking
273
+ catchpoint.rb and addng basic test
274
+
275
+ 2008-05-15 20:59 Martin Krauskopf
276
+
277
+ * lib/ruby-debug/event_processor.rb: I've got the deadlock
278
+ suggesting that Debugger::DebuggerThread instance was being
279
+ traced from tests. Putting 'assertion' forbidding it
280
+
281
+ 2008-05-15 20:56 Martin Krauskopf
282
+
283
+ * lib/ruby-debug.rb: Sanity check whether control thread starts up
284
+ (#20121)
285
+
286
+ 2008-05-15 14:13 Martin Krauskopf
287
+
288
+ * doc/protocol-spec.texi: - fixing version
289
+ - RDEBUG_IDE variable
290
+
291
+ 2008-05-15 13:52 Martin Krauskopf
292
+
293
+ * doc/protocol-spec.texi: Fixing 'cond' section
294
+
295
+ 2008-05-15 10:58 Martin Krauskopf
296
+
297
+ * lib/ruby-debug/event_processor.rb: Preventing possible race
298
+ condition between a program thread and control thread
299
+
300
+ 2008-05-14 21:16 Martin Krauskopf
301
+
302
+ * lib/ruby-debug/processor.rb: State and ControlState does not need
303
+ to keep commands' classes
304
+ (they are used in CLI debugger from 'help' command)
305
+
306
+ 2008-05-13 18:58 Martin Krauskopf
307
+
308
+ * doc, doc/protocol-spec.texi: Some works on ruby-debug-ide
309
+ protocol specification, far from complete
310
+
311
+ 2008-05-13 18:04 Martin Krauskopf
312
+
313
+ * lib/ruby-debug/command.rb, lib/ruby-debug/commands/condition.rb,
314
+ lib/ruby-debug/xml_printer.rb, test-base/condition_test.rb,
315
+ test-base/readers.rb, test-base/test_base.rb,
316
+ test/rd_condition_test.rb: Support for setting condition on
317
+ breakpoints
318
+ - condition.rb copy-pasted (then tweaked) from ruby-debug until
319
+ we find better way
320
+
321
+ 2008-05-09 14:56 Martin Krauskopf
322
+
323
+ * lib/ruby-debug.rb, lib/ruby-debug/event_processor.rb,
324
+ test-base/stepping_breakpoints_test.rb,
325
+ test-base/threads_and_frames_test.rb: - implementing
326
+ Context#at_return to make 'finish' work with MRI (not used by
327
+ JRuby yet)
328
+ - tweaking test for different behaviours of interpreters
329
+
330
+ 2008-05-08 21:40 Martin Krauskopf
331
+
332
+ * test-base/threads_and_frames_test.rb: Adding test for 'finish'.
333
+ Currently does not work with MRI:
334
+ ruby-debug issue: [#20039] Finish does not work correctly
335
+
336
+ 2008-05-08 16:49 Martin Krauskopf
337
+
338
+ * Rakefile: - switching trunk to ruby-debug-base(s) 0.10.1
339
+ - remove README to pass the 'gem' task. So far we have no any
340
+ README
341
+
342
+ 2008-05-08 12:55 Martin Krauskopf
343
+
344
+ * ., ChangeLog, ChangeLog.archive, svn2cl_usermap: - archiving
345
+ before-division ChangeLogs
346
+ - ignore pkg and private configuration
347
+
348
+ 2008-05-08 12:17 Martin Krauskopf
349
+
350
+ * ., CHANGES, ChangeLog, MIT-LICENSE, Rakefile, bin,
351
+ bin/rdebug-ide, config.yaml, etc, etc/build_and_install.sh,
352
+ etc/kill_debugger, lib, lib/ruby-debug, lib/ruby-debug.rb,
353
+ lib/ruby-debug/command.rb, lib/ruby-debug/commands,
354
+ lib/ruby-debug/commands/breakpoints.rb,
355
+ lib/ruby-debug/commands/catchpoint.rb,
356
+ lib/ruby-debug/commands/control.rb,
357
+ lib/ruby-debug/commands/eval.rb,
358
+ lib/ruby-debug/commands/frame.rb,
359
+ lib/ruby-debug/commands/inspect.rb,
360
+ lib/ruby-debug/commands/load.rb,
361
+ lib/ruby-debug/commands/stepping.rb,
362
+ lib/ruby-debug/commands/threads.rb,
363
+ lib/ruby-debug/commands/variables.rb,
364
+ lib/ruby-debug/event_processor.rb, lib/ruby-debug/helper.rb,
365
+ lib/ruby-debug/interface.rb, lib/ruby-debug/printers.rb,
366
+ lib/ruby-debug/processor.rb, lib/ruby-debug/xml_printer.rb, test,
367
+ test-base, test-base/basic_test.rb, test-base/inspect_test.rb,
368
+ test-base/readers.rb, test-base/stepping_breakpoints_test.rb,
369
+ test-base/test_base.rb, test-base/threads_and_frames_test.rb,
370
+ test-base/variables_test.rb, test/rd_basic_test.rb,
371
+ test/rd_inspect_test.rb, test/rd_stepping_breakpoints_test.rb,
372
+ test/rd_test_base.rb, test/rd_threads_and_frames_test.rb,
373
+ test/rd_variables_test.rb: Dividing 'debug-commons' into two
374
+ projects:
375
+ - ruby-debug-ide: wrapper for ruby-debug-base
376
+ - classic-debug-ide: wrapper for classic debug.rb
377
+ to make further development more smooth. classic-debug-ide is
378
+ getting
379
+ deprecated by availability of ruby-debug-base for MRI, JRuby and
380
+ Rubinius
381
+