ruby-debug-ide19 0.4.10
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +75 -0
- data/ChangeLog +465 -0
- data/ChangeLog.archive +1073 -0
- data/MIT-LICENSE +24 -0
- data/Rakefile +110 -0
- data/bin/rdebug-ide +88 -0
- data/ext/mkrf_conf.rb +28 -0
- data/lib/ruby-debug-ide.rb +172 -0
- data/lib/ruby-debug/command.rb +169 -0
- data/lib/ruby-debug/commands/breakpoints.rb +129 -0
- data/lib/ruby-debug/commands/catchpoint.rb +52 -0
- data/lib/ruby-debug/commands/condition.rb +51 -0
- data/lib/ruby-debug/commands/control.rb +129 -0
- data/lib/ruby-debug/commands/enable.rb +203 -0
- data/lib/ruby-debug/commands/eval.rb +64 -0
- data/lib/ruby-debug/commands/frame.rb +155 -0
- data/lib/ruby-debug/commands/inspect.rb +24 -0
- data/lib/ruby-debug/commands/jump.rb +73 -0
- data/lib/ruby-debug/commands/load.rb +18 -0
- data/lib/ruby-debug/commands/stepping.rb +108 -0
- data/lib/ruby-debug/commands/threads.rb +153 -0
- data/lib/ruby-debug/commands/variables.rb +136 -0
- data/lib/ruby-debug/event_processor.rb +74 -0
- data/lib/ruby-debug/helper.rb +33 -0
- data/lib/ruby-debug/interface.rb +39 -0
- data/lib/ruby-debug/printers.rb +2 -0
- data/lib/ruby-debug/processor.rb +152 -0
- data/lib/ruby-debug/xml_printer.rb +268 -0
- data/test/rd_basic_test.rb +10 -0
- data/test/rd_catchpoint_test.rb +20 -0
- data/test/rd_condition_test.rb +11 -0
- data/test/rd_enable_disable_test.rb +43 -0
- data/test/rd_inspect_test.rb +11 -0
- data/test/rd_stepping_breakpoints_test.rb +36 -0
- data/test/rd_test_base.rb +44 -0
- data/test/rd_threads_and_frames_test.rb +11 -0
- data/test/rd_variables_test.rb +11 -0
- data/test/ruby-debug/xml_printer_test.rb +105 -0
- metadata +103 -0
data/ChangeLog.archive
ADDED
@@ -0,0 +1,1073 @@
|
|
1
|
+
This file contains changes before division debug-commons project into
|
2
|
+
'ruby-debug-ide' and 'classic-debug-ide' projects.
|
3
|
+
|
4
|
+
2008-05-08 12:45 Martin Krauskopf
|
5
|
+
|
6
|
+
* README, Rakefile, nbproject, svn2cl_usermap: Finishing division
|
7
|
+
cleanup
|
8
|
+
|
9
|
+
2008-05-08 12:17 Martin Krauskopf
|
10
|
+
|
11
|
+
* MIT-LICENSE, classic-debug/ChangeLog, classic-debug/Rakefile,
|
12
|
+
classic-debug/build_dist, classic-debug/classic-debug.txt,
|
13
|
+
classic-debug/lib/classic-debug-verbose.rb,
|
14
|
+
classic-debug/lib/classic-debug.rb, classic-debug/lib/context.rb,
|
15
|
+
classic-debug/lib/xml_printer.rb,
|
16
|
+
classic-debug/test/cd_basic_test.rb,
|
17
|
+
classic-debug/test/cd_inspect_test.rb,
|
18
|
+
classic-debug/test/cd_stepping_breakpoints_test.rb,
|
19
|
+
classic-debug/test/cd_test_base.rb,
|
20
|
+
classic-debug/test/cd_threads_and_frames_test.rb,
|
21
|
+
classic-debug/test/cd_variables_test.rb, config.yaml,
|
22
|
+
etc/kill_debugger, ruby-debug-ide/CHANGES,
|
23
|
+
ruby-debug-ide/ChangeLog, ruby-debug-ide/README,
|
24
|
+
ruby-debug-ide/Rakefile, ruby-debug-ide/bin/rdebug-ide,
|
25
|
+
ruby-debug-ide/build_and_install.sh,
|
26
|
+
ruby-debug-ide/lib/ruby-debug.rb,
|
27
|
+
ruby-debug-ide/lib/ruby-debug/command.rb,
|
28
|
+
ruby-debug-ide/lib/ruby-debug/commands/breakpoints.rb,
|
29
|
+
ruby-debug-ide/lib/ruby-debug/commands/catchpoint.rb,
|
30
|
+
ruby-debug-ide/lib/ruby-debug/commands/control.rb,
|
31
|
+
ruby-debug-ide/lib/ruby-debug/commands/eval.rb,
|
32
|
+
ruby-debug-ide/lib/ruby-debug/commands/frame.rb,
|
33
|
+
ruby-debug-ide/lib/ruby-debug/commands/inspect.rb,
|
34
|
+
ruby-debug-ide/lib/ruby-debug/commands/load.rb,
|
35
|
+
ruby-debug-ide/lib/ruby-debug/commands/stepping.rb,
|
36
|
+
ruby-debug-ide/lib/ruby-debug/commands/threads.rb,
|
37
|
+
ruby-debug-ide/lib/ruby-debug/commands/variables.rb,
|
38
|
+
ruby-debug-ide/lib/ruby-debug/event_processor.rb,
|
39
|
+
ruby-debug-ide/lib/ruby-debug/helper.rb,
|
40
|
+
ruby-debug-ide/lib/ruby-debug/interface.rb,
|
41
|
+
ruby-debug-ide/lib/ruby-debug/printers.rb,
|
42
|
+
ruby-debug-ide/lib/ruby-debug/processor.rb,
|
43
|
+
ruby-debug-ide/lib/ruby-debug/xml_printer.rb,
|
44
|
+
ruby-debug-ide/test/rd_basic_test.rb,
|
45
|
+
ruby-debug-ide/test/rd_inspect_test.rb,
|
46
|
+
ruby-debug-ide/test/rd_stepping_breakpoints_test.rb,
|
47
|
+
ruby-debug-ide/test/rd_test_base.rb,
|
48
|
+
ruby-debug-ide/test/rd_threads_and_frames_test.rb,
|
49
|
+
ruby-debug-ide/test/rd_variables_test.rb,
|
50
|
+
test-base/basic_test.rb, test-base/inspect_test.rb,
|
51
|
+
test-base/readers.rb, test-base/stepping_breakpoints_test.rb,
|
52
|
+
test-base/test_base.rb, test-base/threads_and_frames_test.rb,
|
53
|
+
test-base/variables_test.rb: Dividing 'debug-commons' into two
|
54
|
+
projects:
|
55
|
+
- ruby-debug-ide: wrapper for ruby-debug-base
|
56
|
+
- classic-debug-ide: wrapper for classic debug.rb
|
57
|
+
to make further development more smooth. classic-debug-ide is
|
58
|
+
getting
|
59
|
+
deprecated by availability of ruby-debug-base for MRI, JRuby and
|
60
|
+
Rubinius
|
61
|
+
|
62
|
+
2008-05-05 14:47 Martin Krauskopf
|
63
|
+
|
64
|
+
* config.yaml: More info for developers
|
65
|
+
|
66
|
+
2008-05-05 14:45 Martin Krauskopf
|
67
|
+
|
68
|
+
* ., ruby-debug-ide/test/rd_test_base.rb, test-base/test_base.rb: -
|
69
|
+
s/config.yaml.private/config.private.yaml for better recognition
|
70
|
+
by tools
|
71
|
+
- sanity check for rdebug-ide presence during tests
|
72
|
+
|
73
|
+
2008-03-13 12:39 Martin Krauskopf
|
74
|
+
|
75
|
+
* ruby-debug-ide/Rakefile, ruby-debug-ide/build_and_install.sh:
|
76
|
+
Switching trunk to version 0.1.11
|
77
|
+
|
78
|
+
2008-03-13 12:35 Martin Krauskopf
|
79
|
+
|
80
|
+
* ruby-debug-ide/CHANGES, ruby-debug-ide/lib/ruby-debug.rb:
|
81
|
+
[#17601] Cannot connect to debugger using ipv6
|
82
|
+
(confimed by Piotr Hlawski)
|
83
|
+
|
84
|
+
2008-02-19 12:30 Martin Krauskopf
|
85
|
+
|
86
|
+
* MIT-LICENSE: Updating license and addint MIT license for
|
87
|
+
jruby-debug-base
|
88
|
+
|
89
|
+
2008-02-04 13:51 Martin Krauskopf
|
90
|
+
|
91
|
+
* ruby-debug-ide/CHANGES, ruby-debug-ide/ChangeLog,
|
92
|
+
ruby-debug-ide/lib/ruby-debug/interface.rb: Workarounding JRuby
|
93
|
+
issue (http://jira.codehaus.org/browse/JRUBY-2063)
|
94
|
+
|
95
|
+
2008-02-01 22:49 Martin Krauskopf
|
96
|
+
|
97
|
+
* ., ChangeLog, classic-debug/ChangeLog, ruby-debug-ide/ChangeLog:
|
98
|
+
Ignore per-developer configuration. Batch ChangeLog regeneration.
|
99
|
+
|
100
|
+
2008-02-01 22:44 Martin Krauskopf
|
101
|
+
|
102
|
+
* config.yaml, ruby-debug-ide/test/rd_test_base.rb,
|
103
|
+
test-base/test_base.rb: Easy way to run jruby in the debug mode
|
104
|
+
(handy when debugging jruby-debug-base under Java debugger)
|
105
|
+
|
106
|
+
2008-02-01 22:42 Martin Krauskopf
|
107
|
+
|
108
|
+
* config.yaml, test-base/test_base.rb: Making config.yaml just a
|
109
|
+
template, providing support for config.yaml.private for each
|
110
|
+
developer which is not shared in VCS.
|
111
|
+
Default interpreter to ruby in template
|
112
|
+
|
113
|
+
2008-02-01 22:26 Martin Krauskopf
|
114
|
+
|
115
|
+
* classic-debug/test/cd_basic_test.rb,
|
116
|
+
classic-debug/test/cd_inspect_test.rb,
|
117
|
+
classic-debug/test/cd_stepping_breakpoints_test.rb,
|
118
|
+
classic-debug/test/cd_test_base.rb,
|
119
|
+
classic-debug/test/cd_threads_and_frames_test.rb,
|
120
|
+
classic-debug/test/cd_variables_test.rb,
|
121
|
+
ruby-debug-ide/test/rd_inspect_test.rb,
|
122
|
+
ruby-debug-ide/test/rd_stepping_breakpoints_test.rb,
|
123
|
+
ruby-debug-ide/test/rd_threads_and_frames_test.rb,
|
124
|
+
ruby-debug-ide/test/rd_variables_test.rb: Tweaking loadpath so
|
125
|
+
all test are runnable directly
|
126
|
+
|
127
|
+
2008-02-01 18:48 Martin Krauskopf
|
128
|
+
|
129
|
+
* ruby-debug-ide/lib/ruby-debug.rb,
|
130
|
+
ruby-debug-ide/lib/ruby-debug/xml_printer.rb: Moving print_debug
|
131
|
+
to Debugger module, so it might be used from all places. It has
|
132
|
+
nothing to do with XMLPrinter
|
133
|
+
|
134
|
+
2008-02-01 17:01 Martin Krauskopf
|
135
|
+
|
136
|
+
* ruby-debug-ide/test/rd_test_base.rb: Do not return whole PATH as
|
137
|
+
array when rdebug-ide is not present
|
138
|
+
|
139
|
+
2008-02-01 16:03 Martin Krauskopf
|
140
|
+
|
141
|
+
* ChangeLog, Rakefile, classic-debug/ChangeLog,
|
142
|
+
ruby-debug-ide/ChangeLog, svn2cl_usermap: svn2cl ChangeLog
|
143
|
+
generator support
|
144
|
+
|
145
|
+
2008-02-01 15:59 Martin Krauskopf
|
146
|
+
|
147
|
+
* ruby-debug-ide/CHANGES, ruby-debug-ide/ChangeLog:
|
148
|
+
s/ChangeLog/CHANGES - is not GNU-style ChangeLog
|
149
|
+
|
150
|
+
2008-02-01 15:45 Martin Krauskopf
|
151
|
+
|
152
|
+
* classic-debug/test/cd_stepping_breakpoints_test.rb,
|
153
|
+
classic-debug/test/cd_test_base.rb,
|
154
|
+
classic-debug/test/cd_threads_and_frames_test.rb, config.yaml,
|
155
|
+
ruby-debug-ide/test/rd_test_base.rb, test-base/test_base.rb: -
|
156
|
+
configurable interpreter through yaml
|
157
|
+
- pass righ parameters for JRuby debuggers
|
158
|
+
- assert error when needed unset key is not present in yaml
|
159
|
+
|
160
|
+
2008-02-01 12:42 Martin Krauskopf
|
161
|
+
|
162
|
+
* Rakefile, test-base/test_base.rb: Enable and fixing warnings
|
163
|
+
|
164
|
+
2008-02-01 11:47 Martin Krauskopf
|
165
|
+
|
166
|
+
* Rakefile: Convenient targets for running classic and fast
|
167
|
+
debuggers' tests separately
|
168
|
+
|
169
|
+
2008-02-01 11:46 Martin Krauskopf
|
170
|
+
|
171
|
+
* ruby-debug-ide/Rakefile: Switching trunk to ruby-debug-base
|
172
|
+
0.10.0
|
173
|
+
|
174
|
+
2008-02-01 11:45 Martin Krauskopf
|
175
|
+
|
176
|
+
* ruby-debug-ide/lib/ruby-debug.rb,
|
177
|
+
ruby-debug-ide/lib/ruby-debug/processor.rb: minor refactoring:
|
178
|
+
clearer name for Debugger.event_processor
|
179
|
+
|
180
|
+
2008-02-01 11:17 Martin Krauskopf
|
181
|
+
|
182
|
+
* ruby-debug-ide/build_and_install.sh: tweak: do not try to contact
|
183
|
+
rubyforge during installation
|
184
|
+
|
185
|
+
2008-01-29 22:41 Martin Krauskopf
|
186
|
+
|
187
|
+
* ruby-debug-ide/Rakefile: Minor fixes/tweaks to specifications
|
188
|
+
|
189
|
+
2008-01-21 21:46 Martin Krauskopf
|
190
|
+
|
191
|
+
* ruby-debug-ide/Rakefile: - fixing failing ide_spec task (not sure
|
192
|
+
why it didn't fail before)
|
193
|
+
- s/javaide_spec/ide_spec (really not Java dependent in any way)
|
194
|
+
|
195
|
+
2007-11-12 15:27 Martin Krauskopf
|
196
|
+
|
197
|
+
* classic-debug/ChangeLog, classic-debug/lib/xml_printer.rb,
|
198
|
+
ruby-debug-ide/ChangeLog,
|
199
|
+
ruby-debug-ide/lib/ruby-debug/xml_printer.rb,
|
200
|
+
test-base/variables_test.rb: do not use '==' from within debugger
|
201
|
+
to prevent runtime error
|
202
|
+
|
203
|
+
2007-11-07 10:37 Martin Krauskopf
|
204
|
+
|
205
|
+
* classic-debug/ChangeLog, classic-debug/lib/xml_printer.rb,
|
206
|
+
ruby-debug-ide/ChangeLog,
|
207
|
+
ruby-debug-ide/lib/ruby-debug/xml_printer.rb,
|
208
|
+
test-base/variables_test.rb: Fixed bug when inspected variable's
|
209
|
+
to_s methods returns non-String. Returns diagonstic message now.
|
210
|
+
|
211
|
+
2007-11-07 09:37 Martin Krauskopf
|
212
|
+
|
213
|
+
* ruby-debug-ide/test/rd_test_base.rb: s/':'/File::PATH_SEPARATOR
|
214
|
+
|
215
|
+
2007-11-07 09:29 Martin Krauskopf
|
216
|
+
|
217
|
+
* ruby-debug-ide/test/rd_test_base.rb: redundant require; commited
|
218
|
+
by mistake
|
219
|
+
|
220
|
+
2007-11-07 09:03 Martin Krauskopf
|
221
|
+
|
222
|
+
* config.yaml, ruby-debug-ide/test/rd_test_base.rb: Try to find
|
223
|
+
rdebug-ide for tests automatically without the need to set it in
|
224
|
+
config
|
225
|
+
|
226
|
+
2007-11-06 14:51 Martin Krauskopf
|
227
|
+
|
228
|
+
* nbproject: ignore per-user metadata
|
229
|
+
|
230
|
+
2007-11-06 14:51 Martin Krauskopf
|
231
|
+
|
232
|
+
* nbproject, nbproject/project.properties, nbproject/project.xml: -
|
233
|
+
adding NetBeans metadata to make it easy to open directly in
|
234
|
+
NetBeans
|
235
|
+
(Eclipse one are already there)
|
236
|
+
|
237
|
+
2007-10-26 10:15 Martin Krauskopf
|
238
|
+
|
239
|
+
* ruby-debug-ide/Rakefile, ruby-debug-ide/build_and_install.sh:
|
240
|
+
Actually, since the beginning, release version was lower by one
|
241
|
+
version.
|
242
|
+
So after 0.1.9 release, 0.1.10 is right for trunk.
|
243
|
+
|
244
|
+
2007-10-26 09:59 Martin Krauskopf
|
245
|
+
|
246
|
+
* ruby-debug-ide/Rakefile, ruby-debug-ide/build_and_install.sh:
|
247
|
+
trunk is 0.1.9, 0.1.8 was already released
|
248
|
+
|
249
|
+
2007-10-25 07:31 Martin Krauskopf
|
250
|
+
|
251
|
+
* test-base/variables_test.rb: introducing assert_variables for
|
252
|
+
test simplification
|
253
|
+
|
254
|
+
2007-10-25 03:41 superchris
|
255
|
+
|
256
|
+
* ruby-debug-ide/lib/ruby-debug.rb: Fix to make compatible with
|
257
|
+
jruby-debug
|
258
|
+
|
259
|
+
2007-10-08 08:43 Martin Krauskopf
|
260
|
+
|
261
|
+
* classic-debug/ChangeLog, classic-debug/lib/xml_printer.rb,
|
262
|
+
ruby-debug-ide/ChangeLog,
|
263
|
+
ruby-debug-ide/lib/ruby-debug/xml_printer.rb,
|
264
|
+
test-base/variables_test.rb: - prevent exception when to_s
|
265
|
+
returns nil on being evaluated value
|
266
|
+
- classic-debug/lib/xml_printer.rb: merging differencies from
|
267
|
+
ruby-debug-ide (non-semantic change)
|
268
|
+
|
269
|
+
2007-08-16 15:10 Martin Krauskopf
|
270
|
+
|
271
|
+
* classic-debug/ChangeLog, classic-debug/lib/context.rb,
|
272
|
+
ruby-debug-ide/ChangeLog,
|
273
|
+
ruby-debug-ide/lib/ruby-debug/commands/control.rb: be sure 'exit'
|
274
|
+
is always called.
|
275
|
+
|
276
|
+
2007-08-09 12:50 Martin Krauskopf
|
277
|
+
|
278
|
+
* classic-debug/ChangeLog, classic-debug/build_dist: Releasing
|
279
|
+
0.9.4, switching trunk to 0.9.5
|
280
|
+
|
281
|
+
2007-08-08 14:00 Martin Krauskopf
|
282
|
+
|
283
|
+
* classic-debug/ChangeLog, classic-debug/lib/context.rb,
|
284
|
+
ruby-debug-ide/ChangeLog,
|
285
|
+
ruby-debug-ide/lib/ruby-debug/command.rb,
|
286
|
+
test-base/inspect_test.rb: Ability to inspect multiline
|
287
|
+
expressions
|
288
|
+
|
289
|
+
2007-08-08 13:58 Martin Krauskopf
|
290
|
+
|
291
|
+
* ruby-debug-ide/lib/ruby-debug/xml_printer.rb: typo:
|
292
|
+
s/locale/local
|
293
|
+
|
294
|
+
2007-08-08 12:04 Martin Krauskopf
|
295
|
+
|
296
|
+
* classic-debug/test/cd_inspect_test.rb,
|
297
|
+
ruby-debug-ide/test/rd_inspect_test.rb,
|
298
|
+
test-base/inspect_test.rb: run 'inspect variables' test also for
|
299
|
+
ruby-debug backend
|
300
|
+
|
301
|
+
2007-08-03 07:51 Martin Krauskopf
|
302
|
+
|
303
|
+
* ruby-debug-ide/bin/rdebug-ide: s/rdebug-javaide/rdebug-id
|
304
|
+
|
305
|
+
2007-07-31 09:58 Martin Krauskopf
|
306
|
+
|
307
|
+
* classic-debug/Rakefile: typo: s/rm_r/rm_rf
|
308
|
+
|
309
|
+
2007-07-31 07:26 Martin Krauskopf
|
310
|
+
|
311
|
+
* classic-debug/Rakefile: Clean task
|
312
|
+
|
313
|
+
2007-07-31 06:43 Martin Krauskopf
|
314
|
+
|
315
|
+
* classic-debug/ChangeLog, classic-debug/lib/classic-debug.rb:
|
316
|
+
synchronize get_thread_num method
|
317
|
+
|
318
|
+
2007-07-25 08:45 Martin Krauskopf
|
319
|
+
|
320
|
+
* classic-debug/test/cd_threads_and_frames_test.rb: queer threading
|
321
|
+
test which does not pass with JRuby
|
322
|
+
|
323
|
+
2007-07-25 08:43 Martin Krauskopf
|
324
|
+
|
325
|
+
* classic-debug/ChangeLog, classic-debug/lib/classic-debug.rb,
|
326
|
+
classic-debug/lib/context.rb, classic-debug/lib/xml_printer.rb:
|
327
|
+
synchronizing all socket communication to prevent race condition
|
328
|
+
|
329
|
+
2007-07-23 17:31 Martin Krauskopf
|
330
|
+
|
331
|
+
* config.yaml, test-base/test_base.rb: Make server timeout
|
332
|
+
customizable in tests
|
333
|
+
|
334
|
+
2007-07-23 13:37 Martin Krauskopf
|
335
|
+
|
336
|
+
* classic-debug/ChangeLog, classic-debug/lib/context.rb: Finalizing
|
337
|
+
code clean-up, forgotten ChangeLog
|
338
|
+
|
339
|
+
2007-07-23 13:24 Martin Krauskopf
|
340
|
+
|
341
|
+
* classic-debug/build_dist: include also context and xml_printer
|
342
|
+
after reorganization
|
343
|
+
|
344
|
+
2007-07-23 13:23 Martin Krauskopf
|
345
|
+
|
346
|
+
* ruby-debug-ide/test/rd_test_base.rb, test-base/test_base.rb:
|
347
|
+
fixing test infrastructure so it runs from all appropriate
|
348
|
+
places/directories
|
349
|
+
|
350
|
+
2007-07-23 13:23 Martin Krauskopf
|
351
|
+
|
352
|
+
* classic-debug/lib/classic-debug.rb, classic-debug/lib/context.rb,
|
353
|
+
classic-debug/lib/xml_printer.rb: Rubyfying Java-based names (no
|
354
|
+
semantic change)
|
355
|
+
|
356
|
+
2007-07-23 12:54 Martin Krauskopf
|
357
|
+
|
358
|
+
* classic-debug/ChangeLog, classic-debug/lib/classic-debug.rb,
|
359
|
+
classic-debug/lib/context.rb, classic-debug/lib/xml_printer.rb:
|
360
|
+
Code reorganization. Context and Printer class moved to their own
|
361
|
+
files. No semantic change.
|
362
|
+
|
363
|
+
2007-07-23 12:25 Martin Krauskopf
|
364
|
+
|
365
|
+
* config.yaml, ruby-debug-ide/test/rd_test_base.rb,
|
366
|
+
test-base/test_base.rb: moving customization of verbose output to
|
367
|
+
the yaml file
|
368
|
+
|
369
|
+
2007-07-23 11:25 Martin Krauskopf
|
370
|
+
|
371
|
+
* test-base/basic_test.rb: give a while to the underlying process
|
372
|
+
to finish + fixing name
|
373
|
+
|
374
|
+
2007-07-23 11:22 Martin Krauskopf
|
375
|
+
|
376
|
+
* Rakefile: common Rakefile; for running both, classic and fast
|
377
|
+
debuggers tests
|
378
|
+
|
379
|
+
2007-07-20 14:10 Martin Krauskopf
|
380
|
+
|
381
|
+
* config.yaml, ruby-debug-ide/test/rd_test_base.rb,
|
382
|
+
test-base/test_base.rb: path to rdebug-ide executable in tests is
|
383
|
+
configurable through config.yaml
|
384
|
+
|
385
|
+
2007-07-20 13:40 Martin Krauskopf
|
386
|
+
|
387
|
+
* test-base/test_base.rb: switching to 'open3' library which is
|
388
|
+
supposed to be more multiplatform then current way
|
389
|
+
|
390
|
+
2007-07-20 12:18 Martin Krauskopf
|
391
|
+
|
392
|
+
* classic-debug/test/cd_variables_test.rb,
|
393
|
+
test-base/variables_test.rb: test_variables_in_frames[2] fails.
|
394
|
+
Run them only with classic debugger for now
|
395
|
+
|
396
|
+
2007-07-20 12:04 Martin Krauskopf
|
397
|
+
|
398
|
+
* ruby-debug-ide/ChangeLog,
|
399
|
+
ruby-debug-ide/lib/ruby-debug/commands/frame.rb: fixed error
|
400
|
+
during breakpoint removing
|
401
|
+
|
402
|
+
2007-07-20 11:59 Martin Krauskopf
|
403
|
+
|
404
|
+
* ruby-debug-ide/Rakefile, ruby-debug-ide/build_and_install.sh:
|
405
|
+
version increase
|
406
|
+
|
407
|
+
2007-07-20 11:58 Martin Krauskopf
|
408
|
+
|
409
|
+
* ruby-debug-ide/lib/ruby-debug/xml_printer.rb: (protocols merge)
|
410
|
+
print debug message on like classic debugger
|
411
|
+
|
412
|
+
2007-07-19 09:49 Martin Krauskopf
|
413
|
+
|
414
|
+
* classic-debug/ChangeLog, classic-debug/lib/classic-debug.rb: - do
|
415
|
+
not allow to call 'set_trace_func' by debuggee
|
416
|
+
- s/DEBUGGER__/DC_DEBUGGER__ to prevent debug.rb collisions
|
417
|
+
|
418
|
+
2007-07-18 13:59 Martin Krauskopf
|
419
|
+
|
420
|
+
* classic-debug/lib/classic-debug.rb: trivial: utilizing printError
|
421
|
+
|
422
|
+
2007-07-17 15:21 Martin Krauskopf
|
423
|
+
|
424
|
+
* test-base/test_base.rb: typo/unused_param in
|
425
|
+
assert_test_breakpoint
|
426
|
+
|
427
|
+
2007-07-17 15:02 Martin Krauskopf
|
428
|
+
|
429
|
+
* classic-debug/ChangeLog, classic-debug/lib/classic-debug.rb,
|
430
|
+
ruby-debug-ide/ChangeLog,
|
431
|
+
ruby-debug-ide/lib/ruby-debug/commands/control.rb,
|
432
|
+
test-base/basic_test.rb: send message 'finished' back when
|
433
|
+
exiting
|
434
|
+
|
435
|
+
2007-07-16 14:47 Martin Krauskopf
|
436
|
+
|
437
|
+
* classic-debug/ChangeLog, classic-debug/lib/classic-debug.rb,
|
438
|
+
classic-debug/test/cd_basic_test.rb,
|
439
|
+
ruby-debug-ide/test/rd_basic_test.rb, test-base/basic_test.rb:
|
440
|
+
Implementing 'exit' command for classic debugger + tests
|
441
|
+
|
442
|
+
2007-07-16 09:53 Martin Krauskopf
|
443
|
+
|
444
|
+
* classic-debug/ChangeLog: Marking release points in ChangeLog to
|
445
|
+
get better overview about what has changed
|
446
|
+
|
447
|
+
2007-07-16 09:46 Martin Krauskopf
|
448
|
+
|
449
|
+
* ruby-debug-ide/ChangeLog,
|
450
|
+
ruby-debug-ide/lib/ruby-debug/xml_printer.rb,
|
451
|
+
ruby-debug-ide/test/rd_threads_and_frames_test.rb,
|
452
|
+
test-base/threads_and_frames_test.rb: always use one-based frame
|
453
|
+
numbering (was not the case in <frame[s]>)
|
454
|
+
|
455
|
+
2007-07-15 15:48 Martin Krauskopf
|
456
|
+
|
457
|
+
* classic-debug/test/cd_threads_and_frames_test.rb,
|
458
|
+
ruby-debug-ide/test/rd_threads_and_frames_test.rb,
|
459
|
+
test-base/threads_and_frames_test.rb: More tests for
|
460
|
+
ruby-debug-ide
|
461
|
+
|
462
|
+
2007-07-15 15:46 Martin Krauskopf
|
463
|
+
|
464
|
+
* ruby-debug-ide/lib/ruby-debug/command.rb,
|
465
|
+
ruby-debug-ide/lib/ruby-debug/commands/breakpoints.rb,
|
466
|
+
ruby-debug-ide/lib/ruby-debug/helper.rb: Return <error> on
|
467
|
+
'delete <negative_int>. Merging recent ruby-debug changes +
|
468
|
+
protocols unification, making more tests pass.
|
469
|
+
|
470
|
+
2007-07-15 15:37 Martin Krauskopf
|
471
|
+
|
472
|
+
* ruby-debug-ide/Rakefile, ruby-debug-ide/build_and_install.sh: Add
|
473
|
+
'test' task a make it default one
|
474
|
+
|
475
|
+
2007-07-15 13:29 Martin Krauskopf
|
476
|
+
|
477
|
+
* classic-debug/ChangeLog, classic-debug/lib/classic-debug.rb,
|
478
|
+
test-base/stepping_breakpoints_test.rb: More protocols
|
479
|
+
unification: sent error when the negative number is passed to
|
480
|
+
delete
|
481
|
+
|
482
|
+
2007-07-13 11:43 Martin Krauskopf
|
483
|
+
|
484
|
+
* classic-debug/test/cd_threads_and_frames_test.rb,
|
485
|
+
test-base/threads_and_frames_test.rb: more tests reorganization
|
486
|
+
|
487
|
+
2007-07-12 12:01 Martin Krauskopf
|
488
|
+
|
489
|
+
* test-base/variables_test.rb: Adding one more test for variables
|
490
|
+
in frames evaluation (does not work with fast debugger yet)
|
491
|
+
|
492
|
+
2007-07-12 11:59 Martin Krauskopf
|
493
|
+
|
494
|
+
* classic-debug/ChangeLog, classic-debug/lib/classic-debug.rb: Make
|
495
|
+
'self' first in the local variables list
|
496
|
+
|
497
|
+
2007-07-11 13:26 Martin Krauskopf
|
498
|
+
|
499
|
+
* classic-debug/ChangeLog, classic-debug/lib/classic-debug.rb:
|
500
|
+
lib/classic-debug.rb: turning off some logging in debug mode.
|
501
|
+
*Too* verbose to be useful in a frontend. Might be uncommented by
|
502
|
+
developer for now.
|
503
|
+
|
504
|
+
2007-07-10 17:23 Martin Krauskopf
|
505
|
+
|
506
|
+
* classic-debug/test/cd_variables_test.rb,
|
507
|
+
ruby-debug-ide/test/rd_variables_test.rb,
|
508
|
+
test-base/variables_test.rb: variables tests for fast-debugger
|
509
|
+
(some still does not work, see cd_variables_test)
|
510
|
+
|
511
|
+
2007-07-10 17:21 Martin Krauskopf
|
512
|
+
|
513
|
+
* ruby-debug-ide/test/rd_stepping_breakpoints_test.rb: unneeded
|
514
|
+
load_path adjusting (done in RDTestBase)
|
515
|
+
|
516
|
+
2007-07-09 18:40 Martin Krauskopf
|
517
|
+
|
518
|
+
* ruby-debug-ide/test/rd_test_base.rb: Fail quickly when RDEBUG_IDE
|
519
|
+
path is not set
|
520
|
+
|
521
|
+
2007-07-09 12:53 Martin Krauskopf
|
522
|
+
|
523
|
+
* classic-debug: Ignore 'dist' directory
|
524
|
+
|
525
|
+
2007-07-09 12:53 Martin Krauskopf
|
526
|
+
|
527
|
+
* classic-debug/build_dist: fixing build script to reflect the new
|
528
|
+
structure
|
529
|
+
|
530
|
+
2007-07-09 12:48 Martin Krauskopf
|
531
|
+
|
532
|
+
* classic-debug/ChangeLog, classic-debug/lib/classic-debug.rb:
|
533
|
+
prevent error when debugger process is killed + better error
|
534
|
+
logging
|
535
|
+
|
536
|
+
2007-07-09 11:03 Martin Krauskopf
|
537
|
+
|
538
|
+
* classic-debug/Rakefile: fixing test rake task
|
539
|
+
|
540
|
+
2007-07-09 11:02 Martin Krauskopf
|
541
|
+
|
542
|
+
* test-base/test_base.rb: Unused code
|
543
|
+
|
544
|
+
2007-07-09 11:02 Martin Krauskopf
|
545
|
+
|
546
|
+
* classic-debug/test/cd_inspect_test.rb,
|
547
|
+
classic-debug/test/cd_stepping_breakpoints_test.rb,
|
548
|
+
classic-debug/test/cd_test_base.rb,
|
549
|
+
classic-debug/test/cd_threads_and_frames_test.rb,
|
550
|
+
classic-debug/test/cd_variables_test.rb: more test refactoring
|
551
|
+
and cleanup as merging the fast and classic tests
|
552
|
+
|
553
|
+
2007-07-09 10:58 Martin Krauskopf
|
554
|
+
|
555
|
+
* ruby-debug-ide/ChangeLog,
|
556
|
+
ruby-debug-ide/lib/ruby-debug/command.rb,
|
557
|
+
ruby-debug-ide/lib/ruby-debug/interface.rb,
|
558
|
+
ruby-debug-ide/lib/ruby-debug/processor.rb: do not send non-xml
|
559
|
+
PROMPT and CONFIRM + getting rid of 'confirm' methods in the
|
560
|
+
whole codebase (fast and classic protocol merging)
|
561
|
+
|
562
|
+
2007-07-09 10:57 Martin Krauskopf
|
563
|
+
|
564
|
+
* ruby-debug-ide/lib/ruby-debug/commands/breakpoints.rb: send info
|
565
|
+
<message> when 'delete' is used without given 'pos' (deleting of
|
566
|
+
all breakpoints is not supported)
|
567
|
+
|
568
|
+
2007-07-04 16:04 Martin Krauskopf
|
569
|
+
|
570
|
+
* ruby-debug-ide/test,
|
571
|
+
ruby-debug-ide/test/rd_stepping_breakpoints_test.rb,
|
572
|
+
ruby-debug-ide/test/rd_test_base.rb: Initial tests for fast
|
573
|
+
debugger
|
574
|
+
|
575
|
+
2007-07-04 16:04 Martin Krauskopf
|
576
|
+
|
577
|
+
* ruby-debug-ide/lib/ruby-debug/xml_printer.rb: Do not send
|
578
|
+
end-of-lines. Part of fast, classic protocols merge
|
579
|
+
|
580
|
+
2007-07-04 16:03 Martin Krauskopf
|
581
|
+
|
582
|
+
* ruby-debug-ide/lib/ruby-debug/interface.rb: Do not send non-xml,
|
583
|
+
unused text (PROMPT, CONFIRM). Part of fast, classic protocols
|
584
|
+
merge
|
585
|
+
|
586
|
+
2007-07-04 16:02 Martin Krauskopf
|
587
|
+
|
588
|
+
* classic-debug/ChangeLog, classic-debug/test/cd_inspect_test.rb,
|
589
|
+
classic-debug/test/cd_stepping_breakpoints_test.rb,
|
590
|
+
classic-debug/test/cd_test_base.rb,
|
591
|
+
classic-debug/test/cd_threads_and_frames_test.rb,
|
592
|
+
classic-debug/test/cd_variables_test.rb,
|
593
|
+
classic-debug/test/readers.rb, classic-debug/test/test_base.rb,
|
594
|
+
test-base, test-base/readers.rb,
|
595
|
+
test-base/stepping_breakpoints_test.rb, test-base/test_base.rb:
|
596
|
+
Initial test refactoring. Sharing common tests which work for
|
597
|
+
both, classic and fast debuggers. Currently
|
598
|
+
stepping_breakpoints_test.
|
599
|
+
|
600
|
+
2007-07-04 15:45 Martin Krauskopf
|
601
|
+
|
602
|
+
* classic-debug/lib/classic-debug.rb: Return <message> for unknown
|
603
|
+
command (merging fast and classic debuggers protocols)
|
604
|
+
|
605
|
+
2007-07-02 12:07 Martin Krauskopf
|
606
|
+
|
607
|
+
* ruby-debug-ide/ChangeLog,
|
608
|
+
ruby-debug-ide/lib/ruby-debug/commands/variables.rb,
|
609
|
+
ruby-debug-ide/lib/ruby-debug/xml_printer.rb: VarInstanceCommand
|
610
|
+
enumerates also variables of an object's class, as it is done in
|
611
|
+
the classic-debugger
|
612
|
+
|
613
|
+
2007-07-02 11:30 Martin Krauskopf
|
614
|
+
|
615
|
+
* ruby-debug-ide/Rakefile, ruby-debug-ide/build_and_install.sh:
|
616
|
+
Increasing trunk to version 0.1.7
|
617
|
+
|
618
|
+
2007-07-02 08:09 Martin Krauskopf
|
619
|
+
|
620
|
+
* ruby-debug-ide, ruby-debug-javaide: renaming ruby-debug-javaide
|
621
|
+
to more general and truthful ruby-debug-ide
|
622
|
+
|
623
|
+
2007-07-02 08:03 Martin Krauskopf
|
624
|
+
|
625
|
+
* ChangeLog, Rakefile, classic-debug, classic-debug.txt,
|
626
|
+
classic-debug/ChangeLog, classic-debug/Rakefile,
|
627
|
+
classic-debug/build_dist, classic-debug/classic-debug.txt,
|
628
|
+
classic-debug/lib, classic-debug/test, etc/build_dist, lib, test:
|
629
|
+
moving classic debugger to its own directory
|
630
|
+
|
631
|
+
2007-07-01 14:17 Martin Krauskopf
|
632
|
+
|
633
|
+
* ruby-debug-javaide/ChangeLog: ChangeLog (forgotten commit)
|
634
|
+
|
635
|
+
2007-06-25 09:51 Martin Krauskopf
|
636
|
+
|
637
|
+
* ruby-debug-javaide/lib/ruby-debug/xml_printer.rb: Be sure 'yaml'
|
638
|
+
module is loaded, needed for is_binary_data
|
639
|
+
|
640
|
+
2007-06-19 13:14 Martin Krauskopf
|
641
|
+
|
642
|
+
* lib/classic-debug.rb: is_binary_data? is defined in yaml -
|
643
|
+
require yaml
|
644
|
+
|
645
|
+
2007-06-18 20:20 Martin Krauskopf
|
646
|
+
|
647
|
+
* test/cd_inspect_test.rb, test/cd_threads_and_frames_test.rb,
|
648
|
+
test/test_base.rb: reverting (committed by mistake)
|
649
|
+
|
650
|
+
2007-06-18 20:13 Martin Krauskopf
|
651
|
+
|
652
|
+
* etc/build_dist, test/cd_inspect_test.rb,
|
653
|
+
test/cd_threads_and_frames_test.rb, test/test_base.rb: increasing
|
654
|
+
version
|
655
|
+
|
656
|
+
2007-06-18 20:11 Martin Krauskopf
|
657
|
+
|
658
|
+
* ChangeLog, lib/classic-debug.rb: do not send binary data within
|
659
|
+
values of variables
|
660
|
+
See http://www.netbeans.org/nonav/issues/show_bug.cgi?id=101748
|
661
|
+
for more details.
|
662
|
+
|
663
|
+
2007-06-18 20:01 Martin Krauskopf
|
664
|
+
|
665
|
+
* ruby-debug-javaide/Rakefile,
|
666
|
+
ruby-debug-javaide/build_and_install.sh: increasing version
|
667
|
+
|
668
|
+
2007-06-18 20:00 Martin Krauskopf
|
669
|
+
|
670
|
+
* ruby-debug-javaide/ChangeLog: Changelog update
|
671
|
+
|
672
|
+
2007-06-18 19:55 Martin Krauskopf
|
673
|
+
|
674
|
+
* ruby-debug-javaide/lib/ruby-debug/xml_printer.rb: Do not send
|
675
|
+
binary data
|
676
|
+
(see http://www.netbeans.org/nonav/issues/show_bug.cgi?id=101748
|
677
|
+
for more details)
|
678
|
+
|
679
|
+
2007-05-23 14:24 Martin Krauskopf
|
680
|
+
|
681
|
+
* ruby-debug-javaide/ChangeLog,
|
682
|
+
ruby-debug-javaide/lib/ruby-debug/commands/variables.rb,
|
683
|
+
ruby-debug-javaide/lib/ruby-debug/xml_printer.rb: Hash and Array
|
684
|
+
subclasses did not have children thus cannot be expanded ina GUI
|
685
|
+
|
686
|
+
2007-05-23 12:15 Martin Krauskopf
|
687
|
+
|
688
|
+
* ruby-debug-javaide/Rakefile,
|
689
|
+
ruby-debug-javaide/build_and_install.sh: bumping version to 0.1.5
|
690
|
+
|
691
|
+
2007-05-23 12:15 Martin Krauskopf
|
692
|
+
|
693
|
+
* ruby-debug-javaide/ChangeLog,
|
694
|
+
ruby-debug-javaide/lib/ruby-debug/xml_printer.rb: fixed subtle
|
695
|
+
bug in xml_printer.rb#print_variable which caused the
|
696
|
+
debugger to die when == method was overrided and did not count on
|
697
|
+
nil
|
698
|
+
parameters
|
699
|
+
|
700
|
+
2007-05-18 18:11 Martin Krauskopf
|
701
|
+
|
702
|
+
* ruby-debug-javaide/build_and_install.sh: needs
|
703
|
+
ruby-debug-ide-0.1.4
|
704
|
+
|
705
|
+
2007-05-06 16:57 Martin Krauskopf
|
706
|
+
|
707
|
+
* etc/build_dist: increasing version to 0.9.3
|
708
|
+
|
709
|
+
2007-05-06 16:56 Martin Krauskopf
|
710
|
+
|
711
|
+
* ChangeLog, lib/classic-debug.rb, test/cd_inspect_test.rb:
|
712
|
+
Escaping error message in processingException. Sometime caused to
|
713
|
+
send invalid XML
|
714
|
+
|
715
|
+
2007-05-01 12:22 Markus Barchfeld
|
716
|
+
|
717
|
+
* .project: added ruby nature
|
718
|
+
|
719
|
+
2007-05-01 12:21 Markus Barchfeld
|
720
|
+
|
721
|
+
* ruby-debug-javaide/Rakefile: bump version to 0.1.4,
|
722
|
+
ruby-debug-base to 0.9.3
|
723
|
+
|
724
|
+
2007-05-01 12:21 Markus Barchfeld
|
725
|
+
|
726
|
+
* ruby-debug-javaide/lib/ruby-debug/commands/control.rb: fixed exit
|
727
|
+
command
|
728
|
+
|
729
|
+
2007-05-01 12:19 Markus Barchfeld
|
730
|
+
|
731
|
+
* ruby-debug-javaide/lib/ruby-debug/command.rb: set a timeout for
|
732
|
+
debug_eval (10 sec hardcoded)
|
733
|
+
|
734
|
+
2007-05-01 12:15 Markus Barchfeld
|
735
|
+
|
736
|
+
* ruby-debug-javaide/lib/ruby-debug/processor.rb: removed display
|
737
|
+
variable in state: it is needed for CLI only and caused output to
|
738
|
+
stdout
|
739
|
+
|
740
|
+
2007-04-30 11:22 Martin Krauskopf
|
741
|
+
|
742
|
+
* ruby-debug-javaide/Rakefile,
|
743
|
+
ruby-debug-javaide/build_and_install.sh: version upgrade 0.1.2
|
744
|
+
--> 0.1.3
|
745
|
+
|
746
|
+
2007-04-29 15:50 Martin Krauskopf
|
747
|
+
|
748
|
+
* ruby-debug-javaide/ChangeLog,
|
749
|
+
ruby-debug-javaide/lib/ruby-debug/commands/stepping.rb: adding
|
750
|
+
step+ and next+ commands (since ruby-debug 0.9.1)
|
751
|
+
|
752
|
+
2007-04-29 08:52 Martin Krauskopf
|
753
|
+
|
754
|
+
* README: update: follow rather project's homepage
|
755
|
+
|
756
|
+
2007-04-27 14:41 Martin Krauskopf
|
757
|
+
|
758
|
+
* ChangeLog: fixing tests for JRuby interpreter
|
759
|
+
|
760
|
+
2007-04-27 14:39 Martin Krauskopf
|
761
|
+
|
762
|
+
* test/cd_stepping_breakpoints_test.rb: expect events in the right
|
763
|
+
order (discovered with JRuby interpreter - did not work)
|
764
|
+
|
765
|
+
2007-04-27 14:06 Martin Krauskopf
|
766
|
+
|
767
|
+
* test/cd_stepping_breakpoints_test.rb: redunand sent_cont
|
768
|
+
|
769
|
+
2007-04-27 13:38 Martin Krauskopf
|
770
|
+
|
771
|
+
* test/cd_threads_and_frames_test.rb: typo
|
772
|
+
|
773
|
+
2007-04-27 13:38 Martin Krauskopf
|
774
|
+
|
775
|
+
* test/cd_threads_and_frames_test.rb:
|
776
|
+
CDThreadsAndFrames.test_frames: assert breakpoint appropriately
|
777
|
+
|
778
|
+
2007-04-27 13:34 Martin Krauskopf
|
779
|
+
|
780
|
+
* test/test_base.rb: rollbacking mistake - use Ruby by default, not
|
781
|
+
JRuby
|
782
|
+
|
783
|
+
2007-04-27 13:34 Martin Krauskopf
|
784
|
+
|
785
|
+
* test/cd_threads_and_frames_test.rb: JRuby handles local_variable
|
786
|
+
inside of spawned thread differently then Ruby
|
787
|
+
|
788
|
+
2007-04-27 13:22 Martin Krauskopf
|
789
|
+
|
790
|
+
* test/cd_stepping_breakpoints_test.rb: JRuby intepreter does not
|
791
|
+
have the problem with 'stopping on one line twicely' - disabling
|
792
|
+
test_stopping_on_one_line_twice for JRuby
|
793
|
+
|
794
|
+
2007-04-27 13:21 Martin Krauskopf
|
795
|
+
|
796
|
+
* test/test_base.rb: giving chance to test to reveal what
|
797
|
+
interpreter is used, + some trivialities
|
798
|
+
|
799
|
+
2007-04-11 12:59 Martin Krauskopf
|
800
|
+
|
801
|
+
* ruby-debug-javaide/Rakefile,
|
802
|
+
ruby-debug-javaide/build_and_install.sh: update to
|
803
|
+
ruby-debug-base 0.9.2
|
804
|
+
|
805
|
+
2007-04-05 12:35 Martin Krauskopf
|
806
|
+
|
807
|
+
* ruby-debug-javaide/Rakefile: upgrade also ruby-debug-ide version
|
808
|
+
together with ruby-debug-base upgrades
|
809
|
+
|
810
|
+
2007-04-05 12:33 Martin Krauskopf
|
811
|
+
|
812
|
+
* ruby-debug-javaide/Rakefile: upgrade to ruby-debug-base 0.9.1
|
813
|
+
|
814
|
+
2007-04-03 06:59 Martin Krauskopf
|
815
|
+
|
816
|
+
* ruby-debug-javaide/build_and_install.sh: - simply possibility to
|
817
|
+
suppress 'sudo' with an '-n' options
|
818
|
+
- delete pkg only if it exists
|
819
|
+
|
820
|
+
2007-04-03 06:43 Martin Krauskopf
|
821
|
+
|
822
|
+
* etc/kill_debugger: migrating to ruby-debug-ide
|
823
|
+
|
824
|
+
2007-04-01 11:47 Markus Barchfeld
|
825
|
+
|
826
|
+
* ruby-debug-javaide/Rakefile,
|
827
|
+
ruby-debug-javaide/build_and_install.sh: changed name from
|
828
|
+
ruby-debug-javaide to ruby-debug-ide
|
829
|
+
|
830
|
+
2007-03-31 15:40 Markus Barchfeld
|
831
|
+
|
832
|
+
* ruby-debug-javaide/bin/rdebug-ide,
|
833
|
+
ruby-debug-javaide/bin/rdebug-javaide: rename
|
834
|
+
|
835
|
+
2007-03-31 15:11 Markus Barchfeld
|
836
|
+
|
837
|
+
* ruby-debug-javaide/lib/ruby-debug/commands/control.rb,
|
838
|
+
ruby-debug-javaide/lib/ruby-debug/commands/eval.rb: stripped down
|
839
|
+
to essentials for IDE support, provide all commands through one
|
840
|
+
port
|
841
|
+
|
842
|
+
2007-03-31 15:10 Markus Barchfeld
|
843
|
+
|
844
|
+
* ruby-debug-javaide/lib/ruby-debug/event_processor.rb: stripped
|
845
|
+
down to essentials for IDE support, provide all commands through
|
846
|
+
one port
|
847
|
+
|
848
|
+
2007-03-31 15:10 Markus Barchfeld
|
849
|
+
|
850
|
+
* ruby-debug-javaide/lib/ruby-debug/processor.rb: stripped down to
|
851
|
+
essentials for IDE support, provide all commands through one port
|
852
|
+
|
853
|
+
2007-03-31 15:09 Markus Barchfeld
|
854
|
+
|
855
|
+
* ruby-debug-javaide/lib/ruby-debug.rb: stripped down to essentials
|
856
|
+
for IDE support, provide all commands through one port
|
857
|
+
|
858
|
+
2007-03-31 15:08 Markus Barchfeld
|
859
|
+
|
860
|
+
* ruby-debug-javaide/bin/rdebug-javaide: stripped down to
|
861
|
+
essentials for IDE support, provide all commands through one port
|
862
|
+
|
863
|
+
2007-03-31 11:05 Markus Barchfeld
|
864
|
+
|
865
|
+
* ruby-debug-javaide/Rakefile: first successful integration. runs
|
866
|
+
with HEAD from ruby-debug-base. All tests (except static vars and
|
867
|
+
constants) green.
|
868
|
+
|
869
|
+
2007-03-31 11:02 Markus Barchfeld
|
870
|
+
|
871
|
+
* ruby-debug-javaide/lib/ruby-debug/commands/eval.rb,
|
872
|
+
ruby-debug-javaide/lib/ruby-debug/commands/frame.rb,
|
873
|
+
ruby-debug-javaide/lib/ruby-debug/commands/stepping.rb,
|
874
|
+
ruby-debug-javaide/lib/ruby-debug/commands/variables.rb: first
|
875
|
+
successful integration. runs with HEAD from ruby-debug-base. All
|
876
|
+
tests (except static vars and constants) green.
|
877
|
+
|
878
|
+
2007-03-31 10:58 Markus Barchfeld
|
879
|
+
|
880
|
+
* ruby-debug-javaide/lib/ruby-debug/command.rb,
|
881
|
+
ruby-debug-javaide/lib/ruby-debug/xml_printer.rb: first
|
882
|
+
successful integration. runs with HEAD from ruby-debug-base. All
|
883
|
+
tests (except static vars and constants) green.
|
884
|
+
|
885
|
+
2007-03-31 10:46 Markus Barchfeld
|
886
|
+
|
887
|
+
* ruby-debug-javaide/Rakefile,
|
888
|
+
ruby-debug-javaide/lib/ruby-debug/command.rb,
|
889
|
+
ruby-debug-javaide/lib/ruby-debug/commands/eval.rb,
|
890
|
+
ruby-debug-javaide/lib/ruby-debug/commands/frame.rb,
|
891
|
+
ruby-debug-javaide/lib/ruby-debug/commands/rdebugExtension.rb,
|
892
|
+
ruby-debug-javaide/lib/ruby-debug/commands/settings.rb,
|
893
|
+
ruby-debug-javaide/lib/ruby-debug/commands/stepping.rb,
|
894
|
+
ruby-debug-javaide/lib/ruby-debug/commands/variables.rb,
|
895
|
+
ruby-debug-javaide/lib/ruby-debug/processor.rb,
|
896
|
+
ruby-debug-javaide/lib/ruby-debug/xml_printer.rb: first
|
897
|
+
successful integration. runs with HEAD from ruby-debug-base. All
|
898
|
+
tests (except static vars and constants) green.
|
899
|
+
|
900
|
+
2007-03-30 15:24 Martin Krauskopf
|
901
|
+
|
902
|
+
* ruby-debug-javaide: svn-ignore pkg directory
|
903
|
+
|
904
|
+
2007-03-29 18:46 Martin Krauskopf
|
905
|
+
|
906
|
+
* etc/build_dist: increasing version to 0.9.2
|
907
|
+
|
908
|
+
2007-03-29 18:45 Martin Krauskopf
|
909
|
+
|
910
|
+
* test/test_base.rb: trivial: i var is not needed in teardown
|
911
|
+
|
912
|
+
2007-03-29 18:34 Martin Krauskopf
|
913
|
+
|
914
|
+
* ChangeLog, lib/classic-debug.rb,
|
915
|
+
test/cd_stepping_breakpoints_test.rb: Fixing breakpoints removing
|
916
|
+
(rubyforge bug #9548)
|
917
|
+
|
918
|
+
2007-03-24 13:44 Markus Barchfeld
|
919
|
+
|
920
|
+
* ruby-debug-javaide/README: initial check-in for
|
921
|
+
ruby-debug-javaide which uses ruby-debug-base
|
922
|
+
|
923
|
+
2007-03-24 13:43 Markus Barchfeld
|
924
|
+
|
925
|
+
* ruby-debug-javaide/bin/rdebug-javaide: initial check-in for
|
926
|
+
ruby-debug-javaide which uses ruby-debug-base
|
927
|
+
|
928
|
+
2007-03-24 13:42 Markus Barchfeld
|
929
|
+
|
930
|
+
* ruby-debug-javaide/lib/ruby-debug/commands/breakpoints.rb,
|
931
|
+
ruby-debug-javaide/lib/ruby-debug/commands/catchpoint.rb,
|
932
|
+
ruby-debug-javaide/lib/ruby-debug/commands/control.rb,
|
933
|
+
ruby-debug-javaide/lib/ruby-debug/commands/eval.rb,
|
934
|
+
ruby-debug-javaide/lib/ruby-debug/commands/frame.rb,
|
935
|
+
ruby-debug-javaide/lib/ruby-debug/commands/inspect.rb,
|
936
|
+
ruby-debug-javaide/lib/ruby-debug/commands/load.rb,
|
937
|
+
ruby-debug-javaide/lib/ruby-debug/commands/rdebugExtension.rb,
|
938
|
+
ruby-debug-javaide/lib/ruby-debug/commands/settings.rb,
|
939
|
+
ruby-debug-javaide/lib/ruby-debug/commands/stepping.rb,
|
940
|
+
ruby-debug-javaide/lib/ruby-debug/commands/threads.rb,
|
941
|
+
ruby-debug-javaide/lib/ruby-debug/commands/variables.rb: initial
|
942
|
+
check-in for ruby-debug-javaide which uses ruby-debug-base
|
943
|
+
|
944
|
+
2007-03-24 13:41 Markus Barchfeld
|
945
|
+
|
946
|
+
* ruby-debug-javaide/lib/ruby-debug/command.rb,
|
947
|
+
ruby-debug-javaide/lib/ruby-debug/commands,
|
948
|
+
ruby-debug-javaide/lib/ruby-debug/interface.rb,
|
949
|
+
ruby-debug-javaide/lib/ruby-debug/printers.rb,
|
950
|
+
ruby-debug-javaide/lib/ruby-debug/processor.rb,
|
951
|
+
ruby-debug-javaide/lib/ruby-debug/xml_printer.rb: initial
|
952
|
+
check-in for ruby-debug-javaide which uses ruby-debug-base
|
953
|
+
|
954
|
+
2007-03-24 13:40 Markus Barchfeld
|
955
|
+
|
956
|
+
* ruby-debug-javaide/lib/ruby-debug: initial check-in for
|
957
|
+
ruby-debug-javaide which uses ruby-debug-base
|
958
|
+
|
959
|
+
2007-03-24 13:39 Markus Barchfeld
|
960
|
+
|
961
|
+
* ruby-debug-javaide/lib/ruby-debug.rb: initial check-in for
|
962
|
+
ruby-debug-javaide which uses ruby-debug-base
|
963
|
+
|
964
|
+
2007-03-24 13:38 Markus Barchfeld
|
965
|
+
|
966
|
+
* ruby-debug-javaide/lib: initial check-in for ruby-debug-javaide
|
967
|
+
which uses ruby-debug-base
|
968
|
+
|
969
|
+
2007-03-24 13:36 Markus Barchfeld
|
970
|
+
|
971
|
+
* ruby-debug-javaide/bin: initial check-in for ruby-debug-javaide
|
972
|
+
which uses ruby-debug-base
|
973
|
+
|
974
|
+
2007-03-24 13:35 Markus Barchfeld
|
975
|
+
|
976
|
+
* ruby-debug-javaide/build_and_install.sh: initial check-in for
|
977
|
+
ruby-debug-javaide which uses ruby-debug-base
|
978
|
+
|
979
|
+
2007-03-24 13:26 Markus Barchfeld
|
980
|
+
|
981
|
+
* ruby-debug-javaide, ruby-debug-javaide/Rakefile: initial check-in
|
982
|
+
for ruby-debug-javaide which uses ruby-debug-base
|
983
|
+
|
984
|
+
2007-03-24 13:22 Markus Barchfeld
|
985
|
+
|
986
|
+
* .externalToolBuilders,
|
987
|
+
.externalToolBuilders/build_and_install.launch: initial check-in
|
988
|
+
for ruby-debug-javaide which uses ruby-debug-base
|
989
|
+
|
990
|
+
2007-03-24 13:17 Markus Barchfeld
|
991
|
+
|
992
|
+
* .project: initial check-in for ruby-debug-javaide which uses
|
993
|
+
ruby-debug-base
|
994
|
+
|
995
|
+
2007-03-21 07:20 Martin Krauskopf
|
996
|
+
|
997
|
+
* etc/build_dist: increasing version to 0.9.1, major Windows bug
|
998
|
+
fixed
|
999
|
+
|
1000
|
+
2007-03-20 18:22 Martin Krauskopf
|
1001
|
+
|
1002
|
+
* ChangeLog, lib/classic-debug.rb,
|
1003
|
+
test/cd_stepping_breakpoints_test.rb, test/readers.rb,
|
1004
|
+
test/test_base.rb: - correctly handles spaces and semicolons in
|
1005
|
+
path
|
1006
|
+
- added Breakpoint struct for better readability
|
1007
|
+
|
1008
|
+
2007-03-16 04:55 Martin Krauskopf
|
1009
|
+
|
1010
|
+
* ChangeLog: fixing ChangeLog message
|
1011
|
+
|
1012
|
+
2007-03-15 20:25 Martin Krauskopf
|
1013
|
+
|
1014
|
+
* .: ignore dist directory
|
1015
|
+
|
1016
|
+
2007-03-15 20:24 Martin Krauskopf
|
1017
|
+
|
1018
|
+
* ChangeLog, classic-debug.txt: describing few commands
|
1019
|
+
|
1020
|
+
2007-03-15 18:31 Martin Krauskopf
|
1021
|
+
|
1022
|
+
* ChangeLog, README: TOC, 1.8.6 works smoothly, intermediate Java
|
1023
|
+
library note
|
1024
|
+
|
1025
|
+
2007-03-15 18:30 Martin Krauskopf
|
1026
|
+
|
1027
|
+
* etc/kill_debugger: handy script helpful durinng testing phase
|
1028
|
+
|
1029
|
+
2007-03-15 18:29 Martin Krauskopf
|
1030
|
+
|
1031
|
+
* etc, etc/build_dist: simple script for building final tarball
|
1032
|
+
|
1033
|
+
2007-02-21 17:46 Martin Krauskopf
|
1034
|
+
|
1035
|
+
* ChangeLog, README, classic-debug.txt: description of
|
1036
|
+
$RemoteDebugPort
|
1037
|
+
|
1038
|
+
2007-02-21 17:43 Martin Krauskopf
|
1039
|
+
|
1040
|
+
* test/test_base.rb: trivial: use File.join
|
1041
|
+
|
1042
|
+
2007-02-19 17:51 Martin Krauskopf
|
1043
|
+
|
1044
|
+
* ChangeLog, lib/classic-debug.rb,
|
1045
|
+
test/cd_stepping_breakpoints_test.rb: fixing (my) regression of
|
1046
|
+
next/continue behavior while stepping over
|
1047
|
+
|
1048
|
+
2007-02-16 13:09 Martin Krauskopf
|
1049
|
+
|
1050
|
+
* ChangeLog, test/cd_inspect_test.rb,
|
1051
|
+
test/cd_stepping_breakpoints_test.rb,
|
1052
|
+
test/cd_threads_and_frames_test.rb, test/cd_variables_test.rb,
|
1053
|
+
test/readers.rb, test/test_base.rb: - Rubyfying 'inspecting'
|
1054
|
+
tests (more to come)
|
1055
|
+
- run_to_line function + relevant refactoring
|
1056
|
+
- introducing ChangeLog
|
1057
|
+
|
1058
|
+
2007-02-16 07:48 Martin Krauskopf
|
1059
|
+
|
1060
|
+
* MIT-LICENSE: License note about the fact that classic-debug is
|
1061
|
+
based on Ruby's debug.rb
|
1062
|
+
|
1063
|
+
2007-02-15 21:07 Martin Krauskopf
|
1064
|
+
|
1065
|
+
* MIT-LICENSE, README, Rakefile, lib, lib/classic-debug-verbose.rb,
|
1066
|
+
lib/classic-debug.rb, test, test/cd_stepping_breakpoints_test.rb,
|
1067
|
+
test/cd_threads_and_frames_test.rb, test/cd_variables_test.rb,
|
1068
|
+
test/readers.rb, test/test_base.rb: initial commit
|
1069
|
+
|
1070
|
+
2007-02-15 20:12 Martin Krauskopf
|
1071
|
+
|
1072
|
+
* .: trunk directory
|
1073
|
+
|