rbx-trepanning 0.0.4-universal-rubinius-1.2 → 0.0.6-universal-rubinius-1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. data/ChangeLog +682 -0
  2. data/NEWS +19 -0
  3. data/README.textile +8 -9
  4. data/Rakefile +8 -8
  5. data/app/complete.rb +52 -0
  6. data/app/complete.rbc +1288 -0
  7. data/app/irb.rb +1 -2
  8. data/app/irb.rbc +55 -72
  9. data/app/llvm.rbc +780 -878
  10. data/app/method.rb +1 -1
  11. data/app/method.rbc +31 -35
  12. data/app/method_name.rbc +2467 -0
  13. data/app/options.rb +7 -24
  14. data/app/options.rbc +238 -132
  15. data/app/rbx-llvm.rbc +2478 -0
  16. data/app/util.rb +3 -3
  17. data/app/util.rbc +23 -27
  18. data/bin/trepanx +4 -3
  19. data/bin/trepanx.compiled.rbc +42 -32
  20. data/data/irbrc +41 -0
  21. data/data/irbrc.compiled.rbc +640 -0
  22. data/interface/base_intf.rb +9 -5
  23. data/interface/base_intf.rbc +200 -146
  24. data/interface/comcodes.rb +10 -8
  25. data/interface/comcodes.rbc +68 -26
  26. data/interface/script.rbc +21 -9
  27. data/interface/user.rb +74 -8
  28. data/interface/user.rbc +1702 -156
  29. data/io/input.rb +37 -14
  30. data/io/input.rbc +869 -320
  31. data/io/tcpclient.rb +7 -1
  32. data/io/tcpclient.rbc +205 -113
  33. data/io/tcpfns.rb +5 -3
  34. data/io/tcpfns.rbc +82 -40
  35. data/io/tcpserver.rb +13 -10
  36. data/io/tcpserver.rbc +236 -183
  37. data/lib/trepanning.rb +62 -21
  38. data/lib/trepanning.rbc +1304 -874
  39. data/lib/{trepanning.rb.orig → trepanning2.rb} +12 -4
  40. data/processor/breakpoint.rb +4 -1
  41. data/processor/command/base/cmd.rb +48 -3
  42. data/processor/command/base/subcmd.rb +2 -1
  43. data/processor/command/base/submgr.rb +23 -20
  44. data/processor/command/base/subsubmgr.rb +13 -2
  45. data/processor/command/complete.rb +7 -17
  46. data/processor/command/continue.rb +19 -11
  47. data/processor/command/disassemble.rb +39 -12
  48. data/processor/command/eval.rb +23 -5
  49. data/processor/command/help.rb +60 -6
  50. data/processor/command/info_subcmd/{file.rb → files.rb} +76 -18
  51. data/processor/command/info_subcmd/line.rb +86 -0
  52. data/processor/command/info_subcmd/program.rb +2 -11
  53. data/processor/command/info_subcmd/ruby.rb +62 -0
  54. data/processor/command/info_subcmd/variables.rb +7 -0
  55. data/processor/command/irb.rb +39 -7
  56. data/processor/command/macro.rb +76 -0
  57. data/processor/command/set_subcmd/confirm.rb +24 -0
  58. data/processor/command/set_subcmd/max.rb +4 -5
  59. data/processor/command/show.rb +11 -0
  60. data/processor/command/show_subcmd/auto.rb +1 -0
  61. data/processor/command/show_subcmd/basename.rb +1 -2
  62. data/processor/command/show_subcmd/confirm.rb +18 -0
  63. data/processor/command/show_subcmd/max.rb +0 -2
  64. data/processor/command/source.rb +0 -1
  65. data/processor/default.rb +2 -0
  66. data/processor/disassemble.rb +1 -0
  67. data/processor/load_cmds.rb +104 -20
  68. data/processor/location.rb +11 -12
  69. data/processor/main.rb +10 -6
  70. data/processor/mock.rb +6 -2
  71. data/processor/stepping.rb +1 -4
  72. data/processor/subcmd.rb +3 -2
  73. data/processor/validate.rb +3 -3
  74. data/sample/list-terminal-colors.rbc +158 -4
  75. data/sample/rocky-trepanx-colors.rb +15 -7
  76. data/sample/rocky-trepanx-colors.rbc +530 -0
  77. data/test/data/quit2.cmd +6 -0
  78. data/test/data/quit2.right +3 -0
  79. data/test/data/step-bug.cmd +11 -0
  80. data/test/data/step-bug.right +3 -0
  81. data/test/example/step-bug.rb +14 -0
  82. data/test/integration/helper.rb +1 -1
  83. data/test/integration/skip-test-step-bug.rb +17 -0
  84. data/test/integration/test-quit.rb +11 -0
  85. data/test/unit/test-app-util.rb +0 -1
  86. data/test/unit/test-base-cmd.rb +47 -0
  87. data/test/unit/test-base-subcmd.rb +2 -2
  88. data/test/unit/test-base-submgr.rb +24 -0
  89. data/test/unit/test-cmd-help.rb +4 -0
  90. data/test/unit/test-completion.rb +38 -0
  91. data/test/unit/test-intf-user.rb +2 -2
  92. data/test/unit/test-io-tcpclient.rb +3 -2
  93. data/test/unit/test-proc-eval.rb +1 -1
  94. data/test/unit/test-proc-load_cmds.rb +9 -0
  95. data/test/unit/test-subcmd-help.rb +1 -5
  96. metadata +182 -167
  97. data/app/options.rb.orig +0 -154
  98. data/bin/trepan.orig +0 -0
  99. data/bin/trepan.rej +0 -11
  100. data/lib/trepanning.rb.rej +0 -11
  101. data/sample/rocky-dot-trepanrc.orig +0 -0
  102. data/sample/rocky-dot-trepanrc.rej +0 -11
data/ChangeLog CHANGED
@@ -1,3 +1,685 @@
1
+ 2011-02-15 rocky <rockyb@rubyforge.org>
2
+
3
+ * .gemspec, Rakefile, app/options.rb: Get ready for 0.0.5 release
4
+
5
+ 2011-02-15 rocky <rockyb@rubyforge.org>
6
+
7
+ * app/options.rb: Clean up usage text
8
+
9
+ 2011-02-15 rocky <rockyb@rubyforge.org>
10
+
11
+ Merge branch 'master' of github.com:rocky/rbx-trepanning
12
+
13
+ 2011-02-15 rocky <rockyb@rubyforge.org>
14
+
15
+ * bin/trepanx, processor/validate.rb: Small bugs. validate: handling
16
+ get_an_int error msg. trepanx: option name is now highlight, not
17
+ readline
18
+
19
+ 2011-02-15 rocky <rockyb@rubyforge.org>
20
+
21
+ * bin/trepanx, processor/validate.rb: Small bugs. validate: handling
22
+ get_an_int error msg. trepanx: option name is now highlight, not
23
+ readline
24
+
25
+ 2011-02-15 rocky <rockyb@rubyforge.org>
26
+
27
+ * .gemspec, ChangeLog, NEWS, app/options.rb, bin/trepanx,
28
+ interface/user.rb, io/input.rb, lib/trepanning.rb: Add --readline
29
+ and --no-readline options to trepanx .gemspec: was missing data
30
+ directory Update NEWS in preparation for a release.
31
+
32
+ 2011-02-14 rocky <rockyb@rubyforge.org>
33
+
34
+ * processor/command/macro.rb, processor/load_cmds.rb: Add macros to
35
+ list of initial completions. Better fin+ macro example
36
+
37
+ 2011-02-14 rocky <rockyb@rubyforge.org>
38
+
39
+ * .gemspec, app/method.rb, app/method_name.citrus,
40
+ app/method_name.rb, lib/trepanning.rb, processor/breakpoint.rb,
41
+ processor/command/break.rb, processor/command/disassemble.rb,
42
+ processor/stepping.rb, processor/validate.rb,
43
+ test/unit/test-proc-validate.rb: first_line_on_ip's "not found" is
44
+ now nil for next rubinius release. Remove citrus-related code and
45
+ Method name lookup. Will reinstate after a release with kpeg.
46
+ Prevent breakpoint resolve! from getting in an infinite loop.
47
+
48
+ 2011-02-14 rocky <rockyb@rubyforge.org>
49
+
50
+ * processor/command/macro.rb: Typo
51
+
52
+ 2011-02-14 rocky <rockyb@rubyforge.org>
53
+
54
+ * processor/command/help.rb, processor/command/macro.rb,
55
+ processor/main.rb: macro.rb: Macros are more useful now. An array of
56
+ strings pushes additional commands on the command queue. help.rb:
57
+ Show aliases and macros in help *. Add help for exach of these
58
+ individually. 3
59
+
60
+ 2011-02-13 rocky <rockyb@rubyforge.org>
61
+
62
+ * interface/user.rb: Remove extraneous line in saving history
63
+
64
+ 2011-02-13 rocky <rockyb@rubyforge.org>
65
+
66
+ * interface/user.rb: Remove duplicate history save
67
+
68
+ 2011-02-13 rocky <rockyb@rubyforge.org>
69
+
70
+ * .gemspec, app/method_name.citrus, app/method_name.rb,
71
+ io/tcpclient.rb, processor/command/break.rb,
72
+ processor/command/disassemble.rb, processor/validate.rb,
73
+ test/unit/test-io-tcpclient.rb, test/unit/test-proc-validate.rb: Use
74
+ citus to parse method names avoiding use of eval which is safer. Add
75
+ disconnected? to tcpclient.
76
+
77
+ 2011-02-12 rocky <rockyb@rubyforge.org>
78
+
79
+ * processor/command/continue.rb: Sync continue somewhat with
80
+ rb-trepanning
81
+
82
+ 2011-02-12 rocky <rockyb@rubyforge.org>
83
+
84
+ * processor/command/info_subcmd/files.rb: Add mtime and ctime.
85
+
86
+ 2011-02-11 rocky <rockyb@rubyforge.org>
87
+
88
+ * test/unit/test-io-tcpclient.rb, test/unit/test-subcmd-help.rb:
89
+ Subcommand HELP constant is set correcltly, so remove message and
90
+ add test.
91
+
92
+ 2011-02-11 rocky <rockyb@rubyforge.org>
93
+
94
+ * processor/command/info_subcmd/files.rb,
95
+ processor/command/info_subcmd/line.rb,
96
+ processor/command/info_subcmd/program.rb,
97
+ processor/command/info_subcmd/variables.rb, processor/mock.rb: Clean
98
+ up/DRY "info" standalone code
99
+
100
+ 2011-02-11 rocky <rockyb@rubyforge.org>
101
+
102
+ * processor/command/info_subcmd/ruby.rb: Small change
103
+
104
+ 2011-02-11 rocky <rockyb@rubyforge.org>
105
+
106
+ * processor/command/info_subcmd/rubinius.rb,
107
+ processor/command/info_subcmd/ruby.rb: info rubinius -> info ruby.
108
+ To be more compatible with rb-trepanning
109
+
110
+ 2011-02-11 rocky <rockyb@rubyforge.org>
111
+
112
+ * processor/command/info_subcmd/rubinius.rb,
113
+ processor/command/set_subcmd/confirm.rb,
114
+ processor/command/show_subcmd/confirm.rb: Ad "info rubinius" akin to
115
+ rbx -v or rbx -vv. Add gdb set/show confirm.
116
+
117
+ 2011-02-11 rocky <rockyb@rubyforge.org>
118
+
119
+ * Rakefile, test/unit/test-completion.rb: Pass --verbose option to
120
+ rake tasks properly.
121
+
122
+ 2011-02-11 rocky <rockyb@rubyforge.org>
123
+
124
+ * io/input.rb, test/unit/test-completion.rb: Make sure readline
125
+ finalize is done only once.
126
+
127
+ 2011-02-10 rocky <rockyb@rubyforge.org>
128
+
129
+ * interface/user.rb, lib/trepanning.rb,
130
+ test/integration/test-quit.rb: lib/trepanning.rb: stop-gap stop.
131
+ Reinstate save-history.
132
+
133
+ 2011-02-10 rocky <rockyb@rubyforge.org>
134
+
135
+ * test/unit/test-completion.rb: Hacky way to make sure we turn off
136
+ finalize and Readline.
137
+
138
+ 2011-02-10 rocky <rockyb@rubyforge.org>
139
+
140
+ Merge branch 'master' of github.com:rocky/rbx-trepanning
141
+ Conflicts: interface/base_intf.rb interface/user.rb
142
+ processor/command/irb.rb processor/main.rb
143
+
144
+ 2011-02-10 rocky <rockyb@rubyforge.org>
145
+
146
+ * app/irb.rb, interface/base_intf.rb, interface/user.rb,
147
+ processor/command/irb.rb, processor/main.rb, processor/mock.rb,
148
+ test/unit/test-intf-user.rb, test/unit/test-proc-eval.rb: Work on
149
+ history reading and saving and in between irb sessions although
150
+ somewhat disabled for now.
151
+
152
+ 2011-02-09 rocky <rockyb@rubyforge.org>
153
+
154
+ * processor/command/info_subcmd/line.rb,
155
+ processor/command/info_subcmd/program.rb: Start a gdb "info line"
156
+ command.
157
+
158
+ 2011-02-09 rocky <rockyb@rubyforge.org>
159
+
160
+ * processor/command/show_subcmd/basename.rb,
161
+ processor/command/show_subcmd/max.rb, processor/default.rb,
162
+ processor/validate.rb, test/data/quit2.cmd, test/data/quit2.right,
163
+ test/integration/helper.rb, test/integration/test-quit.rb: Add
164
+ set/show confirm
165
+
166
+ 2011-02-09 rocky <rockyb@rubyforge.org>
167
+
168
+ * lib/trepanning.rb, processor/command/irb.rb: Change completion
169
+ proc on entering and leaving irb
170
+
171
+ 2011-02-09 rocky <rockyb@rubyforge.org>
172
+
173
+ * processor/command/eval.rb: Sync with rb-trepanning
174
+
175
+ 2011-02-08 rocky <rockyb@rubyforge.org>
176
+
177
+ * processor/command/eval.rb, processor/location.rb: eval without a
178
+ string eval's the current source code. Update and expand 'eval' help
179
+ text.
180
+
181
+ 2011-02-08 rocky <rockyb@rubyforge.org>
182
+
183
+ * interface/base_intf.rb, interface/user.rb, io/input.rb,
184
+ lib/trepanning.rb, processor/default.rb, processor/main.rb: Save
185
+ debugger commands in history now. Move history saving code from
186
+ debugger into user interface. Save history file on exit in
187
+ finalization routine.
188
+
189
+ 2011-02-06 rocky <rockyb@rubyforge.org>
190
+
191
+ * processor/command/base/cmd.rb, processor/command/base/subcmd.rb,
192
+ processor/load_cmds.rb, sample/rocky-trepanx-colors.rb,
193
+ test/unit/test-base-cmd.rb, test/unit/test-completion.rb: Fix bug in
194
+ completing an initial list of commands (null string '').
195
+
196
+ 2011-02-06 rocky <rockyb@rubyforge.org>
197
+
198
+ * processor/command/info_subcmd/file.rb,
199
+ processor/command/info_subcmd/files.rb: info file -> info files to
200
+ match gdb better. Dynamic list completion in info files. Usual
201
+ cleanups
202
+
203
+ 2011-02-06 rocky <rockyb@rubyforge.org>
204
+
205
+ * processor/command/base/cmd.rb, processor/command/base/subcmd.rb,
206
+ test/unit/test-base-subcmd.rb: Allow for more dynamic setting of
207
+ completion array. Some other minor corrections. Sync with
208
+ rb-trepanning.
209
+
210
+ 2011-02-05 rocky <rockyb@rubyforge.org>
211
+
212
+ * io/tcpfns.rb, io/tcpserver.rb, lib/trepanning.rb,
213
+ test/unit/test-completion.rb: Syn with rb-trepanning
214
+
215
+ 2011-02-05 rocky <rockyb@rubyforge.org>
216
+
217
+ * lib/trepanning.rb: Wrong default variable name in completion
218
+
219
+ 2011-02-05 rocky <rockyb@rubyforge.org>
220
+
221
+ * lib/trepanning.rb: Add comments to completion - it is a little
222
+ subtle
223
+
224
+ 2011-02-05 rocky <rockyb@rubyforge.org>
225
+
226
+ * lib/trepanning.rb, processor/load_cmds.rb,
227
+ test/unit/test-completion.rb: Add space to completion when last
228
+ token is complete. Break completion into its own routine and we now
229
+ start testing that.
230
+
231
+ 2011-02-04 rocky <rockyb@rubyforge.org>
232
+
233
+ * README.textile: Nope ```ruby does not work for README on gitub :-/
234
+
235
+
236
+ 2011-02-04 rocky <rockyb@rubyforge.org>
237
+
238
+ * README.textile: Nope ```ruby does not work for README on gitub :-/
239
+
240
+
241
+ 2011-02-04 rocky <rockyb@rubyforge.org>
242
+
243
+ * README.textile: Nope ```ruby does not work for README on gitub :-/
244
+
245
+
246
+ 2011-02-04 rocky <rockyb@rubyforge.org>
247
+
248
+ * README.textile: Nope ```ruby does not work for README on gitub :-/
249
+
250
+
251
+ 2011-02-04 rocky <rockyb@rubyforge.org>
252
+
253
+ * README.textile, io/input.rb, lib/trepanning.rb,
254
+ processor/command/complete.rb, processor/command/set_subcmd/max.rb,
255
+ processor/load_cmds.rb: Back off of trying to complete anything
256
+ other than the last token in completion. io/input.rb Remove
257
+ Readline.rl_line_buffer= READE.textile: cooler code formatting.
258
+
259
+ 2011-02-04 rocky <rockyb@rubyforge.org>
260
+
261
+ * io/input.rb, processor/command/base/subcmd.rb: input.rb: add
262
+ termination routine for readline on interrupt subcmd.rb: add
263
+ completion for set boolean (on/off).
264
+
265
+ 2011-02-04 rocky <rockyb@rubyforge.org>
266
+
267
+ * interface/user.rb, io/input.rb, processor/command/help.rb,
268
+ processor/command/set_subcmd/max.rb, processor/load_cmds.rb: More
269
+ completion work: for help and help command <complete>. Bug in not
270
+ setting prompt in readline fixed.
271
+
272
+ 2011-02-04 rocky <rockyb@rubyforge.org>
273
+
274
+ Merge branch 'master' of github.com:rocky/rbx-trepanning
275
+ Conflicts: processor/command/base/subsubmgr.rb
276
+ processor/load_cmds.rb
277
+
278
+ 2011-02-04 rocky <rockyb@rubyforge.org>
279
+
280
+ * app/complete.rb, app/util.rb, interface/comcodes.rb,
281
+ io/tcpfns.rb, processor/command/base/cmd.rb,
282
+ processor/command/base/submgr.rb,
283
+ processor/command/base/subsubmgr.rb, processor/command/help.rb,
284
+ processor/command/info_subcmd/file.rb, processor/load_cmds.rb,
285
+ processor/subcmd.rb, test/unit/test-app-util.rb: Expand completion
286
+ one level down. Needs refactoring. Sync with rb-trepanning.
287
+
288
+ 2011-02-04 rocky <rockyb@rubyforge.org>
289
+
290
+ * processor/command/base/subsubmgr.rb,
291
+ processor/command/set_subcmd/max.rb, processor/load_cmds.rb,
292
+ processor/location.rb: Inch forward in handling sub-subcommand
293
+ completion.
294
+
295
+ 2011-02-03 rocky <rockyb@rubyforge.org>
296
+
297
+ * Rakefile, app/util.rb, processor/command/base/cmd.rb,
298
+ processor/command/base/submgr.rb, processor/command/help.rb,
299
+ processor/command/show.rb, processor/command/source.rb,
300
+ processor/load_cmds.rb, test/unit/test-app-util.rb,
301
+ test/unit/test-cmd-help.rb: Sync with rb-trepanning. Adding more
302
+ completion help. Running check: tasks. DRYing code.
303
+
304
+ 2011-02-03 rocky <rockyb@rubyforge.org>
305
+
306
+ * interface/user.rb, io/input.rb, io/tcpserver.rb,
307
+ lib/trepanning.rb, processor/command/base/submgr.rb,
308
+ processor/load_cmds.rb: Completion now using rb-readline.
309
+
310
+ 2011-02-02 rocky <rockyb@rubyforge.org>
311
+
312
+ * processor/command/base/submgr.rb,
313
+ processor/command/show_subcmd/auto.rb, processor/load_cmds.rb,
314
+ test/unit/test-base-submgr.rb, test/unit/test-proc-load_cmds.rb:
315
+ More work on completion: handle completing subcommands
316
+
317
+ 2011-02-02 rocky <rockyb@rubyforge.org>
318
+
319
+ * processor/command/disassemble.rb, processor/disassemble.rb: Allow
320
+ unlimited number of disassemble args.
321
+
322
+ 2011-02-02 rocky <rockyb@rubyforge.org>
323
+
324
+ * processor/command/base/submgr.rb, processor/load_cmds.rb: Avoid
325
+ using eval to instantiate commands and subcommands.
326
+
327
+ 2011-02-02 rocky <rockyb@rubyforge.org>
328
+
329
+ Merge branch 'master' of github.com:rocky/rbx-trepanning
330
+
331
+ 2011-02-02 rocky <rockyb@rubyforge.org>
332
+
333
+ * interface/user.rb, io/input.rb, lib/trepanning.rb,
334
+ processor/command/complete.rb, processor/load_cmds.rb: Start tab
335
+ completion. Correct setting for line edit via Readline.
336
+
337
+ 2011-02-01 rocky <rockyb@rubyforge.org>
338
+
339
+ * app/options.rb, processor/command/disassemble.rb: Allow
340
+ disassembly of a single line.
341
+
342
+ 2011-02-01 rocky <rockyb@rubyforge.org>
343
+
344
+ * ChangeLog: Update ChangeLog of 0.0.4
345
+
346
+ 2011-02-01 rocky <rockyb@rubyforge.org>
347
+
348
+ * NEWS, app/options.rb: Get ready for 0.0.4 release
349
+
350
+ 2011-02-01 rocky <rockyb@rubyforge.org>
351
+
352
+ * processor/msg.rb, sample/list-terminal-colors.rb,
353
+ sample/rocky-trepanx-colors.rb: Change error messages from underline
354
+ to italic. Sync with rb-trepanning.
355
+
356
+ 2011-01-30 rocky <rockyb@rubyforge.org>
357
+
358
+ * processor/command/set_subcmd/hidelevel.rb,
359
+ processor/command/set_subcmd/kernelstep.rb,
360
+ processor/command/set_subcmd/trace.rb: Minor cleanup.
361
+
362
+ 2011-01-28 rocky <rockyb@rubyforge.org>
363
+
364
+ * app/options.rb, lib/trepanning.rb,
365
+ processor/command/disassemble.rb, processor/command/list.rb,
366
+ processor/command/set_subcmd/highlight.rb,
367
+ processor/command/set_subcmd/terminal.rb,
368
+ processor/command/show_subcmd/highlight.rb,
369
+ processor/command/show_subcmd/terminal.rb, processor/default.rb,
370
+ processor/disassemble.rb, processor/location.rb, processor/main.rb,
371
+ processor/msg.rb: set/show terminal -> set/show highlight
372
+
373
+ 2011-01-28 rocky <rockyb@rubyforge.org>
374
+
375
+ Add debugger command syntax help.
376
+
377
+ 2011-01-28 rocky <rockyb@rubyforge.org>
378
+
379
+ Describe debugger command syntax in help.
380
+
381
+ 2011-01-28 rocky <rockyb@rubyforge.org>
382
+
383
+ I hate conflicted merges
384
+
385
+ 2011-01-28 rocky <rockyb@rubyforge.org>
386
+
387
+ * processor/command/help.rb, processor/default.rb,
388
+ test/unit/cmd-helper.rb, test/unit/test-proc-main.rb: Sync with
389
+ trepanning.
390
+
391
+ 2011-01-24 rocky <rockyb@rubyforge.org>
392
+
393
+ * processor/msg.rb: Error messages are underlined when in term mode.
394
+
395
+
396
+ 2011-01-24 rocky <rockyb@rubyforge.org>
397
+
398
+ * interface/base_intf.rb, processor/command/help.rb,
399
+ processor/main.rb: main.rb: add command queuing and splitting via
400
+ ;;. help.rb: document complex debugger command syntax. base_intf.rb:
401
+ remove ansi_term. Not used here.
402
+
403
+ 2011-01-24 rocky <rockyb@rubyforge.org>
404
+
405
+ * processor/command/complete.rb: Rudimentary gdb "complete" commnd.
406
+
407
+
408
+ 2011-01-24 rocky <rockyb@rubyforge.org>
409
+
410
+ * app/options.rb, processor/command/help.rb,
411
+ processor/command/show_subcmd/version.rb,
412
+ processor/command/source.rb: A little more like gdb: add "show
413
+ version" and "help all".
414
+
415
+ 2011-01-23 rocky <rockyb@rubyforge.org>
416
+
417
+ * processor/command/backtrace.rb: More compatible with gdb's
418
+ backtrace. Expand help text.
419
+
420
+ 2011-01-23 rocky <rockyb@rubyforge.org>
421
+
422
+ * processor/command/list.rb: Don't truncate list output.
423
+
424
+ 2011-01-23 rocky <rockyb@rubyforge.org>
425
+
426
+ * app/display.rb, lib/trepanning.rb, processor/command/display.rb,
427
+ processor/command/undisplay.rb, processor/display.rb,
428
+ processor/main.rb: Add display expressions. It works, although the
429
+ mocks and standalone code doesn't.
430
+
431
+ 2011-01-23 rocky <rockyb@rubyforge.org>
432
+
433
+ * sample/rocky-trepanx-colors.rb: Sample file color tweaks
434
+
435
+ 2011-01-22 rocky <rockyb@rubyforge.org>
436
+
437
+ * interface/base_intf.rb, processor/command/base/cmd.rb,
438
+ processor/command/disassemble.rb, processor/command/eval.rb,
439
+ processor/command/help.rb,
440
+ processor/command/info_subcmd/breakpoints.rb,
441
+ processor/command/info_subcmd/variables.rb,
442
+ processor/command/list.rb, processor/command/pr.rb,
443
+ processor/command/ps.rb, processor/disassemble.rb,
444
+ processor/mock.rb, processor/msg.rb, sample/.gitignore,
445
+ sample/list-terminal-colors.rb, test/unit/cmd-helper.rb,
446
+ test/unit/test-base-subcmd.rb: Add section command - in terminal
447
+ mode it makes the text bold. Add option hash to msg, ermmsg, etc.
448
+ Only option right now is to allow unlimited (not truncated) text.
449
+
450
+ 2011-01-22 rocky <rockyb@rubyforge.org>
451
+
452
+ * app/llvm.rb, app/rbx-llvm.rb, processor/command/disassemble.rb,
453
+ processor/disassemble.rb: Start to DRY CodeRay scanner for rubinius
454
+ llvm.
455
+
456
+ 2011-01-22 rocky <rockyb@rubyforge.org>
457
+
458
+ * app/llvm.rb: syntax highlighting improvements for strings with
459
+ embeded ", immediates, etc.
460
+
461
+ 2011-01-22 rocky <rockyb@rubyforge.org>
462
+
463
+ * app/llvm.rb, sample/rocky-trepanx-colors.rb: More complete
464
+ Rubinius LLVM parsing.
465
+
466
+ 2011-01-22 rocky <rockyb@rubyforge.org>
467
+
468
+ * app/iseq.rb, app/llvm.rb, processor/command/disassemble.rb,
469
+ processor/disassemble.rb: Add syntax coloring of disassembly via
470
+ CodeRay. llvm.rb: our custom LLVM scanner.
471
+
472
+ 2011-01-21 rocky <rockyb@rubyforge.org>
473
+
474
+ Merge branch 'master' of github.com:rocky/rbx-trepanning
475
+
476
+ 2011-01-21 rocky <rockyb@rubyforge.org>
477
+
478
+ * processor/command/disassemble.rb: One more Trepanning->Trepan
479
+
480
+ 2011-01-21 rocky <rockyb@rubyforge.org>
481
+
482
+ * app/breakpoint.rb, app/brkptmgr.rb,
483
+ test/unit/test-app-brkptmgr.rb: BreakpointMgr ->
484
+ Trepan::BreakpointMgr
485
+
486
+ 2011-01-21 rocky <rockyb@rubyforge.org>
487
+
488
+ * app/breakpoint.rb, app/brkptmgr.rb, lib/trepanning.rb,
489
+ processor/command/nexti.rb, processor/stepping.rb,
490
+ test/unit/test-app-brkpt.rb, test/unit/test-app-brkptmgr.rb:
491
+ Trepanning::Breakpoint -> Trepan::Breakpont
492
+
493
+ 2011-01-21 rocky <rockyb@rubyforge.org>
494
+
495
+ * app/iseq.rb: Trepan::ISeq needs only to be a module, not a class.
496
+
497
+
498
+ 2011-01-21 rocky <rockyb@rubyforge.org>
499
+
500
+ * app/default.rb: It *is* already large
501
+
502
+ 2011-01-21 rocky <rockyb@rubyforge.org>
503
+
504
+ * app/brkptmgr.rb, app/default.rb, app/options.rb, io/tcpserver.rb,
505
+ lib/trepanning.rb, processor/command/server.rb,
506
+ processor/command/source.rb, processor/default.rb,
507
+ processor/mock.rb, test/unit/mock-helper.rb,
508
+ test/unit/test-app-options.rb: Trepanning module -> Trepanning class
509
+ singleton for app/default.rb
510
+
511
+ 2011-01-21 rocky <rockyb@rubyforge.org>
512
+
513
+ * .gemspec, Rakefile, app/options.rb, bin/trepanx,
514
+ test/unit/test-app-options.rb: Trepanning module -> Trepan class
515
+ singleton methods for app/options.rb
516
+
517
+ 2011-01-21 rocky <rockyb@rubyforge.org>
518
+
519
+ * app/iseq.rb, processor/disassemble.rb, processor/stepping.rb,
520
+ test/unit/test-app-iseq.rb: Start to remove Trepanning module
521
+ replacing it with Trepan singleton methods.
522
+
523
+ 2011-01-18 rocky <rockyb@rubyforge.org>
524
+
525
+ * processor/location.rb: Don't truncate source test in
526
+ print_location
527
+
528
+ 2011-01-18 rocky <rockyb@rubyforge.org>
529
+
530
+ * processor/command/base/subcmd.rb,
531
+ processor/command/info_subcmd/breakpoints.rb,
532
+ processor/command/info_subcmd/file.rb,
533
+ processor/command/info_subcmd/method.rb,
534
+ processor/command/info_subcmd/program.rb,
535
+ processor/command/info_subcmd/variables.rb,
536
+ processor/command/set_subcmd/auto.rb,
537
+ processor/command/set_subcmd/basename.rb,
538
+ processor/command/set_subcmd/debug.rb,
539
+ processor/command/set_subcmd/different.rb,
540
+ processor/command/set_subcmd/hidelevel.rb,
541
+ processor/command/set_subcmd/kernelstep.rb,
542
+ processor/command/set_subcmd/max.rb,
543
+ processor/command/set_subcmd/substitute.rb,
544
+ processor/command/set_subcmd/terminal.rb,
545
+ processor/command/set_subcmd/trace.rb,
546
+ processor/command/show_subcmd/alias.rb,
547
+ processor/command/show_subcmd/args.rb,
548
+ processor/command/show_subcmd/auto.rb,
549
+ processor/command/show_subcmd/basename.rb,
550
+ processor/command/show_subcmd/debug.rb,
551
+ processor/command/show_subcmd/different.rb,
552
+ processor/command/show_subcmd/hidelevel.rb,
553
+ processor/command/show_subcmd/kernelstep.rb,
554
+ processor/command/show_subcmd/max.rb,
555
+ processor/command/show_subcmd/terminal.rb,
556
+ processor/command/show_subcmd/trace.rb: Use set_name_prefix to DRY
557
+ setting class NAME and PREFIX inside command class.
558
+
559
+ 2011-01-18 rocky <rockyb@rubyforge.org>
560
+
561
+ * processor/command/set_subcmd/terminal.rb: Add 'set terminal reset'
562
+ to force redoing syntax highlight.
563
+
564
+ 2011-01-18 rocky <rockyb@rubyforge.org>
565
+
566
+ * app/util.rb, processor/command/list.rb,
567
+ processor/command/set_subcmd/max_subcmd/string.rb: Allow disabling
568
+ max string which is what we do in listing. Default value is no
569
+ longer the same as the minimum value. Revise and expand "help max
570
+ string".
571
+
572
+ 2011-01-18 rocky <rockyb@rubyforge.org>
573
+
574
+ * sample/list-terminal-colors.rb: Add Ruby program to list and show
575
+ default Term::ANSIColor names, colors and values.
576
+
577
+ 2011-01-17 rocky <rockyb@rubyforge.org>
578
+
579
+ * sample/rocky-dot-trepanxrc: Until I find the bug, turn off syntax
580
+ highlighting
581
+
582
+ 2011-01-17 rocky <rockyb@rubyforge.org>
583
+
584
+ * .gemspec, sample/rocky-dot-trepanxrc,
585
+ sample/rocky-trepanx-colors.rb: Show how to customize syntax
586
+ highlighthing and give the debugger profile I use.
587
+
588
+ 2011-01-17 rocky <rockyb@rubyforge.org>
589
+
590
+ * test/unit/test-io-tcpserver.rb: Fix unit test?
591
+
592
+ 2011-01-17 rocky <rockyb@rubyforge.org>
593
+
594
+ * .gemspec: Change linecache required version number to make sure we
595
+ pick up syntax highlighting
596
+
597
+ 2011-01-17 rocky <rockyb@rubyforge.org>
598
+
599
+ * .gemspec, processor/command/set_subcmd/basename.rb,
600
+ processor/command/set_subcmd/terminal.rb,
601
+ processor/command/show_subcmd/auto.rb,
602
+ processor/command/show_subcmd/basename.rb,
603
+ processor/command/show_subcmd/hidelevel.rb,
604
+ processor/command/show_subcmd/kernelstep.rb,
605
+ processor/command/show_subcmd/terminal.rb,
606
+ processor/command/show_subcmd/trace.rb, processor/main.rb,
607
+ test/unit/test-cmd-source.rb: Add ability to turn on and off
608
+ terminal highlighting with "set/show terminal"
609
+
610
+ 2011-01-17 rocky <rockyb@rubyforge.org>
611
+
612
+ * lib/trepanning.rb, processor/command/show_subcmd/max.rb,
613
+ processor/command/show_subcmd/trace.rb, processor/default.rb:
614
+ Prepare for adding terminal command. Remove more of highlight from
615
+ reference debugger.
616
+
617
+ 2011-01-17 rocky <rockyb@rubyforge.org>
618
+
619
+ * processor/location.rb: Update copyright
620
+
621
+ 2011-01-17 rocky <rockyb@rubyforge.org>
622
+
623
+ * app/options.rb, bin/trepanx, lib/trepanning.rb,
624
+ processor/command/list.rb, processor/location.rb: Start using syntax
625
+ highlighting for source via linecache. Add --terminal option. More
626
+ work is needed.
627
+
628
+ 2011-01-16 rocky <rockyb@rubyforge.org>
629
+
630
+ * processor/command/source.rb: Add unit test source options. Fix bug
631
+ in source option processing.
632
+
633
+ 2011-01-13 rocky <rockyb@rubyforge.org>
634
+
635
+ * processor/command/server.rb: Command to set server interface
636
+
637
+ 2011-01-13 rocky <rockyb@rubyforge.org>
638
+
639
+ * processor/command/source.rb: Sync with rb-trepanning
640
+
641
+ 2011-01-13 rocky <rockyb@rubyforge.org>
642
+
643
+ * app/client.rb, app/default.rb, app/options.rb,
644
+ interface/base_intf.rb, processor/command/source.rb: server.rb: Add
645
+ command to go server mode. source.rb: use optparse to parse options.
646
+ client.rb: handle user EOF. default.rb: DRY host/port options.
647
+ base_intf.rb: close() guards against uninitialized I/O.
648
+
649
+ 2011-01-12 rocky <rockyb@rubyforge.org>
650
+
651
+ * interface/server.rb, io/tcpserver.rb: Small changes
652
+
653
+ 2011-01-11 rocky <rockyb@rubyforge.org>
654
+
655
+ * app/options.rb, bin/trepanx, io/tcpclient.rb, lib/trepanning.rb,
656
+ processor/main.rb, test/unit/test-io-tcpclient.rb: Sync with
657
+ rb-trepanning. Small changes mostly.
658
+
659
+ 2011-01-09 rocky <rockyb@rubyforge.org>
660
+
661
+ * app/client.rb, app/default.rb, bin/trepanx, interface/server.rb,
662
+ lib/trepanning.rb: Add trepanx --port and --host options and make
663
+ sure these get passed through.
664
+
665
+ 2011-01-09 rocky <rockyb@rubyforge.org>
666
+
667
+ * app/default.rb, app/options.rb, io/tcpserver.rb,
668
+ test/data/fname-with-blank.right, test/data/quit.right,
669
+ test/integration/test-fname-with-blank.rb,
670
+ test/integration/test-inline-call.rb, test/integration/test-quit.rb:
671
+ Previous change removed some bugs which changed integration-test
672
+ output. Start adding --port and --host options for remote debugging.
673
+
674
+
675
+ 2011-01-09 rocky <rockyb@rubyforge.org>
676
+
677
+ * ChangeLog, test/data/inline-call.right,
678
+ test/example/gcd-inline-call.rb, test/example/gcd-server.rb,
679
+ test/example/gcd.rb, test/example/inline-call.rb,
680
+ test/integration/helper.rb, test/integration/test-inline-call.rb:
681
+ Integration test for explict call to debugger in Ruby program.
682
+
1
683
  2011-01-09 rocky <rockyb@rubyforge.org>
2
684
 
3
685
  * lib/trepanning.rb, processor/command/directory.rb,