trepanning 0.0.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.
Files changed (219) hide show
  1. data/ChangeLog +4422 -0
  2. data/LICENSE +23 -0
  3. data/NEWS +12 -0
  4. data/README.textile +56 -0
  5. data/Rakefile +171 -0
  6. data/app/Makefile +7 -0
  7. data/app/breakpoint.rb +157 -0
  8. data/app/brkptmgr.rb +149 -0
  9. data/app/condition.rb +22 -0
  10. data/app/core.rb +203 -0
  11. data/app/default.rb +54 -0
  12. data/app/disassemble.rb +61 -0
  13. data/app/display.rb +148 -0
  14. data/app/file.rb +135 -0
  15. data/app/frame.rb +275 -0
  16. data/app/irb.rb +112 -0
  17. data/app/mock.rb +22 -0
  18. data/app/options.rb +122 -0
  19. data/app/run.rb +95 -0
  20. data/app/thread.rb +24 -0
  21. data/app/util.rb +32 -0
  22. data/bin/trepan +63 -0
  23. data/data/custom_require.rb +44 -0
  24. data/data/irbrc +55 -0
  25. data/data/prelude.rb +38 -0
  26. data/interface/base_intf.rb +95 -0
  27. data/interface/script.rb +103 -0
  28. data/interface/user.rb +90 -0
  29. data/io/base_io.rb +92 -0
  30. data/io/input.rb +111 -0
  31. data/io/string_array.rb +155 -0
  32. data/lib/Makefile +7 -0
  33. data/lib/trepanning.rb +277 -0
  34. data/processor/breakpoint.rb +108 -0
  35. data/processor/command/alias.rb +55 -0
  36. data/processor/command/backtrace.rb +95 -0
  37. data/processor/command/base/cmd.rb +97 -0
  38. data/processor/command/base/subcmd.rb +207 -0
  39. data/processor/command/base/submgr.rb +178 -0
  40. data/processor/command/base/subsubcmd.rb +102 -0
  41. data/processor/command/base/subsubmgr.rb +182 -0
  42. data/processor/command/break.rb +85 -0
  43. data/processor/command/condition.rb +64 -0
  44. data/processor/command/continue.rb +61 -0
  45. data/processor/command/debug.rb +85 -0
  46. data/processor/command/delete.rb +54 -0
  47. data/processor/command/directory.rb +43 -0
  48. data/processor/command/disable.rb +65 -0
  49. data/processor/command/disassemble.rb +103 -0
  50. data/processor/command/display.rb +81 -0
  51. data/processor/command/down.rb +56 -0
  52. data/processor/command/enable.rb +43 -0
  53. data/processor/command/exit.rb +54 -0
  54. data/processor/command/finish.rb +81 -0
  55. data/processor/command/frame.rb +117 -0
  56. data/processor/command/help.rb +146 -0
  57. data/processor/command/info.rb +28 -0
  58. data/processor/command/info_subcmd/args.rb +56 -0
  59. data/processor/command/info_subcmd/breakpoints.rb +162 -0
  60. data/processor/command/info_subcmd/file.rb +162 -0
  61. data/processor/command/info_subcmd/frame.rb +39 -0
  62. data/processor/command/info_subcmd/iseq.rb +83 -0
  63. data/processor/command/info_subcmd/locals.rb +88 -0
  64. data/processor/command/info_subcmd/program.rb +54 -0
  65. data/processor/command/info_subcmd/registers.rb +72 -0
  66. data/processor/command/info_subcmd/registers_subcmd/dfp.rb +38 -0
  67. data/processor/command/info_subcmd/registers_subcmd/helper.rb +40 -0
  68. data/processor/command/info_subcmd/registers_subcmd/lfp.rb +54 -0
  69. data/processor/command/info_subcmd/registers_subcmd/pc.rb +44 -0
  70. data/processor/command/info_subcmd/registers_subcmd/sp.rb +75 -0
  71. data/processor/command/info_subcmd/return.rb +40 -0
  72. data/processor/command/info_subcmd/thread.rb +106 -0
  73. data/processor/command/irb.rb +106 -0
  74. data/processor/command/kill.rb +58 -0
  75. data/processor/command/list.rb +327 -0
  76. data/processor/command/macro.rb +65 -0
  77. data/processor/command/next.rb +89 -0
  78. data/processor/command/nocache.rb +33 -0
  79. data/processor/command/print.rb +37 -0
  80. data/processor/command/ps.rb +40 -0
  81. data/processor/command/quit.rb +62 -0
  82. data/processor/command/raise.rb +47 -0
  83. data/processor/command/reload.rb +28 -0
  84. data/processor/command/reload_subcmd/command.rb +34 -0
  85. data/processor/command/restart.rb +57 -0
  86. data/processor/command/save.rb +60 -0
  87. data/processor/command/set.rb +47 -0
  88. data/processor/command/set_subcmd/auto.rb +27 -0
  89. data/processor/command/set_subcmd/auto_subcmd/eval.rb +67 -0
  90. data/processor/command/set_subcmd/auto_subcmd/irb.rb +49 -0
  91. data/processor/command/set_subcmd/auto_subcmd/list.rb +51 -0
  92. data/processor/command/set_subcmd/basename.rb +39 -0
  93. data/processor/command/set_subcmd/debug.rb +27 -0
  94. data/processor/command/set_subcmd/debug_subcmd/dbgr.rb +49 -0
  95. data/processor/command/set_subcmd/debug_subcmd/except.rb +35 -0
  96. data/processor/command/set_subcmd/debug_subcmd/macro.rb +35 -0
  97. data/processor/command/set_subcmd/debug_subcmd/skip.rb +35 -0
  98. data/processor/command/set_subcmd/debug_subcmd/stack.rb +45 -0
  99. data/processor/command/set_subcmd/different.rb +67 -0
  100. data/processor/command/set_subcmd/events.rb +71 -0
  101. data/processor/command/set_subcmd/max.rb +35 -0
  102. data/processor/command/set_subcmd/max_subcmd/list.rb +50 -0
  103. data/processor/command/set_subcmd/max_subcmd/stack.rb +60 -0
  104. data/processor/command/set_subcmd/max_subcmd/string.rb +53 -0
  105. data/processor/command/set_subcmd/max_subcmd/width.rb +50 -0
  106. data/processor/command/set_subcmd/return.rb +66 -0
  107. data/processor/command/set_subcmd/sp.rb +62 -0
  108. data/processor/command/set_subcmd/substitute.rb +25 -0
  109. data/processor/command/set_subcmd/substitute_subcmd/eval.rb +98 -0
  110. data/processor/command/set_subcmd/substitute_subcmd/path.rb +55 -0
  111. data/processor/command/set_subcmd/substitute_subcmd/string.rb +72 -0
  112. data/processor/command/set_subcmd/timer.rb +68 -0
  113. data/processor/command/set_subcmd/trace.rb +43 -0
  114. data/processor/command/set_subcmd/trace_subcmd/buffer.rb +56 -0
  115. data/processor/command/set_subcmd/trace_subcmd/print.rb +54 -0
  116. data/processor/command/set_subcmd/trace_subcmd/var.rb +61 -0
  117. data/processor/command/show.rb +27 -0
  118. data/processor/command/show_subcmd/alias.rb +50 -0
  119. data/processor/command/show_subcmd/args.rb +50 -0
  120. data/processor/command/show_subcmd/auto.rb +27 -0
  121. data/processor/command/show_subcmd/auto_subcmd/eval.rb +38 -0
  122. data/processor/command/show_subcmd/auto_subcmd/irb.rb +34 -0
  123. data/processor/command/show_subcmd/auto_subcmd/list.rb +36 -0
  124. data/processor/command/show_subcmd/basename.rb +28 -0
  125. data/processor/command/show_subcmd/debug.rb +27 -0
  126. data/processor/command/show_subcmd/debug_subcmd/dbgr.rb +31 -0
  127. data/processor/command/show_subcmd/debug_subcmd/except.rb +33 -0
  128. data/processor/command/show_subcmd/debug_subcmd/macro.rb +32 -0
  129. data/processor/command/show_subcmd/debug_subcmd/skip.rb +33 -0
  130. data/processor/command/show_subcmd/debug_subcmd/stack.rb +32 -0
  131. data/processor/command/show_subcmd/different.rb +37 -0
  132. data/processor/command/show_subcmd/events.rb +40 -0
  133. data/processor/command/show_subcmd/macro.rb +45 -0
  134. data/processor/command/show_subcmd/max.rb +31 -0
  135. data/processor/command/show_subcmd/max_subcmd/list.rb +39 -0
  136. data/processor/command/show_subcmd/max_subcmd/stack.rb +35 -0
  137. data/processor/command/show_subcmd/max_subcmd/string.rb +41 -0
  138. data/processor/command/show_subcmd/max_subcmd/width.rb +36 -0
  139. data/processor/command/show_subcmd/trace.rb +29 -0
  140. data/processor/command/show_subcmd/trace_subcmd/buffer.rb +84 -0
  141. data/processor/command/show_subcmd/trace_subcmd/print.rb +38 -0
  142. data/processor/command/source.rb +74 -0
  143. data/processor/command/step.rb +139 -0
  144. data/processor/command/stepi.rb +63 -0
  145. data/processor/command/unalias.rb +44 -0
  146. data/processor/command/undisplay.rb +63 -0
  147. data/processor/command/up.rb +92 -0
  148. data/processor/default.rb +45 -0
  149. data/processor/display.rb +17 -0
  150. data/processor/eval.rb +88 -0
  151. data/processor/eventbuf.rb +131 -0
  152. data/processor/frame.rb +230 -0
  153. data/processor/help.rb +72 -0
  154. data/processor/hook.rb +128 -0
  155. data/processor/load_cmds.rb +102 -0
  156. data/processor/location.rb +126 -0
  157. data/processor/main.rb +364 -0
  158. data/processor/mock.rb +100 -0
  159. data/processor/msg.rb +26 -0
  160. data/processor/running.rb +170 -0
  161. data/processor/subcmd.rb +159 -0
  162. data/processor/validate.rb +395 -0
  163. data/test/example/fname with blank.rb +1 -0
  164. data/test/example/gcd-xx.rb +18 -0
  165. data/test/example/gcd.rb +19 -0
  166. data/test/example/gcd1.rb +24 -0
  167. data/test/example/null.rb +1 -0
  168. data/test/example/thread1.rb +3 -0
  169. data/test/functional/fn_helper.rb +119 -0
  170. data/test/functional/test-break.rb +87 -0
  171. data/test/functional/test-condition.rb +59 -0
  172. data/test/functional/test-debugger-call-bug.rb +31 -0
  173. data/test/functional/test-delete.rb +71 -0
  174. data/test/functional/test-finish.rb +44 -0
  175. data/test/functional/test-immediate-step-bug.rb +35 -0
  176. data/test/functional/test-next.rb +77 -0
  177. data/test/functional/test-raise.rb +73 -0
  178. data/test/functional/test-return.rb +100 -0
  179. data/test/functional/test-step.rb +274 -0
  180. data/test/functional/test-stepbug.rb +40 -0
  181. data/test/functional/test-trace-var.rb +40 -0
  182. data/test/functional/tmp/b1.rb +5 -0
  183. data/test/functional/tmp/s1.rb +9 -0
  184. data/test/functional/tmp/t2.rb +6 -0
  185. data/test/integration/file-diff.rb +88 -0
  186. data/test/integration/helper.rb +52 -0
  187. data/test/integration/test-fname-with-blank.rb +11 -0
  188. data/test/integration/test-quit.rb +11 -0
  189. data/test/integration/try-test-enable.rb +11 -0
  190. data/test/unit/cmd-helper.rb +44 -0
  191. data/test/unit/test-app-brkpt.rb +30 -0
  192. data/test/unit/test-app-brkptmgr.rb +56 -0
  193. data/test/unit/test-app-disassemble.rb +60 -0
  194. data/test/unit/test-app-file.rb +46 -0
  195. data/test/unit/test-app-frame.rb +49 -0
  196. data/test/unit/test-app-options.rb +60 -0
  197. data/test/unit/test-app-run.rb +19 -0
  198. data/test/unit/test-app-thread.rb +25 -0
  199. data/test/unit/test-app-util.rb +17 -0
  200. data/test/unit/test-base-subcmd.rb +59 -0
  201. data/test/unit/test-bin-trepan.rb +48 -0
  202. data/test/unit/test-cmd-alias.rb +50 -0
  203. data/test/unit/test-cmd-break.rb +80 -0
  204. data/test/unit/test-cmd-endisable.rb +59 -0
  205. data/test/unit/test-cmd-help.rb +100 -0
  206. data/test/unit/test-cmd-kill.rb +47 -0
  207. data/test/unit/test-cmd-quit.rb +26 -0
  208. data/test/unit/test-cmd-step.rb +45 -0
  209. data/test/unit/test-intf-user.rb +45 -0
  210. data/test/unit/test-io-input.rb +26 -0
  211. data/test/unit/test-proc-eval.rb +26 -0
  212. data/test/unit/test-proc-frame.rb +77 -0
  213. data/test/unit/test-proc-help.rb +15 -0
  214. data/test/unit/test-proc-hook.rb +29 -0
  215. data/test/unit/test-proc-load_cmds.rb +40 -0
  216. data/test/unit/test-proc-main.rb +99 -0
  217. data/test/unit/test-proc-validate.rb +90 -0
  218. data/test/unit/test-subcmd-help.rb +48 -0
  219. metadata +358 -0
data/ChangeLog ADDED
@@ -0,0 +1,4422 @@
1
+ 2010-10-08 rocky <rockyb@rubyforge.org>
2
+
3
+ * README.textile: Update install link.
4
+
5
+ 2010-10-08 rocky <rockyb@rubyforge.org>
6
+
7
+ * data/custom_require.rb, processor/main.rb: Remap custom_require.rb
8
+
9
+
10
+ 2010-10-08 rocky <rockyb@rubyforge.org>
11
+
12
+ * Makefile: Fix up boilerplate Makefile
13
+
14
+ 2010-10-08 rocky <rockyb@rubyforge.org>
15
+
16
+ * processor/command/info_subcmd/breakpoints.rb: Regularize class
17
+ name
18
+
19
+ 2010-10-08 rocky <rockyb@rubyforge.org>
20
+
21
+ * processor/command/backtrace.rb, processor/command/debug.rb,
22
+ processor/command/finish.rb, processor/command/info_subcmd/args.rb,
23
+ processor/command/info_subcmd/frame.rb,
24
+ processor/command/info_subcmd/program.rb,
25
+ processor/command/info_subcmd/return.rb, processor/command/irb.rb,
26
+ processor/command/set_subcmd/return.rb,
27
+ processor/command/set_subcmd/sp.rb, processor/command/source.rb,
28
+ processor/frame.rb, processor/hook.rb, processor/location.rb,
29
+ processor/main.rb, processor/running.rb: Small things to sync up
30
+ with rbx-trepanning
31
+
32
+ 2010-10-08 rocky <rockyb@rubyforge.org>
33
+
34
+ * app/breakpoint.rb, app/brkptmgr.rb: Small things to sync up with
35
+ rbx-trepanning
36
+
37
+ 2010-10-08 rocky <rockyb@rubyforge.org>
38
+
39
+ * processor/command/info_subcmd/break.rb,
40
+ processor/command/info_subcmd/breakpoints.rb,
41
+ processor/command/set_subcmd/max_subcmd/.gitignore,
42
+ test/unit/test-app-brkptmgr.rb: Small things to sync up with
43
+ rbx-trepanning
44
+
45
+ 2010-10-05 rocky <rockyb@rubyforge.org>
46
+
47
+ * app/breakpoint.rb, app/brkptmgr.rb,
48
+ test/functional/test-break.rb, test/functional/test-condition.rb,
49
+ test/functional/test-delete.rb, test/unit/test-app-brkpt.rb,
50
+ test/unit/test-cmd-break.rb: app/breakpoint.rb: respect passed
51
+ breakpoint :id option. app/brkptmgr.rb: remove globalness of setting
52
+ breakpoint ids test/* adjust as is now appropriate.
53
+
54
+ 2010-10-04 rocky <rockyb@rubyforge.org>
55
+
56
+ * processor/breakpoint.rb, processor/eval.rb,
57
+ processor/validate.rb, test/unit/test-cmd-break.rb: We now scan
58
+ parent instruction sequences to find breakpoint line numbers. Note:
59
+ this requires an updated rb-threadframe from git. For example,
60
+ suppose the code is: xx = 'break here' 1.times do
61
+ debugger_is_here end If you are at the line of
62
+ "debugger_is_here", the xx line is not part of that instruction
63
+ sequence, but can be found by searching its parent instruction
64
+ sequence.
65
+
66
+ 2010-10-04 rocky <rockyb@rubyforge.org>
67
+
68
+ * app/breakpoint.rb, app/brkpt.rb, app/brkptmgr.rb, app/mock.rb,
69
+ processor/command/break.rb, processor/command/condition.rb,
70
+ processor/command/continue.rb, processor/command/delete.rb,
71
+ processor/command/disable.rb, test/functional/test-break.rb,
72
+ test/functional/test-condition.rb, test/functional/test-delete.rb,
73
+ test/unit/cmd-helper.rb, test/unit/test-app-brkpt.rb,
74
+ test/unit/test-app-brkptmgr.rb, test/unit/test-cmd-endisable.rb:
75
+ Start to to align with rbx-trepanning breakpoints. brkpt.rb ->
76
+ breakpoint.rb Breakpoint -> Trepanning::Breakpoint. Look also for
77
+ activity in the future also in rbx-trepanning.
78
+
79
+ 2010-10-01 rocky <rockyb@rubyforge.org>
80
+
81
+ * processor/command/set_subcmd/max_subcmd/list.rb,
82
+ processor/command/show_subcmd/max_subcmd/list.rb: Add "set max list"
83
+ command - the number of lines to show in a "list" command.
84
+
85
+ 2010-10-01 rocky <rockyb@rubyforge.org>
86
+
87
+ * processor/main.rb, processor/mock.rb, processor/validate.rb: Some
88
+ fixups in testing pieces in isolation.
89
+
90
+ 2010-09-30 rocky <rockyb@rubyforge.org>
91
+
92
+ * app/mock.rb, processor/default.rb, processor/location.rb,
93
+ processor/validate.rb: processor/*.rb: Add gdb-like "directory"
94
+ command. Code was in rbx-trepanning. app/mock.rb: Need to be more
95
+ realistic now.
96
+
97
+ 2010-09-30 rocky <rockyb@rubyforge.org>
98
+
99
+ * processor/validate.rb, test/unit/test-cmd-break.rb: Reinstate more
100
+ flexible file/line breakpoint parsing. Be more lenient about file
101
+ name matching, i.e. use basenames.
102
+
103
+ 2010-09-29 rocky <rockyb@rubyforge.org>
104
+
105
+ * processor/eval.rb, processor/main.rb: Undo last change - error
106
+ message for internal error. Messes up backtrace
107
+
108
+ 2010-09-28 rocky <rockyb@rubyforge.org>
109
+
110
+ * lib/trepanning.rb, processor/eval.rb: Add VERSION number
111
+
112
+ 2010-09-27 rocky <rockyb@rubyforge.org>
113
+
114
+ * processor/command/backtrace.rb, processor/command/where.rb:
115
+ where.rb -> backtrace.rb since that's what gdb uses
116
+
117
+ 2010-09-27 rocky <rockyb@rubyforge.org>
118
+
119
+ * processor/command/info_subcmd/file.rb: Small sync with rbx
120
+
121
+ 2010-09-27 rocky <rockyb@rubyforge.org>
122
+
123
+ * README.textile: README typo.
124
+
125
+ 2010-09-27 rocky <rockyb@rubyforge.org>
126
+
127
+ * README.textile: README typo.
128
+
129
+ 2010-09-27 rocky <rockyb@rubyforge.org>
130
+
131
+ * README.textile: README typo.
132
+
133
+ 2010-09-27 rocky <rockyb@rubyforge.org>
134
+
135
+ * README.textile: README typo.
136
+
137
+ 2010-09-27 rocky <rockyb@rubyforge.org>
138
+
139
+ * README.textile: Update README
140
+
141
+ 2010-09-27 rocky <rockyb@rubyforge.org>
142
+
143
+ * test/unit/test-bin-rbdbgr.rb, test/unit/test-bin-trepan.rb: And
144
+ another use of rbdbgr does down.
145
+
146
+ 2010-09-27 rocky <rockyb@rubyforge.org>
147
+
148
+ * lib/trepanning.rb: Remove a couple more uses of "rbdbgr".
149
+
150
+ 2010-09-27 rocky <rockyb@rubyforge.org>
151
+
152
+ * processor/command/list.rb,
153
+ processor/command/set_subcmd/max_subcmd/stack.rb,
154
+ processor/command/set_subcmd/max_subcmd/string.rb,
155
+ processor/command/set_subcmd/max_subcmd/width.rb,
156
+ processor/default.rb, processor/location.rb: DRY code. Add set/show
157
+ maxlist.
158
+
159
+ 2010-09-26 rocky <rockyb@rubyforge.org>
160
+
161
+ * processor/command/restart.rb: Sync with rbx-trepanning
162
+
163
+ 2010-09-26 rocky <rockyb@rubyforge.org>
164
+
165
+ * Rakefile, app/default.rb, app/file.rb, app/options.rb,
166
+ app/run.rb, bin/trepan, lib/trepanning.rb,
167
+ processor/command/disassemble.rb, processor/command/restart.rb,
168
+ processor/default.rb, processor/mock.rb, processor/validate.rb,
169
+ test/unit/test-app-file.rb, test/unit/test-app-options.rb,
170
+ test/unit/test-app-run.rb, test/unit/test-bin-rbdbgr.rb: Final
171
+ throws of the rbdgr->trepan(ning). module Rbdbgr->Trepanning.
172
+
173
+ 2010-09-26 rocky <rockyb@rubyforge.org>
174
+
175
+ * processor/command/frame.rb, processor/command/up.rb: Small code
176
+ cleaning for 'frame' and 'up' commands.
177
+
178
+ 2010-09-25 rocky <rockyb@rubyforge.org>
179
+
180
+ * app/options.rb: Pick up right init cmdfile name in opts help
181
+
182
+ 2010-09-25 rocky <rockyb@rubyforge.org>
183
+
184
+ * Rakefile, app/options.rb, bin/trepan, lib/trepanning.rb: Small
185
+ changes and try to keep in better compatibility/sync with rubinius.
186
+
187
+
188
+ 2010-09-25 rocky <rockyb@rubyforge.org>
189
+
190
+ * processor/command/show_subcmd/args.rb: Beef up demo code for show
191
+ args and change @proc.core.dbgr to @proc.dbgr to keep in sync with
192
+ rbx-trepanning.
193
+
194
+ 2010-09-25 rocky <rockyb@rubyforge.org>
195
+
196
+ Merge branch 'master' of github.com:rocky/rbdbgr
197
+
198
+ 2010-09-25 rocky <rockyb@rubyforge.org>
199
+
200
+ * app/run.rb, processor/command/exit.rb,
201
+ processor/command/info_subcmd/program.rb, processor/command/ps.rb,
202
+ processor/command/show_subcmd/max_subcmd/stack.rb,
203
+ processor/command/show_subcmd/max_subcmd/string.rb,
204
+ processor/command/show_subcmd/max_subcmd/width.rb,
205
+ processor/main.rb, test/unit/test-app-run.rb: app/run.rb: add demo
206
+ and unit test processor/command/exit.rb: allow xxx! and make
207
+ compatible with 1.8 Other small cleanups and synchronization with
208
+ rbx-trepanning.
209
+
210
+ 2010-09-24 rocky <rockyb@rubyforge.org>
211
+
212
+ * processor/command/disable.rb, processor/command/down.rb,
213
+ processor/command/enable.rb, processor/command/up.rb: DRY a little
214
+ by subclassing similar commands.
215
+
216
+ 2010-09-24 rocky <rockyb@rubyforge.org>
217
+
218
+ * README.textile, app/default.rb, data/irbrc,
219
+ processor/command/set_subcmd/debug_subcmd/except.rb,
220
+ processor/default.rb, test/functional/fn_helper.rb,
221
+ test/unit/test-intf-user.rb, test/unit/test-proc-main.rb,
222
+ test/unit/test-proc-validate.rb: rbdbgr -> trepan (mostly debugger
223
+ prompt).
224
+
225
+ 2010-09-23 rocky <rockyb@rubyforge.org>
226
+
227
+ * Makefile, Rakefile, processor/command/delete.rb,
228
+ processor/eval.rb, processor/main.rb, processor/subcmd.rb,
229
+ test/functional/test-delete.rb: Misc small things in moving forward
230
+ with rubinius version.
231
+
232
+ 2010-09-22 rocky <rockyb@rubyforge.org>
233
+
234
+ * test/unit/test-cmd-alias.rb: Require unalias just to be sure
235
+
236
+ 2010-09-22 rocky <rockyb@rubyforge.org>
237
+
238
+ * processor/command/alias.rb, test/unit/test-cmd-alias.rb: Make
239
+ 'alias' command do more. Add alias/unalias test.
240
+
241
+ 2010-09-22 rocky <rockyb@rubyforge.org>
242
+
243
+ * processor/frame.rb: Code indentation.
244
+
245
+ 2010-09-22 rocky <rockyb@rubyforge.org>
246
+
247
+ * Rakefile, processor/command/step.rb: Remove code that modifies
248
+ rake item inside itself. Thanks to teacher Evan. (See comment
249
+ http://github.com/evanphx/rubinius/issues/closed#issue/485
250
+
251
+ 2010-09-22 rocky <rockyb@rubyforge.org>
252
+
253
+ * app/util.rb, processor/msg.rb: Rubinius/Ruby 1.8 compatibility
254
+
255
+ 2010-09-22 rocky <rockyb@rubyforge.org>
256
+
257
+ * app/util.rb: Comment typo
258
+
259
+ 2010-09-22 rocky <rockyb@rubyforge.org>
260
+
261
+ * app/util.rb, processor/load_cmds.rb, processor/main.rb,
262
+ test/unit/test-io-input.rb: Rubinius & Ruby 1.8/R compatibility
263
+
264
+ 2010-09-21 rocky <rockyb@rubyforge.org>
265
+
266
+ * test/unit/test-proc-load_cmds.rb: Don't need threadframe for this
267
+ test.
268
+
269
+ 2010-09-21 rocky <rockyb@rubyforge.org>
270
+
271
+ * interface/script.rb, io/base_io.rb: Rubinius and Ruby 1.8
272
+ compatibility - class constants can't do ||=.
273
+
274
+ 2010-09-21 rocky <rockyb@rubyforge.org>
275
+
276
+ * .gemspec: Forgot one file
277
+
278
+ 2010-09-21 rocky <rockyb@rubyforge.org>
279
+
280
+ * .gemspec, README.textile, Rakefile, app/core.rb, app/irb.rb,
281
+ app/options.rb, app/run.rb, bin/trepan, data/irbrc,
282
+ interface/user.rb, lib/rbdbgr.rb, lib/trepanning.rb,
283
+ processor/command/base/submgr.rb,
284
+ processor/command/base/subsubmgr.rb, processor/command/delete.rb,
285
+ processor/command/disable.rb,
286
+ processor/command/info_subcmd/registers_subcmd/lfp.rb,
287
+ processor/command/info_subcmd/registers_subcmd/pc.rb,
288
+ processor/command/info_subcmd/registers_subcmd/sp.rb,
289
+ processor/command/irb.rb, processor/command/macro.rb,
290
+ processor/command/reload.rb, processor/command/save.rb,
291
+ processor/command/set_subcmd/auto.rb,
292
+ processor/command/set_subcmd/auto_subcmd/eval.rb,
293
+ processor/command/set_subcmd/auto_subcmd/irb.rb,
294
+ processor/command/set_subcmd/auto_subcmd/list.rb,
295
+ processor/command/set_subcmd/basename.rb,
296
+ processor/command/set_subcmd/debug.rb,
297
+ processor/command/set_subcmd/debug_subcmd/dbgr.rb,
298
+ processor/command/set_subcmd/debug_subcmd/macro.rb,
299
+ processor/command/set_subcmd/debug_subcmd/skip.rb,
300
+ processor/command/set_subcmd/debug_subcmd/stack.rb,
301
+ processor/command/set_subcmd/max.rb,
302
+ processor/command/set_subcmd/max_subcmd/stack.rb,
303
+ processor/command/set_subcmd/substitute.rb,
304
+ processor/command/set_subcmd/substitute_subcmd/eval.rb,
305
+ processor/command/set_subcmd/substitute_subcmd/path.rb,
306
+ processor/command/set_subcmd/substitute_subcmd/string.rb,
307
+ processor/command/set_subcmd/timer.rb,
308
+ processor/command/set_subcmd/trace.rb,
309
+ processor/command/set_subcmd/trace_subcmd/buffer.rb,
310
+ processor/command/set_subcmd/trace_subcmd/print.rb,
311
+ processor/command/show_subcmd/auto.rb,
312
+ processor/command/show_subcmd/auto_subcmd/eval.rb,
313
+ processor/command/show_subcmd/auto_subcmd/list.rb,
314
+ processor/command/show_subcmd/debug.rb,
315
+ processor/command/show_subcmd/debug_subcmd/stack.rb,
316
+ processor/command/show_subcmd/max.rb,
317
+ processor/command/show_subcmd/max_subcmd/stack.rb,
318
+ processor/command/show_subcmd/max_subcmd/string.rb,
319
+ processor/command/show_subcmd/max_subcmd/width.rb,
320
+ processor/command/show_subcmd/trace_subcmd/buffer.rb,
321
+ processor/command/show_subcmd/trace_subcmd/print.rb,
322
+ processor/hook.rb, processor/main.rb, processor/mock.rb,
323
+ processor/validate.rb, test/functional/fn_helper.rb,
324
+ test/functional/test-debugger-call-bug.rb,
325
+ test/unit/test-app-brkpt.rb: require 'rbdbgr' -> require
326
+ 'trepanning'. Package name is now trepanning which is more
327
+ unambiguous than trepanation.
328
+
329
+ 2010-09-21 rocky <rockyb@rubyforge.org>
330
+
331
+ * .gemspec: I like "trepanation" better for the package name.
332
+
333
+ 2010-09-21 rocky <rockyb@rubyforge.org>
334
+
335
+ * .gemspec, README.textile, Rakefile, app/condition.rb,
336
+ app/core.rb, app/default.rb, app/disassemble.rb, app/frame.rb,
337
+ app/mock.rb, app/run.rb, app/thread.rb, app/util.rb, bin/rbdbgr,
338
+ bin/trepan, interface/base_intf.rb, interface/script.rb,
339
+ interface/user.rb, io/base_io.rb, io/input.rb, io/string_array.rb,
340
+ lib/rbdbgr.rb, processor/breakpoint.rb, processor/command/alias.rb,
341
+ processor/command/base/cmd.rb, processor/command/base/subcmd.rb,
342
+ processor/command/base/submgr.rb,
343
+ processor/command/base/subsubcmd.rb,
344
+ processor/command/base/subsubmgr.rb, processor/command/break.rb,
345
+ processor/command/condition.rb, processor/command/continue.rb,
346
+ processor/command/debug.rb, processor/command/delete.rb,
347
+ processor/command/disable.rb, processor/command/disassemble.rb,
348
+ processor/command/display.rb, processor/command/down.rb,
349
+ processor/command/enable.rb, processor/command/exit.rb,
350
+ processor/command/finish.rb, processor/command/frame.rb,
351
+ processor/command/help.rb, processor/command/info.rb,
352
+ processor/command/info_subcmd/args.rb,
353
+ processor/command/info_subcmd/break.rb,
354
+ processor/command/info_subcmd/file.rb,
355
+ processor/command/info_subcmd/frame.rb,
356
+ processor/command/info_subcmd/iseq.rb,
357
+ processor/command/info_subcmd/locals.rb,
358
+ processor/command/info_subcmd/program.rb,
359
+ processor/command/info_subcmd/registers.rb,
360
+ processor/command/info_subcmd/registers_subcmd/dfp.rb,
361
+ processor/command/info_subcmd/registers_subcmd/lfp.rb,
362
+ processor/command/info_subcmd/registers_subcmd/pc.rb,
363
+ processor/command/info_subcmd/registers_subcmd/sp.rb,
364
+ processor/command/info_subcmd/return.rb,
365
+ processor/command/info_subcmd/thread.rb, processor/command/irb.rb,
366
+ processor/command/kill.rb, processor/command/list.rb,
367
+ processor/command/macro.rb, processor/command/next.rb,
368
+ processor/command/nocache.rb, processor/command/print.rb,
369
+ processor/command/ps.rb, processor/command/quit.rb,
370
+ processor/command/raise.rb, processor/command/reload.rb,
371
+ processor/command/reload_subcmd/command.rb,
372
+ processor/command/restart.rb, processor/command/save.rb,
373
+ processor/command/set.rb, processor/command/set_subcmd/auto.rb,
374
+ processor/command/set_subcmd/auto_subcmd/eval.rb,
375
+ processor/command/set_subcmd/auto_subcmd/irb.rb,
376
+ processor/command/set_subcmd/auto_subcmd/list.rb,
377
+ processor/command/set_subcmd/basename.rb,
378
+ processor/command/set_subcmd/debug.rb,
379
+ processor/command/set_subcmd/debug_subcmd/dbgr.rb,
380
+ processor/command/set_subcmd/debug_subcmd/except.rb,
381
+ processor/command/set_subcmd/debug_subcmd/macro.rb,
382
+ processor/command/set_subcmd/debug_subcmd/skip.rb,
383
+ processor/command/set_subcmd/debug_subcmd/stack.rb,
384
+ processor/command/set_subcmd/different.rb,
385
+ processor/command/set_subcmd/events.rb,
386
+ processor/command/set_subcmd/max.rb,
387
+ processor/command/set_subcmd/max_subcmd/stack.rb,
388
+ processor/command/set_subcmd/max_subcmd/string.rb,
389
+ processor/command/set_subcmd/max_subcmd/width.rb,
390
+ processor/command/set_subcmd/return.rb,
391
+ processor/command/set_subcmd/sp.rb,
392
+ processor/command/set_subcmd/substitute.rb,
393
+ processor/command/set_subcmd/substitute_subcmd/eval.rb,
394
+ processor/command/set_subcmd/substitute_subcmd/path.rb,
395
+ processor/command/set_subcmd/substitute_subcmd/string.rb,
396
+ processor/command/set_subcmd/timer.rb,
397
+ processor/command/set_subcmd/trace.rb,
398
+ processor/command/set_subcmd/trace_subcmd/buffer.rb,
399
+ processor/command/set_subcmd/trace_subcmd/print.rb,
400
+ processor/command/set_subcmd/trace_subcmd/var.rb,
401
+ processor/command/show.rb, processor/command/show_subcmd/alias.rb,
402
+ processor/command/show_subcmd/args.rb,
403
+ processor/command/show_subcmd/auto.rb,
404
+ processor/command/show_subcmd/auto_subcmd/eval.rb,
405
+ processor/command/show_subcmd/auto_subcmd/irb.rb,
406
+ processor/command/show_subcmd/auto_subcmd/list.rb,
407
+ processor/command/show_subcmd/basename.rb,
408
+ processor/command/show_subcmd/debug.rb,
409
+ processor/command/show_subcmd/debug_subcmd/dbgr.rb,
410
+ processor/command/show_subcmd/debug_subcmd/except.rb,
411
+ processor/command/show_subcmd/debug_subcmd/macro.rb,
412
+ processor/command/show_subcmd/debug_subcmd/skip.rb,
413
+ processor/command/show_subcmd/debug_subcmd/stack.rb,
414
+ processor/command/show_subcmd/different.rb,
415
+ processor/command/show_subcmd/events.rb,
416
+ processor/command/show_subcmd/macro.rb,
417
+ processor/command/show_subcmd/max.rb,
418
+ processor/command/show_subcmd/max_subcmd/stack.rb,
419
+ processor/command/show_subcmd/max_subcmd/string.rb,
420
+ processor/command/show_subcmd/max_subcmd/width.rb,
421
+ processor/command/show_subcmd/trace.rb,
422
+ processor/command/show_subcmd/trace_subcmd/buffer.rb,
423
+ processor/command/show_subcmd/trace_subcmd/print.rb,
424
+ processor/command/source.rb, processor/command/step.rb,
425
+ processor/command/unalias.rb, processor/command/undisplay.rb,
426
+ processor/command/up.rb, processor/command/where.rb,
427
+ processor/default.rb, processor/display.rb, processor/eval.rb,
428
+ processor/eventbuf.rb, processor/frame.rb, processor/help.rb,
429
+ processor/hook.rb, processor/load_cmds.rb, processor/location.rb,
430
+ processor/main.rb, processor/mock.rb, processor/msg.rb,
431
+ processor/running.rb, processor/subcmd.rb, processor/validate.rb,
432
+ test/functional/fn_helper.rb,
433
+ test/functional/test-debugger-call-bug.rb,
434
+ test/integration/helper.rb, test/unit/cmd-helper.rb,
435
+ test/unit/test-app-disassemble.rb, test/unit/test-app-frame.rb,
436
+ test/unit/test-app-thread.rb, test/unit/test-app-util.rb,
437
+ test/unit/test-base-subcmd.rb, test/unit/test-bin-rbdbgr.rb,
438
+ test/unit/test-intf-user.rb, test/unit/test-io-input.rb,
439
+ test/unit/test-proc-eval.rb, test/unit/test-proc-frame.rb,
440
+ test/unit/test-proc-help.rb, test/unit/test-proc-hook.rb,
441
+ test/unit/test-proc-load_cmds.rb, test/unit/test-proc-main.rb,
442
+ test/unit/test-proc-validate.rb, test/unit/test-subcmd-help.rb:
443
+ Debugger -> Trepan. bin/rbdbgr -> bin/trepan. Package name is now
444
+ trepan. Hmm. may change the package name soon. There are still many
445
+ other reminants of rbdbgr. All in due time...
446
+
447
+ 2010-09-21 rocky <rockyb@rubyforge.org>
448
+
449
+ * Makefile, app/Makefile, lib/Makefile: Makefiles were a little off.
450
+
451
+
452
+ 2010-09-21 rocky <rockyb@rubyforge.org>
453
+
454
+ * .gemspec, ChangeLog, Rakefile, lib/rbdbgr.rb: Add .gemspec and
455
+ remove that from Rakefile. Add targets to make doc.
456
+
457
+ 2010-09-18 rocky <rockyb@rubyforge.org>
458
+
459
+ * interface/base_intf.rb, test/functional/test-raise.rb: Set error
460
+ message prefix again -- compromize by taking bashdb, zshdb, kshdb's
461
+ prefix
462
+
463
+ 2010-09-18 rocky <rockyb@rubyforge.org>
464
+
465
+ * interface/base_intf.rb, test/functional/test-raise.rb: Set error
466
+ message prefix like rubinius' prefix
467
+
468
+ 2010-09-18 rocky <rockyb@rubyforge.org>
469
+
470
+ * ChangeLog, interface/base_intf.rb: Expand errmsg to start each
471
+ line with "prefix" param and allow str to be an Array (of String)
472
+
473
+ 2010-09-17 rocky <rockyb@rubyforge.org>
474
+
475
+ * processor/command/kill.rb: See above
476
+
477
+ 2010-09-17 rocky <rockyb@rubyforge.org>
478
+
479
+ * processor/command/kill.rb: See before.
480
+
481
+ 2010-09-17 rocky <rockyb@rubyforge.org>
482
+
483
+ * processor/command/kill.rb: Help string correction. (Remove
484
+ remnants of the days when this was Python.)
485
+
486
+ 2010-09-17 rocky <rockyb@rubyforge.org>
487
+
488
+ * README.textile: Small tweaks in README.textile
489
+
490
+ 2010-09-17 rocky <rockyb@rubyforge.org>
491
+
492
+ * README.textile: Revise to add google group and for 1.9.2 (as
493
+ opposed to 1.9).
494
+
495
+ 2010-09-16 rocky <rockyb@rubyforge.org>
496
+
497
+ * ChangeLog, Rakefile: Add dependency for diff-lcs
498
+
499
+ 2010-09-16 rocky <rockyb@rubyforge.org>
500
+
501
+ * Rakefile: Update version. gemcutter doesn't allow repushing with
502
+ same version.
503
+
504
+ 2010-09-16 rocky <rockyb@rubyforge.org>
505
+
506
+ * ChangeLog, Rakefile: Need a dependency on columnize
507
+
508
+ 2010-09-13 rocky <rockyb@rubyforge.org>
509
+
510
+ * ChangeLog, Rakefile: Include NEWS in package.
511
+
512
+ 2010-09-13 rocky <rockyb@rubyforge.org>
513
+
514
+ * ChangeLog, Rakefile: Include tests in package.
515
+
516
+ 2010-09-13 rocky <rockyb@rubyforge.org>
517
+
518
+ * data/irbrc: One more file
519
+
520
+ 2010-09-13 rocky <rockyb@rubyforge.org>
521
+
522
+ * LICENSE, NEWS, Rakefile, app/brkpt.rb, app/brkptmgr.rb,
523
+ app/condition.rb, app/core.rb, app/default.rb, app/disassemble.rb,
524
+ app/display.rb, app/file.rb, app/frame.rb, app/irb.rb, app/mock.rb,
525
+ app/options.rb, app/run.rb, app/thread.rb, app/util.rb, bin/rbdbgr,
526
+ interface/base_intf.rb, interface/script.rb, interface/user.rb,
527
+ io/base_io.rb, io/input.rb, io/string_array.rb, lib/rbdbgr.rb,
528
+ processor/breakpoint.rb, processor/command/alias.rb,
529
+ processor/command/base/cmd.rb, processor/command/base/subcmd.rb,
530
+ processor/command/base/submgr.rb,
531
+ processor/command/base/subsubcmd.rb,
532
+ processor/command/base/subsubmgr.rb, processor/command/break.rb,
533
+ processor/command/condition.rb, processor/command/continue.rb,
534
+ processor/command/debug.rb, processor/command/delete.rb,
535
+ processor/command/disable.rb, processor/command/disassemble.rb,
536
+ processor/command/display.rb, processor/command/down.rb,
537
+ processor/command/enable.rb, processor/command/exit.rb,
538
+ processor/command/finish.rb, processor/command/frame.rb,
539
+ processor/command/help.rb, processor/command/info.rb,
540
+ processor/command/info_subcmd/args.rb,
541
+ processor/command/info_subcmd/break.rb,
542
+ processor/command/info_subcmd/file.rb,
543
+ processor/command/info_subcmd/frame.rb,
544
+ processor/command/info_subcmd/iseq.rb,
545
+ processor/command/info_subcmd/locals.rb,
546
+ processor/command/info_subcmd/program.rb,
547
+ processor/command/info_subcmd/registers.rb,
548
+ processor/command/info_subcmd/registers_subcmd/dfp.rb,
549
+ processor/command/info_subcmd/registers_subcmd/helper.rb,
550
+ processor/command/info_subcmd/registers_subcmd/lfp.rb,
551
+ processor/command/info_subcmd/registers_subcmd/pc.rb,
552
+ processor/command/info_subcmd/registers_subcmd/sp.rb,
553
+ processor/command/info_subcmd/return.rb,
554
+ processor/command/info_subcmd/thread.rb, processor/command/irb.rb,
555
+ processor/command/kill.rb, processor/command/list.rb,
556
+ processor/command/macro.rb, processor/command/next.rb,
557
+ processor/command/nocache.rb, processor/command/print.rb,
558
+ processor/command/ps.rb, processor/command/quit.rb,
559
+ processor/command/raise.rb, processor/command/reload.rb,
560
+ processor/command/reload_subcmd/command.rb,
561
+ processor/command/restart.rb, processor/command/save.rb,
562
+ processor/command/set.rb, processor/command/set_subcmd/auto.rb,
563
+ processor/command/set_subcmd/auto_subcmd/eval.rb,
564
+ processor/command/set_subcmd/auto_subcmd/irb.rb,
565
+ processor/command/set_subcmd/auto_subcmd/list.rb,
566
+ processor/command/set_subcmd/basename.rb,
567
+ processor/command/set_subcmd/debug.rb,
568
+ processor/command/set_subcmd/debug_subcmd/dbgr.rb,
569
+ processor/command/set_subcmd/debug_subcmd/except.rb,
570
+ processor/command/set_subcmd/debug_subcmd/macro.rb,
571
+ processor/command/set_subcmd/debug_subcmd/skip.rb,
572
+ processor/command/set_subcmd/debug_subcmd/stack.rb,
573
+ processor/command/set_subcmd/different.rb,
574
+ processor/command/set_subcmd/events.rb,
575
+ processor/command/set_subcmd/max.rb,
576
+ processor/command/set_subcmd/max_subcmd/stack.rb,
577
+ processor/command/set_subcmd/max_subcmd/string.rb,
578
+ processor/command/set_subcmd/max_subcmd/width.rb,
579
+ processor/command/set_subcmd/return.rb,
580
+ processor/command/set_subcmd/sp.rb,
581
+ processor/command/set_subcmd/substitute.rb,
582
+ processor/command/set_subcmd/substitute_subcmd/eval.rb,
583
+ processor/command/set_subcmd/substitute_subcmd/path.rb,
584
+ processor/command/set_subcmd/substitute_subcmd/string.rb,
585
+ processor/command/set_subcmd/timer.rb,
586
+ processor/command/set_subcmd/trace.rb,
587
+ processor/command/set_subcmd/trace_subcmd/buffer.rb,
588
+ processor/command/set_subcmd/trace_subcmd/print.rb,
589
+ processor/command/set_subcmd/trace_subcmd/var.rb,
590
+ processor/command/show.rb, processor/command/show_subcmd/alias.rb,
591
+ processor/command/show_subcmd/args.rb,
592
+ processor/command/show_subcmd/auto.rb,
593
+ processor/command/show_subcmd/auto_subcmd/eval.rb,
594
+ processor/command/show_subcmd/auto_subcmd/irb.rb,
595
+ processor/command/show_subcmd/auto_subcmd/list.rb,
596
+ processor/command/show_subcmd/basename.rb,
597
+ processor/command/show_subcmd/debug.rb,
598
+ processor/command/show_subcmd/debug_subcmd/dbgr.rb,
599
+ processor/command/show_subcmd/debug_subcmd/except.rb,
600
+ processor/command/show_subcmd/debug_subcmd/macro.rb,
601
+ processor/command/show_subcmd/debug_subcmd/skip.rb,
602
+ processor/command/show_subcmd/debug_subcmd/stack.rb,
603
+ processor/command/show_subcmd/different.rb,
604
+ processor/command/show_subcmd/events.rb,
605
+ processor/command/show_subcmd/macro.rb,
606
+ processor/command/show_subcmd/max.rb,
607
+ processor/command/show_subcmd/max_subcmd/stack.rb,
608
+ processor/command/show_subcmd/max_subcmd/string.rb,
609
+ processor/command/show_subcmd/max_subcmd/width.rb,
610
+ processor/command/show_subcmd/trace.rb,
611
+ processor/command/show_subcmd/trace_subcmd/buffer.rb,
612
+ processor/command/show_subcmd/trace_subcmd/print.rb,
613
+ processor/command/source.rb, processor/command/step.rb,
614
+ processor/command/unalias.rb, processor/command/undisplay.rb,
615
+ processor/command/up.rb, processor/command/where.rb,
616
+ processor/default.rb, processor/display.rb, processor/eval.rb,
617
+ processor/eventbuf.rb, processor/frame.rb, processor/help.rb,
618
+ processor/hook.rb, processor/load_cmds.rb, processor/location.rb,
619
+ processor/main.rb, processor/mock.rb, processor/msg.rb,
620
+ processor/running.rb, processor/subcmd.rb, processor/validate.rb,
621
+ test/data/enable.cmd, test/data/enable.right: Get ready for first
622
+ public (gemcutter) release. Add copyright, news, and license.
623
+
624
+ 2010-08-23 R. Bernstein <rocky@gnu.org>
625
+
626
+ * processor/command/info_subcmd/registers_subcmd/sp.rb: Workaround
627
+ frame wrongness.
628
+
629
+ 2010-08-22 rocky <rockyb@rubyforge.org>
630
+
631
+ * processor/command/info_subcmd/registers_subcmd/sp.rb: Off by one
632
+ in listing all SP regs.
633
+
634
+ 2010-08-22 rocky <rockyb@rubyforge.org>
635
+
636
+ * processor/command/delete.rb: delete.rb: help doc typo
637
+
638
+ 2010-08-21 rocky <rockyb@rubyforge.org>
639
+
640
+ * processor/command/info_subcmd/registers.rb: Update help for "info
641
+ registers"
642
+
643
+ 2010-08-21 rocky <rockyb@rubyforge.org>
644
+
645
+ * processor/command/info_subcmd/registers_subcmd/sp.rb,
646
+ processor/command/macro.rb: sp.rb: run() Make use fo new
647
+ Threadframe#sp_size. SIZE lists number of entries in stack; we now
648
+ check for accessing outside of the range, No args lists all stack
649
+ entries. macro.rb: Tidy "macro defined" message.
650
+
651
+ 2010-08-20 R. Bernstein <rocky@gnu.org>
652
+
653
+ Merge branch 'master' of github.com:rocky/rbdbgr
654
+
655
+ 2010-08-20 R. Bernstein <rocky@gnu.org>
656
+
657
+ * lib/rbdbgr.rb: debugger(): exec_event_tracing no longer exists and
658
+ frame.trace_off is better.
659
+
660
+ 2010-08-11 rocky <rockyb@rubyforge.org>
661
+
662
+ * processor/command/finish.rb: finish run: warn when we to try to
663
+ finish when you are at that return. This is a no-op.
664
+
665
+ 2010-08-11 R. Bernstein <rocky@gnu.org>
666
+
667
+ * app/display.rb, processor/command/display.rb:
668
+ processor/command/display.rb: show initial value when setting
669
+ display - gdb does. app/display.rb: DRY code a little.
670
+
671
+ 2010-08-11 R. Bernstein <rocky@gnu.org>
672
+
673
+ * processor/running.rb: Try out new high-speed (frame-marked)
674
+ "finish" command.
675
+
676
+ 2010-08-08 rocky <rockyb@rubyforge.org>
677
+
678
+ * Rakefile, app/run.rb, test/unit/test-bin-rbdbgr.rb: Config ->
679
+ RbConfig
680
+
681
+ 2010-07-20 rocky <rockyb@rubyforge.org>
682
+
683
+ * processor/command/base/subsubcmd.rb, processor/command/irb.rb,
684
+ processor/main.rb, test/integration/test-fname-with-blank.rb,
685
+ test/integration/test-quit.rb: Remove some "rake test" warnings and
686
+ update some comments.
687
+
688
+ 2010-07-06 rocky <rockyb@rubyforge.org>
689
+
690
+ Merge branch 'master' of github.com:rocky/rbdbgr
691
+
692
+ 2010-07-06 rocky <rockyb@rubyforge.org>
693
+
694
+ * processor/command/frame.rb: 'frame' command help tweak.
695
+
696
+ 2010-06-20 rocky <rockyb@rubyforge.org>
697
+
698
+ Merge branch 'master' of github.com:rocky/rbdbgr
699
+
700
+ 2010-06-20 rocky <rockyb@rubyforge.org>
701
+
702
+ * app/disassemble.rb,
703
+ processor/command/set_subcmd/substitute_subcmd/string.rb,
704
+ test/unit/test-app-disassemble.rb: string.rb: help doc correction
705
+ *disasemble.rb: One more unit test. Tidy demo output.
706
+
707
+ 2010-06-10 rocky <rockyb@rubyforge.org>
708
+
709
+ * README.textile: Typo
710
+
711
+ 2010-06-10 rocky <rockyb@rubyforge.org>
712
+
713
+ * README.textile: Correct how to install.
714
+
715
+ 2010-05-26 rocky <rockyb@rubyforge.org>
716
+
717
+ * processor/running.rb: Possibly a better fix. Avoiding only
718
+ handling *line* events after breakpoints at the same location.
719
+
720
+ 2010-05-26 rocky <rockyb@rubyforge.org>
721
+
722
+ * processor/main.rb, processor/running.rb,
723
+ test/functional/test-break.rb: Don't stop at same location after a
724
+ breakpoint.
725
+
726
+ 2010-05-25 rocky <rockyb@rubyforge.org>
727
+
728
+ * app/frame.rb, processor/command/where.rb: Split stack trace "at
729
+ line" if it is long. Possibly should do the same for "in file" as
730
+ well. This keeps the line number from being truncated.
731
+
732
+ 2010-05-25 rocky <rockyb@rubyforge.org>
733
+
734
+ * app/irb.rb, processor/command/irb.rb, processor/command/print.rb,
735
+ processor/command/ps.rb: Add debugger ps (print sorted array)
736
+ command. Add "finish" command to IRB.
737
+
738
+ 2010-05-22 rocky <rockyb@rubyforge.org>
739
+
740
+ * processor/validate.rb: Still have bug in stopping at offset 0. So
741
+ use next one.
742
+
743
+ 2010-05-20 rocky <rockyb@rubyforge.org>
744
+
745
+ * processor/command/alias.rb,
746
+ processor/command/show_subcmd/alias.rb: Add debugger "alias"
747
+ command.
748
+
749
+ 2010-05-20 rocky <rockyb@rubyforge.org>
750
+
751
+ * processor/command/unalias.rb, processor/command/up.rb: Add unalias
752
+ command.
753
+
754
+ 2010-05-19 rocky <rockyb@rubyforge.org>
755
+
756
+ * app/condition.rb, processor/command/condition.rb,
757
+ processor/command/step.rb, processor/frame.rb,
758
+ processor/validate.rb: Work on thread support. validate.rb: don't
759
+ show the frames of the event processor of non-current threads
760
+ step.rb add "step thread" to step within the thread.
761
+ app/condition.rb: Rbdbgr -> Debugger::Conditon module.
762
+
763
+ 2010-05-19 rocky <rockyb@rubyforge.org>
764
+
765
+ * app/frame.rb, interface/script.rb: frame.rb: don't try to show
766
+ method when there is none.
767
+
768
+ 2010-05-16 rocky <rockyb@rubyforge.org>
769
+
770
+ * processor/command/macro.rb: macro help update.
771
+
772
+ 2010-05-16 rocky <rockyb@rubyforge.org>
773
+
774
+ * processor/command/frame.rb,
775
+ processor/command/info_subcmd/thread.rb, processor/frame.rb,
776
+ processor/validate.rb: Work on showing and switching thread frames.
777
+
778
+
779
+ 2010-05-15 rocky <rockyb@rubyforge.org>
780
+
781
+ * processor/command/debug.rb: No need to fiddle with prompt in
782
+ (nested) "debug" command
783
+
784
+ 2010-05-15 rocky <rockyb@rubyforge.org>
785
+
786
+ Merge branch 'master' of github.com:rocky/rbdbgr
787
+
788
+ 2010-05-15 rocky <rockyb@rubyforge.org>
789
+
790
+ * processor/command/show_subcmd/trace_subcmd/buffer.rb: Setting name
791
+ was renamed a while ago. Didn't catch this then.
792
+
793
+ 2010-05-14 rocky <rockyb@rubyforge.org>
794
+
795
+ * lib/rbdbgr.rb: Make rbdbgr identical to Debugger.debug
796
+
797
+ 2010-05-14 rocky <rockyb@rubyforge.org>
798
+
799
+ * lib/rbdbgr.rb, processor/default.rb,
800
+ test/functional/test-immediate-step-bug.rb: Add Kernel#rbdbgr as a
801
+ simple way to call the debugger. More trace disabling inside
802
+ debugger code. max stack default set back to 10 (from 16).
803
+
804
+ 2010-05-13 R. Bernstein <rockyb@rubyforge.org>
805
+
806
+ * app/frame.rb, app/util.rb, lib/rbdbgr.rb,
807
+ processor/command/base/subsubmgr.rb,
808
+ processor/command/set_subcmd/max.rb, test/unit/test-app-util.rb:
809
+ Debugging in rails now works - tested only with rails 2 and mongrel.
810
+ Turn off tracing in debugger setup (new, debugger) until better
811
+ solutions are implemented. Some stray debug statements a minor bug
812
+ fixes, e.g. "set max stack" was printing 2 times as many entries.
813
+
814
+ 2010-05-11 rocky <rockyb@rubyforge.org>
815
+
816
+ * Rakefile, test/unit/test-app-brkpt.rb: Work around weird unit test
817
+ bug until I figure what's going on.
818
+
819
+ 2010-05-10 R. Bernstein <rockyb@rubyforge.org>
820
+
821
+ * app/frame.rb, app/thread.rb,
822
+ processor/command/info_subcmd/thread.rb,
823
+ test/unit/test-app-brkpt.rb, test/unit/test-app-brkptmgr.rb,
824
+ test/unit/test-app-disassemble.rb, test/unit/test-app-frame.rb,
825
+ test/unit/test-app-thread.rb: Work on "info thread <num>". More in
826
+ needed. Also one breakpoint test fails probably in conjunction with
827
+ changes after Ruby SVN 27660 and 27690.
828
+
829
+ 2010-05-10 R. Bernstein <rockyb@rubyforge.org>
830
+
831
+ * processor/command/info_subcmd/thread.rb, test/example/thread1.rb:
832
+ Add "main thread" designation to "info thread"
833
+
834
+ 2010-05-09 rocky <rockyb@rubyforge.org>
835
+
836
+ * test/functional/.gitignore,
837
+ test/functional/test-debugger-call-bug.rb,
838
+ test/functional/test-immediate-step-bug.rb: Bug fixes for
839
+ mydbgr.debugger(:immediate => true)
840
+
841
+ 2010-05-08 rocky <rockyb@rubyforge.org>
842
+
843
+ * app/file.rb: Update comment.
844
+
845
+ 2010-05-08 rocky <rockyb@rubyforge.org>
846
+
847
+ * app/core.rb, app/file.rb, interface/user.rb, lib/rbdbgr.rb,
848
+ processor/command/set_subcmd/debug_subcmd/stack.rb,
849
+ processor/validate.rb, test/functional/test-debugger-call-bug.rb:
850
+ One of several bugs keeping Debugger#debugger from working more than
851
+ the first time. More fixes to follow. debug_subcmd/stack.rb:
852
+ Setting wrong instance variable interface/user.rb, app/core.rb: move
853
+ finalize from user to Debugger where we can make sure we've turned
854
+ of tracing beforehand. validate: we are getting into a recursive
855
+ trace when removing debugger iseqs. Omit until we figure out a
856
+ better fix. app/file.rb: guard against adding to ISEQ__ hash while
857
+ enumerating over it.
858
+
859
+ 2010-05-07 rocky <rockyb@rubyforge.org>
860
+
861
+ * processor/command/set_subcmd/debug_subcmd/dbgr.rb,
862
+ processor/default.rb, processor/hook.rb: Set debug dbgr
863
+ improvements.
864
+
865
+ 2010-05-07 R. Bernstein <rockyb@rubyforge.org>
866
+
867
+ Merge branch 'master' of github.com:rocky/rbdbgr
868
+
869
+ 2010-05-07 rocky <rockyb@rubyforge.org>
870
+
871
+ * app/core.rb: Small cleanups.
872
+
873
+ 2010-05-07 rocky <rockyb@rubyforge.org>
874
+
875
+ * processor/command/info_subcmd/thread.rb, processor/location.rb:
876
+ location.rb: break out pieces of print_location into separate
877
+ functions thread.rb: show source location info for each thread.
878
+
879
+ 2010-05-06 rocky <rockyb@rubyforge.org>
880
+
881
+ * processor/command/info_subcmd/program.rb,
882
+ processor/command/info_subcmd/thread.rb, processor/location.rb:
883
+ Start "info thread".
884
+
885
+ 2010-05-06 rocky <rockyb@rubyforge.org>
886
+
887
+ * processor/default.rb, processor/main.rb, processor/msg.rb,
888
+ test/unit/test-proc-main.rb: revise prompt to show thread if more
889
+ than one.
890
+
891
+ 2010-05-05 rocky <rockyb@rubyforge.org>
892
+
893
+ * app/frame.rb, processor/frame.rb: Defensive programming. Errors
894
+ seeing in debugging running rails2 app with Webbrick.
895
+
896
+ 2010-05-05 rocky <rockyb@rubyforge.org>
897
+
898
+ * processor/command/restart.rb, processor/command/save.rb,
899
+ processor/default.rb, processor/load_cmds.rb,
900
+ test/unit/test-proc-load_cmds.rb: "restart" command now saves
901
+ settings.
902
+
903
+ 2010-05-05 rocky <rockyb@rubyforge.org>
904
+
905
+ * app/default.rb, app/options.rb, lib/rbdbgr.rb,
906
+ processor/command/base/subcmd.rb,
907
+ processor/command/base/subsubcmd.rb, processor/command/save.rb,
908
+ processor/command/set_subcmd/basename.rb,
909
+ processor/command/set_subcmd/different.rb,
910
+ processor/command/set_subcmd/max_subcmd/width.rb, processor/main.rb:
911
+ save command now writes to file. More work on restoring debugger
912
+ settings. Various related bugs in recent changes fixed.
913
+
914
+ 2010-05-05 rocky <rockyb@rubyforge.org>
915
+
916
+ * processor/command/help.rb, processor/command/macro.rb,
917
+ processor/command/show_subcmd/alias.rb,
918
+ processor/command/show_subcmd/args.rb,
919
+ processor/command/show_subcmd/auto.rb,
920
+ processor/command/show_subcmd/basename.rb,
921
+ processor/command/show_subcmd/different.rb,
922
+ processor/command/show_subcmd/macro.rb,
923
+ processor/command/show_subcmd/max.rb: Show individual aliases and
924
+ macros via debugger commands "show {alias|macro} name..." .
925
+
926
+ 2010-05-05 rocky <rockyb@rubyforge.org>
927
+
928
+ * processor/command/show_subcmd/alias.rb,
929
+ processor/command/show_subcmd/macro.rb: Add a way to show aliases
930
+ and macros. Rudimentary. More will eventually follow.
931
+
932
+ 2010-05-05 rocky <rockyb@rubyforge.org>
933
+
934
+ * app/core.rb, processor/command/base/subcmd.rb,
935
+ processor/command/base/subsubcmd.rb,
936
+ processor/command/info_subcmd/break.rb, processor/command/save.rb,
937
+ processor/command/set_subcmd/auto_subcmd/eval.rb,
938
+ processor/command/set_subcmd/auto_subcmd/irb.rb,
939
+ processor/command/set_subcmd/auto_subcmd/list.rb,
940
+ processor/command/set_subcmd/basename.rb,
941
+ processor/command/set_subcmd/debug_subcmd/dbgr.rb,
942
+ processor/command/set_subcmd/different.rb,
943
+ processor/command/set_subcmd/events.rb,
944
+ processor/command/set_subcmd/max_subcmd/stack.rb,
945
+ processor/command/set_subcmd/max_subcmd/string.rb,
946
+ processor/command/set_subcmd/max_subcmd/width.rb,
947
+ processor/command/set_subcmd/trace_subcmd/buffer.rb,
948
+ processor/command/set_subcmd/trace_subcmd/print.rb,
949
+ processor/command/show_subcmd/events.rb: restore_command ->
950
+ save_command.
951
+
952
+ 2010-05-04 rocky <rockyb@rubyforge.org>
953
+
954
+ * processor/command/macro.rb, processor/command/save.rb,
955
+ processor/command/set_subcmd/debug_subcmd/macro.rb,
956
+ processor/command/show_subcmd/debug_subcmd/dbgr.rb,
957
+ processor/command/show_subcmd/debug_subcmd/macro.rb,
958
+ processor/command/show_subcmd/debug_subcmd/stack.rb,
959
+ processor/default.rb, processor/main.rb,
960
+ test/unit/test-base-subcmd.rb: More work on macros. Check validity
961
+ of expansion result. Add macro expansion debugging.
962
+
963
+ 2010-05-04 rocky <rockyb@rubyforge.org>
964
+
965
+ * processor/command/set_subcmd/auto_subcmd/irb.rb,
966
+ processor/command/set_subcmd/basename.rb,
967
+ processor/command/set_subcmd/different.rb,
968
+ processor/command/set_subcmd/events.rb,
969
+ processor/command/set_subcmd/return.rb,
970
+ processor/command/set_subcmd/sp.rb,
971
+ processor/command/set_subcmd/trace_subcmd/buffer.rb,
972
+ processor/command/set_subcmd/trace_subcmd/print.rb,
973
+ processor/command/show_subcmd/args.rb,
974
+ processor/command/show_subcmd/events.rb,
975
+ test/unit/test-base-subcmd.rb: Add PREFIX to all subcommands. Test
976
+ to see that we don't mess up again.
977
+
978
+ 2010-05-04 rocky <rockyb@rubyforge.org>
979
+
980
+ * processor/command/set_subcmd/max_subcmd/stack.rb: One more file.
981
+
982
+ 2010-05-04 rocky <rockyb@rubyforge.org>
983
+
984
+ * app/frame.rb, processor/command/base/subcmd.rb,
985
+ processor/command/irb.rb, processor/command/set_subcmd/btlimit.rb,
986
+ processor/command/set_subcmd/max_subcmd/string.rb,
987
+ processor/command/show_subcmd/btlimit.rb,
988
+ processor/command/show_subcmd/max_subcmd/stack.rb,
989
+ processor/command/where.rb, processor/default.rb: set/show btlimit
990
+ -> set/show max stack.
991
+
992
+ 2010-05-04 rocky <rockyb@rubyforge.org>
993
+
994
+ * processor/command/base/cmd.rb, processor/command/help.rb,
995
+ processor/command/info_subcmd/locals.rb,
996
+ processor/command/macro.rb, processor/command/print.rb,
997
+ processor/command/set_subcmd/max.rb,
998
+ processor/command/set_subcmd/max_subcmd/string.rb,
999
+ processor/command/set_subcmd/max_subcmd/width.rb,
1000
+ processor/command/set_subcmd/maximum.rb,
1001
+ processor/command/set_subcmd/maximum_subcmd/string.rb,
1002
+ processor/command/set_subcmd/maximum_subcmd/width.rb,
1003
+ processor/command/show_subcmd/max.rb,
1004
+ processor/command/show_subcmd/max_subcmd/.gitignore,
1005
+ processor/command/show_subcmd/max_subcmd/string.rb,
1006
+ processor/command/show_subcmd/max_subcmd/width.rb,
1007
+ processor/command/show_subcmd/maximum_subcmd/string.rb,
1008
+ processor/command/show_subcmd/trace_subcmd/.gitignore,
1009
+ processor/default.rb, processor/msg.rb,
1010
+ test/unit/test-base-subcmd.rb: maximum -> max in "set/show max ..."
1011
+ and default settings and so on.
1012
+
1013
+ 2010-05-04 rocky <rockyb@rubyforge.org>
1014
+
1015
+ * processor/command/base/subcmd.rb,
1016
+ processor/command/base/subsubcmd.rb,
1017
+ processor/command/set_subcmd/basename.rb,
1018
+ processor/command/set_subcmd/different.rb,
1019
+ processor/command/show_subcmd/auto_subcmd/eval.rb,
1020
+ processor/command/show_subcmd/basename.rb,
1021
+ processor/command/show_subcmd/different.rb,
1022
+ processor/command/show_subcmd/maximum_subcmd/string.rb,
1023
+ processor/command/show_subcmd/maxstring.rb,
1024
+ processor/command/show_subcmd/width.rb: show maxstring -> show
1025
+ max[imum] string; show width -> show max[imum] width Still need to
1026
+ convert btlimit.
1027
+
1028
+ 2010-05-04 rocky <rockyb@rubyforge.org>
1029
+
1030
+ * processor/command/set_subcmd/maximum_subcmd/string.rb: One more
1031
+ file.
1032
+
1033
+ 2010-05-04 rocky <rockyb@rubyforge.org>
1034
+
1035
+ * processor/command/base/cmd.rb, processor/command/base/subcmd.rb,
1036
+ processor/command/help.rb, processor/command/info_subcmd/locals.rb,
1037
+ processor/command/macro.rb, processor/command/print.rb,
1038
+ processor/command/set_subcmd/auto_subcmd/eval.rb,
1039
+ processor/command/set_subcmd/maximum.rb,
1040
+ processor/command/set_subcmd/maximum_subcmd/width.rb,
1041
+ processor/command/set_subcmd/maxstring.rb,
1042
+ processor/command/set_subcmd/width.rb,
1043
+ processor/command/show_subcmd/trace_subcmd/buffer.rb,
1044
+ processor/default.rb, processor/msg.rb,
1045
+ test/unit/test-base-subcmd.rb: set maxstring -> set max[imum]
1046
+ string. set width -> set max width. Still need to handle show.
1047
+
1048
+ 2010-05-03 rocky <rockyb@rubyforge.org>
1049
+
1050
+ * app/frame.rb, processor/command/debug.rb, processor/eval.rb,
1051
+ processor/main.rb: app/frame.rb: Remove crud from eval string.
1052
+ command/debug.rb: Show debug nesting in debugger prompt
1053
+ processor/eval.rb: DRY code a little and fix eval bug.
1054
+
1055
+ 2010-05-03 rocky <rockyb@rubyforge.org>
1056
+
1057
+ * processor/command/base/subcmd.rb,
1058
+ processor/command/base/subsubcmd.rb,
1059
+ processor/command/info_subcmd/break.rb,
1060
+ processor/command/set_subcmd/auto_subcmd/eval.rb: Start breakpoint
1061
+ save command. Need to rename "restore_command" to something else.
1062
+
1063
+ 2010-05-03 rocky <rockyb@rubyforge.org>
1064
+
1065
+ * processor/command/base/subcmd.rb,
1066
+ processor/command/base/subsubcmd.rb,
1067
+ processor/command/set_subcmd/auto_subcmd/eval.rb,
1068
+ processor/command/set_subcmd/auto_subcmd/list.rb,
1069
+ processor/command/set_subcmd/debug_subcmd/dbgr.rb,
1070
+ processor/command/set_subcmd/maxstring.rb,
1071
+ processor/command/set_subcmd/width.rb: Some commands now report
1072
+ strings to set their current value. In prepration for save/restore
1073
+ across debugger reset.
1074
+
1075
+ 2010-05-03 rocky <rockyb@rubyforge.org>
1076
+
1077
+ * app/core.rb, processor/command/debug.rb, processor/main.rb:
1078
+ core.rb: add mutex to ensure we don't switch threads while
1079
+ debugging. debug.rb: hide setup code into the debugger. main.rb:
1080
+ don't debug into hidden frames
1081
+
1082
+ 2010-04-29 rocky <rockyb@rubyforge.org>
1083
+
1084
+ * processor/command/set_subcmd/substitute_subcmd/string.rb: Better
1085
+ help text for "set substitute string".
1086
+
1087
+ 2010-04-28 rocky <rockyb@rubyforge.org>
1088
+
1089
+ * processor/main.rb, processor/running.rb: Fix bug in duplicate stop
1090
+ after a breakpoint
1091
+
1092
+ 2010-04-28 rocky <rockyb@rubyforge.org>
1093
+
1094
+ * processor/eventbuf.rb: Show trace information with less redundancy
1095
+ but more info.
1096
+
1097
+ 2010-04-26 rocky <rockyb@rubyforge.org>
1098
+
1099
+ * app/run.rb, processor/frame.rb: Better fix than previous one
1100
+
1101
+ 2010-04-26 rocky <rockyb@rubyforge.org>
1102
+
1103
+ * app/run.rb: Do better about hiding outer rbdbgr frames
1104
+
1105
+ 2010-04-26 rocky <rockyb@rubyforge.org>
1106
+
1107
+ * processor/command/macro.rb, processor/command/restart.rb,
1108
+ processor/command/set.rb, processor/load_cmds.rb, processor/main.rb:
1109
+ Start adding debugger macros. Simple powerful and crude, but it's
1110
+ along the right direction.
1111
+
1112
+ 2010-04-26 rocky <rockyb@rubyforge.org>
1113
+
1114
+ * processor/command/print.rb, processor/main.rb: print.rb: now
1115
+ preserves spacing given in command main.rb: now captures command
1116
+ before aliasing (and later macro expansion) as well as string of
1117
+ first token given and remaining string after first token. Handling
1118
+ macros is where we are going with this.
1119
+
1120
+ 2010-04-25 rocky <rockyb@rubyforge.org>
1121
+
1122
+ * Rakefile: User needs to use "sudo rake install" when needed.
1123
+
1124
+ 2010-04-23 rocky <rockyb@rubyforge.org>
1125
+
1126
+ * processor/command/reload.rb,
1127
+ processor/command/reload_subcmd/command.rb: Add a "reload command".
1128
+
1129
+
1130
+ 2010-04-23 rocky <rockyb@rubyforge.org>
1131
+
1132
+ * processor/default.rb, processor/load_cmds.rb, processor/mock.rb,
1133
+ test/unit/test-proc-load_cmds.rb: Now allow for a adding debugger
1134
+ commands in from directory under user control
1135
+
1136
+ 2010-04-23 rocky <rockyb@rubyforge.org>
1137
+
1138
+ * processor/load_cmds.rb, processor/main.rb,
1139
+ test/unit/test-proc-load_cmds.rb: Reorganize command loading in
1140
+ preparation for user-defined command directories.
1141
+
1142
+ 2010-04-23 rocky <rockyb@rubyforge.org>
1143
+
1144
+ * app/core.rb, processor/main.rb, processor/running.rb: Small
1145
+ cleanup and better debug skip handling.
1146
+
1147
+ 2010-04-18 rocky <rockyb@rubyforge.org>
1148
+
1149
+ * app/options.rb, app/run.rb, interface/script.rb, io/base_io.rb,
1150
+ test/data/fname-with-blank.cmd, test/data/fname-with-blank.right,
1151
+ test/example/.gitignore, test/example/fname with blank.rb,
1152
+ test/integration/.gitignore, test/integration/helper.rb,
1153
+ test/integration/test-fname-with-blank.rb: Make sure we can debug
1154
+ file names with OS-funny symbols like embedded blanks Migrate from
1155
+ xx = ... unless defined?(xx) to xx ||= ...
1156
+
1157
+ 2010-04-17 rocky <rockyb@rubyforge.org>
1158
+
1159
+ * app/core.rb, lib/rbdbgr.rb, processor/eventbuf.rb,
1160
+ processor/main.rb, test/functional/test-trace-var.rb: set_trace_func
1161
+ -> add_trace_func. Fix some bugs that I didn't realize were there.
1162
+
1163
+ 2010-04-15 rocky <rockyb@rubyforge.org>
1164
+
1165
+ * processor/command/set_subcmd/timer.rb, processor/command/step.rb,
1166
+ processor/hook.rb, processor/main.rb: More work on timer. Add "step
1167
+ over", "step into" and "step out" as alternatives to "next", "step"
1168
+ and "finish".
1169
+
1170
+ 2010-04-14 rocky <rockyb@rubyforge.org>
1171
+
1172
+ * processor/command/set_subcmd/basename.rb,
1173
+ processor/command/set_subcmd/timer.rb, processor/default.rb,
1174
+ processor/hook.rb, processor/main.rb: Rudimentary timer hook to see
1175
+ how long tracing takes. Will get better over time...
1176
+
1177
+ 2010-04-14 rocky <rockyb@rubyforge.org>
1178
+
1179
+ * processor/command/break.rb, processor/validate.rb,
1180
+ test/unit/test-proc-validate.rb: Prepare for richer breakpoint
1181
+ target specifications validate.rb: Remove offset 0 avoidance
1182
+
1183
+ 2010-04-14 rocky <rockyb@rubyforge.org>
1184
+
1185
+ * app/brkpt.rb, processor/command/break.rb,
1186
+ processor/command/info_subcmd/break.rb, processor/location.rb,
1187
+ processor/main.rb, test/functional/test-break.rb,
1188
+ test/functional/test-condition.rb, test/functional/test-delete.rb,
1189
+ test/functional/test-finish.rb, test/functional/test-return.rb,
1190
+ test/functional/test-step.rb, test/unit/test-cmd-break.rb,
1191
+ test/unit/test-proc-main.rb: Change breakpoint reporting to show
1192
+ more clearly whether the breakpoint is at a line boundary or an
1193
+ offset location.
1194
+
1195
+ 2010-04-14 rocky <rockyb@rubyforge.org>
1196
+
1197
+ Merge branch 'master' of git@github.com:rocky/rbdbgr
1198
+
1199
+ 2010-04-14 rocky <rockyb@rubyforge.org>
1200
+
1201
+ * app/brkpt.rb, app/brkptmgr.rb, processor/breakpoint.rb,
1202
+ test/unit/test-app-brkpt.rb, test/unit/test-app-brkptmgr.rb: Chagne
1203
+ Breakpoint.new to take an options hash and add option to set what
1204
+ kind of breakpoint: line/offset.
1205
+
1206
+ 2010-04-13 rocky <rockyb@rubyforge.org>
1207
+
1208
+ * app/core.rb, processor/command/set_subcmd/events.rb: Some hacks
1209
+ for breakpoints at offset 0.
1210
+
1211
+ 2010-04-09 rocky <rockyb@rubyforge.org>
1212
+
1213
+ * app/frame.rb, processor/frame.rb: Some bugs and workarounds.
1214
+
1215
+ 2010-04-04 rocky <rockyb@rubyforge.org>
1216
+
1217
+ * app/core.rb, bin/rbdbgr, interface/script.rb, interface/user.rb,
1218
+ lib/rbdbgr.rb, processor/breakpoint.rb,
1219
+ processor/command/base/subcmd.rb, processor/command/base/submgr.rb,
1220
+ processor/command/base/subsubmgr.rb, processor/command/break.rb,
1221
+ processor/command/condition.rb, processor/command/continue.rb,
1222
+ processor/command/debug.rb, processor/command/delete.rb,
1223
+ processor/command/disable.rb, processor/command/disassemble.rb,
1224
+ processor/command/display.rb, processor/command/down.rb,
1225
+ processor/command/enable.rb, processor/command/exit.rb,
1226
+ processor/command/finish.rb, processor/command/frame.rb,
1227
+ processor/command/help.rb, processor/command/info.rb,
1228
+ processor/command/info_subcmd/args.rb,
1229
+ processor/command/info_subcmd/break.rb,
1230
+ processor/command/info_subcmd/file.rb,
1231
+ processor/command/info_subcmd/frame.rb,
1232
+ processor/command/info_subcmd/iseq.rb,
1233
+ processor/command/info_subcmd/locals.rb,
1234
+ processor/command/info_subcmd/program.rb,
1235
+ processor/command/info_subcmd/registers.rb,
1236
+ processor/command/info_subcmd/registers_subcmd/dfp.rb,
1237
+ processor/command/info_subcmd/registers_subcmd/lfp.rb,
1238
+ processor/command/info_subcmd/registers_subcmd/pc.rb,
1239
+ processor/command/info_subcmd/registers_subcmd/sp.rb,
1240
+ processor/command/info_subcmd/return.rb, processor/command/irb.rb,
1241
+ processor/command/kill.rb, processor/command/list.rb,
1242
+ processor/command/next.rb, processor/command/nocache.rb,
1243
+ processor/command/print.rb, processor/command/quit.rb,
1244
+ processor/command/raise.rb, processor/command/restart.rb,
1245
+ processor/command/set.rb, processor/command/set_subcmd/auto.rb,
1246
+ processor/command/set_subcmd/auto_subcmd/eval.rb,
1247
+ processor/command/set_subcmd/auto_subcmd/irb.rb,
1248
+ processor/command/set_subcmd/auto_subcmd/list.rb,
1249
+ processor/command/set_subcmd/basename.rb,
1250
+ processor/command/set_subcmd/btlimit.rb,
1251
+ processor/command/set_subcmd/debug.rb,
1252
+ processor/command/set_subcmd/debug_subcmd/dbgr.rb,
1253
+ processor/command/set_subcmd/debug_subcmd/except.rb,
1254
+ processor/command/set_subcmd/debug_subcmd/skip.rb,
1255
+ processor/command/set_subcmd/debug_subcmd/stack.rb,
1256
+ processor/command/set_subcmd/different.rb,
1257
+ processor/command/set_subcmd/events.rb,
1258
+ processor/command/set_subcmd/maxstring.rb,
1259
+ processor/command/set_subcmd/return.rb,
1260
+ processor/command/set_subcmd/sp.rb,
1261
+ processor/command/set_subcmd/substitute.rb,
1262
+ processor/command/set_subcmd/substitute_subcmd/eval.rb,
1263
+ processor/command/set_subcmd/substitute_subcmd/path.rb,
1264
+ processor/command/set_subcmd/substitute_subcmd/string.rb,
1265
+ processor/command/set_subcmd/trace.rb,
1266
+ processor/command/set_subcmd/trace_subcmd/buffer.rb,
1267
+ processor/command/set_subcmd/trace_subcmd/print.rb,
1268
+ processor/command/set_subcmd/trace_subcmd/var.rb,
1269
+ processor/command/set_subcmd/width.rb, processor/command/show.rb,
1270
+ processor/command/show_subcmd/args.rb,
1271
+ processor/command/show_subcmd/auto.rb,
1272
+ processor/command/show_subcmd/auto_subcmd/eval.rb,
1273
+ processor/command/show_subcmd/auto_subcmd/irb.rb,
1274
+ processor/command/show_subcmd/auto_subcmd/list.rb,
1275
+ processor/command/show_subcmd/basename.rb,
1276
+ processor/command/show_subcmd/btlimit.rb,
1277
+ processor/command/show_subcmd/debug.rb,
1278
+ processor/command/show_subcmd/debug_subcmd/except.rb,
1279
+ processor/command/show_subcmd/debug_subcmd/skip.rb,
1280
+ processor/command/show_subcmd/debug_subcmd/stack.rb,
1281
+ processor/command/show_subcmd/different.rb,
1282
+ processor/command/show_subcmd/events.rb,
1283
+ processor/command/show_subcmd/maxstring.rb,
1284
+ processor/command/show_subcmd/trace.rb,
1285
+ processor/command/show_subcmd/trace_subcmd/buffer.rb,
1286
+ processor/command/show_subcmd/trace_subcmd/print.rb,
1287
+ processor/command/show_subcmd/width.rb,
1288
+ processor/command/source.rb, processor/command/step.rb,
1289
+ processor/command/undisplay.rb, processor/command/up.rb,
1290
+ processor/command/where.rb, processor/display.rb,
1291
+ processor/frame.rb, processor/location.rb, processor/main.rb,
1292
+ processor/mock.rb, processor/msg.rb, processor/running.rb,
1293
+ processor/subcmd.rb, processor/validate.rb,
1294
+ test/functional/fn_helper.rb, test/functional/test-break.rb,
1295
+ test/functional/test-condition.rb, test/functional/test-delete.rb,
1296
+ test/unit/cmd-helper.rb, test/unit/test-app-brkpt.rb,
1297
+ test/unit/test-app-brkptmgr.rb, test/unit/test-app-disassemble.rb,
1298
+ test/unit/test-app-file.rb, test/unit/test-app-frame.rb,
1299
+ test/unit/test-app-options.rb, test/unit/test-app-util.rb,
1300
+ test/unit/test-base-subcmd.rb, test/unit/test-cmd-endisable.rb,
1301
+ test/unit/test-cmd-help.rb, test/unit/test-cmd-kill.rb,
1302
+ test/unit/test-cmd-quit.rb, test/unit/test-cmd-step.rb,
1303
+ test/unit/test-intf-user.rb, test/unit/test-io-input.rb,
1304
+ test/unit/test-proc-eval.rb, test/unit/test-proc-frame.rb,
1305
+ test/unit/test-proc-help.rb, test/unit/test-proc-hook.rb,
1306
+ test/unit/test-proc-main.rb, test/unit/test-proc-validate.rb,
1307
+ test/unit/test-subcmd-help.rb: require_relative %w(a b c) =>
1308
+ require_relative 'a/b/c' Starting with SVN revision #26959
1309
+ require_relative no longer accepts an array argument.
1310
+
1311
+ 2010-04-03 rocky <rockyb@rubyforge.org>
1312
+
1313
+ * processor/command/set_subcmd/auto_subcmd/list.rb: Doc bug fix.
1314
+
1315
+ 2010-04-03 rocky <rockyb@rubyforge.org>
1316
+
1317
+ * processor/command/set_subcmd/trace.rb,
1318
+ processor/command/show_subcmd/trace.rb,
1319
+ processor/command/show_subcmd/trace_subcmd/buffer.rb,
1320
+ processor/eventbuf.rb: Showing events in event buffer with marks
1321
+ where debugger has stopped now works. dump_all -> eventbuf_print
1322
+
1323
+ 2010-04-03 rocky <rockyb@rubyforge.org>
1324
+
1325
+ * processor/command/set_subcmd/trace_subcmd/buffer.rb,
1326
+ processor/eventbuf.rb: Add separators between events which entered
1327
+ the debugger. Some output clean up a little and a doc small bugs
1328
+ fixed.
1329
+
1330
+ 2010-04-03 rocky <rockyb@rubyforge.org>
1331
+
1332
+ * lib/rbdbgr.rb, processor/eventbuf.rb: Track recent trace changes:
1333
+ TraceFilter -> Trace::Filter TraceBuffer -> Trace::EventBuffer
1334
+
1335
+ 2010-04-02 rocky <rockyb@rubyforge.org>
1336
+
1337
+ * test/functional/test-delete.rb: Test output changed.
1338
+
1339
+ 2010-04-02 rocky <rockyb@rubyforge.org>
1340
+
1341
+ * processor/command/base/subsubcmd.rb,
1342
+ processor/command/set_subcmd/auto_subcmd/eval.rb,
1343
+ processor/command/set_subcmd/trace.rb,
1344
+ processor/command/set_subcmd/trace_subcmd/print.rb,
1345
+ processor/command/set_subcmd/trace_subcmd/var.rb,
1346
+ processor/command/show_subcmd/trace_subcmd/print.rb,
1347
+ test/unit/test-proc-main.rb: Go over help for various subcommands.
1348
+
1349
+ 2010-04-02 rocky <rockyb@rubyforge.org>
1350
+
1351
+ * processor/command/set_subcmd/trace.rb,
1352
+ processor/command/set_subcmd/trace_subcmd/print.rb,
1353
+ processor/command/set_subcmd/trace_subcmd/var.rb,
1354
+ processor/command/show_subcmd/trace.rb,
1355
+ processor/command/show_subcmd/trace_subcmd/print.rb,
1356
+ processor/default.rb, processor/main.rb: set/show trace -> set/show
1357
+ trace print
1358
+
1359
+ 2010-04-02 rocky <rockyb@rubyforge.org>
1360
+
1361
+ * processor/eventbuf.rb, processor/location.rb: Better formatting of
1362
+ event buffer entries.
1363
+
1364
+ 2010-04-01 rocky <rockyb@rubyforge.org>
1365
+
1366
+ * processor/command/set_subcmd/trace.rb,
1367
+ processor/command/show_subcmd/trace.rb,
1368
+ processor/command/show_subcmd/trace_subcmd/buffer.rb: Add "show
1369
+ trace buffer" commands.
1370
+
1371
+ 2010-04-01 rocky <rockyb@rubyforge.org>
1372
+
1373
+ * processor/command/set_subcmd/trace_subcmd/buffer.rb,
1374
+ processor/eventbuf.rb, processor/hook.rb, processor/main.rb,
1375
+ test/functional/fn_helper.rb: Minimally working event capturing in a
1376
+ ring.
1377
+
1378
+ 2010-04-01 rocky <rockyb@rubyforge.org>
1379
+
1380
+ * processor/command/set_subcmd/trace_subcmd/buffer.rb,
1381
+ processor/eventbuf.rb, processor/main.rb: Closer to getting event
1382
+ buffer tracing working.
1383
+
1384
+ 2010-04-01 rocky <rockyb@rubyforge.org>
1385
+
1386
+ * processor/command/set_subcmd/.gitignore,
1387
+ processor/command/set_subcmd/auto_subcmd/eval.rb,
1388
+ processor/command/set_subcmd/trace_subcmd/.gitignore,
1389
+ processor/command/set_subcmd/trace_subcmd/buffer.rb,
1390
+ processor/default.rb: Closer to having a working event trace buffer
1391
+ ("set trace buffer on/off")
1392
+
1393
+ 2010-03-31 rocky <rockyb@rubyforge.org>
1394
+
1395
+ * processor/command/set_subcmd/.gitignore,
1396
+ processor/command/set_subcmd/substitute.rb,
1397
+ processor/command/set_subcmd/trace.rb,
1398
+ processor/command/set_subcmd/trace_subcmd/var.rb,
1399
+ test/unit/test-cmd-help.rb: Prepare for expanding "set trace" (for
1400
+ "set trace buffer").
1401
+
1402
+ 2010-03-31 rocky <rockyb@rubyforge.org>
1403
+
1404
+ * processor/command/set_subcmd/debug_subcmd/dbgr.rb,
1405
+ processor/location.rb: Small changes like longer help for "set debug
1406
+ dbgr"
1407
+
1408
+ 2010-03-31 rocky <rockyb@rubyforge.org>
1409
+
1410
+ * app/core.rb: Bug created by last commit in moving code around.
1411
+ Should'a check the functional tests...
1412
+
1413
+ 2010-03-25 rocky <rockyb@rubyforge.org>
1414
+
1415
+ * app/eventbuffer.rb: evetbuffer.rb moved to trace package.
1416
+
1417
+ 2010-03-25 rocky <rockyb@rubyforge.org>
1418
+
1419
+ * app/eventbuffer.rb: Changes before removal
1420
+
1421
+ 2010-03-25 rocky <rockyb@rubyforge.org>
1422
+
1423
+ * app/eventbuffer.rb: Fill out eventbuffer more.
1424
+
1425
+ 2010-03-24 rocky <rockyb@rubyforge.org>
1426
+
1427
+ * app/core.rb, app/eventbuffer.rb: Prepare for event buffer
1428
+ capturing.
1429
+
1430
+ 2010-03-23 rocky <rockyb@rubyforge.org>
1431
+
1432
+ * processor/command/list.rb, processor/location.rb: Fix bug in
1433
+ listing remapped eval strings in C functions.
1434
+
1435
+ 2010-03-23 rocky <rockyb@rubyforge.org>
1436
+
1437
+ * processor/command/list.rb, processor/command/where.rb,
1438
+ processor/location.rb, test/functional/test-return.rb: list.rb:
1439
+ respect reload_on_change location.rb: use C class name hack (from
1440
+ hook arg) like we do in "where".
1441
+
1442
+ 2010-03-23 rocky <rockyb@rubyforge.org>
1443
+
1444
+ * processor/frame.rb: Make use of cached iseq's via the SHA1 for the
1445
+ iseq.
1446
+
1447
+ 2010-03-23 rocky <rockyb@rubyforge.org>
1448
+
1449
+ * lib/rbdbgr.rb, processor/command/set_subcmd/debug_subcmd/dbgr.rb,
1450
+ processor/location.rb: location.rb: small bug in "via" location line
1451
+ number reporting dbgr.rb: more facility for debugging the debugger
1452
+
1453
+ 2010-03-22 rocky <rockyb@rubyforge.org>
1454
+
1455
+ * processor/location.rb, test/functional/test-finish.rb,
1456
+ test/functional/test-return.rb, test/functional/test-step.rb:
1457
+ Distinguish return values from functions 'r=>' from return values
1458
+ from debugger evaluated expressions 'R=>'.
1459
+
1460
+ 2010-03-21 rocky <rockyb@rubyforge.org>
1461
+
1462
+ * app/frame.rb, processor/command/info_subcmd/return.rb,
1463
+ processor/command/set_subcmd/return.rb, processor/location.rb,
1464
+ test/functional/test-raise.rb, test/functional/test-return.rb,
1465
+ test/unit/test-app-frame.rb: Some support for showing and changing C
1466
+ return values.
1467
+
1468
+ 2010-03-21 rocky <rockyb@rubyforge.org>
1469
+
1470
+ * processor/command/info_subcmd/registers.rb,
1471
+ processor/command/set_subcmd/sp.rb: registers.rb: better message
1472
+ when pc and lfp are not usable sp.rb: remove debug statement.
1473
+
1474
+ 2010-03-21 rocky <rockyb@rubyforge.org>
1475
+
1476
+ * interface/script.rb, processor/command/help.rb,
1477
+ processor/default.rb, processor/main.rb: Some small script (debugger
1478
+ "source" command) fixes. script.rb: Don't show debugger output if
1479
+ running a script. main.rb; Slightly better handling of blank command
1480
+ lines help.rb: don't show aliases for a commmand where help on
1481
+ subcommands were asked for.
1482
+
1483
+ 2010-03-20 rocky <rockyb@rubyforge.org>
1484
+
1485
+ * processor/Makefile, processor/main.rb,
1486
+ test/unit/test-proc-main.rb: If a debugger command starts with !,
1487
+ for evaluation. For example s=1 would be taken as a "step" command,
1488
+ but !s=1 is an assignement to s. The leading ! is removed.
1489
+
1490
+ 2010-03-19 rocky <rockyb@rubyforge.org>
1491
+
1492
+ * processor/command/debug.rb, processor/command/raise.rb,
1493
+ test/functional/test-raise.rb: Some "raise" command bug fixes. Some
1494
+ "debug" (recursive debug) fixes.
1495
+
1496
+ 2010-03-19 rocky <rockyb@rubyforge.org>
1497
+
1498
+ * app/core.rb: Traceback for "raise" command has less noise by
1499
+ pushing raise into the trace filter.
1500
+
1501
+ 2010-03-16 rocky <rockyb@rubyforge.org>
1502
+
1503
+ * app/core.rb, processor/command/raise.rb, processor/main.rb,
1504
+ test/functional/fn_helper.rb: More work on 'raise' command. Warning:
1505
+ there is a bug in my Ruby 1.9 that prevents tracing from working
1506
+ after "raise" is issued.
1507
+
1508
+ 2010-03-16 rocky <rockyb@rubyforge.org>
1509
+
1510
+ * app/core.rb, processor/command/info_subcmd/program.rb,
1511
+ processor/command/raise.rb, processor/location.rb,
1512
+ processor/main.rb, test/functional/fn_helper.rb,
1513
+ test/functional/test-delete.rb, test/functional/test-finish.rb,
1514
+ test/functional/test-step.rb: New 'raise' command which raises an
1515
+ exception in the debugged program. The debugged-program's return
1516
+ values are now prefaced with R=> rather than =>. Hopefully this
1517
+ makes things clearer while still somewhat intuitive.
1518
+
1519
+ 2010-03-14 rocky <rockyb@rubyforge.org>
1520
+
1521
+ * processor/command/step.rb, processor/running.rb,
1522
+ test/functional/test-next.rb: Fix a couple of small stepping bugs.
1523
+
1524
+ 2010-03-14 rocky <rockyb@rubyforge.org>
1525
+
1526
+ * processor/command/info_subcmd/program.rb,
1527
+ processor/command/where.rb, processor/location.rb,
1528
+ test/functional/test-next.rb, test/functional/test-step.rb: Some
1529
+ bugs and improvements in showing exception information on a raise
1530
+ event.
1531
+
1532
+ 2010-03-14 rocky <rockyb@rubyforge.org>
1533
+
1534
+ * processor/command/info_subcmd/program.rb, processor/location.rb,
1535
+ test/functional/fn_helper.rb, test/functional/test-break.rb,
1536
+ test/functional/test-condition.rb, test/functional/test-delete.rb,
1537
+ test/functional/test-finish.rb, test/functional/test-next.rb,
1538
+ test/functional/test-step.rb, test/functional/test-trace-var.rb:
1539
+ Show exception object when we have 'raise' event. location output
1540
+ has changed from prior commit. Track in test cases. Show exception
1541
+ object on 'raise' exception.
1542
+
1543
+ 2010-03-13 rocky <rockyb@rubyforge.org>
1544
+
1545
+ * app/frame.rb, processor/command/info_subcmd/program.rb,
1546
+ processor/hook.rb, processor/location.rb, processor/main.rb: Show
1547
+ more information in location. If a call, the method name and params
1548
+ If a return the return value.
1549
+
1550
+ 2010-03-13 rocky <rockyb@rubyforge.org>
1551
+
1552
+ * app/default.rb, lib/rbdbgr.rb: Now that we have a patch for
1553
+ ruby-1.9 to fix SEGV's in eval, debug_str works. Some minor tweaks.
1554
+
1555
+
1556
+ 2010-03-13 rocky <rockyb@rubyforge.org>
1557
+
1558
+ * app/irb.rb, data/irbrc, processor/command/irb.rb: irb.rb:
1559
+ Syncronize IRB's BACK_TRACE_LIMIT with the debugger's. irbrc: "file"
1560
+ for eval shouldn't contain ":" since that causes IRB to think to
1561
+ traceback are IRB bugs.
1562
+
1563
+ 2010-03-11 rocky <rockyb@rubyforge.org>
1564
+
1565
+ * data/irbrc: A better irb monkeypatch
1566
+
1567
+ 2010-03-11 rocky <rockyb@rubyforge.org>
1568
+
1569
+ * app/file.rb, app/frame.rb, processor/breakpoint.rb,
1570
+ processor/command/where.rb, processor/validate.rb,
1571
+ test/unit/test-cmd-break.rb: Start to fill out breakpoints more.
1572
+ Some bugs fixed, many other roam freely.
1573
+
1574
+ 2010-03-11 rocky <rockyb@rubyforge.org>
1575
+
1576
+ * app/frame.rb, processor/command/set_subcmd/btlimit.rb,
1577
+ processor/command/show_subcmd/btlimit.rb,
1578
+ processor/command/where.rb, processor/default.rb: Add set/show
1579
+ btlimit: a way to set backtrace_levels (irb's BACK_TRACE_LEVELS)
1580
+
1581
+ 2010-03-11 rocky <rockyb@rubyforge.org>
1582
+
1583
+ * README.textile: Minor
1584
+
1585
+ 2010-03-11 rocky <rockyb@rubyforge.org>
1586
+
1587
+ * lib/rbdbgr.rb: Add :hide_stack as an option to Debugger.debug
1588
+
1589
+ 2010-03-11 rocky <rockyb@rubyforge.org>
1590
+
1591
+ * lib/rbdbgr.rb: Debugger.debug/ger fixes: don't show stack frame
1592
+ levels below debugger method -- unless requested via :debugstack.
1593
+ Fix wrong method name.
1594
+
1595
+ 2010-03-11 rocky <rockyb@rubyforge.org>
1596
+
1597
+ * data/irbrc: Missed one
1598
+
1599
+ 2010-03-11 rocky <rockyb@rubyforge.org>
1600
+
1601
+ * data/irbrc, processor/command/irb.rb: Regularize $rbdgr_ names in
1602
+ irb -d
1603
+
1604
+ 2010-03-11 rocky <rockyb@rubyforge.org>
1605
+
1606
+ * app/irb.rb, app/mock.rb, processor/command/irb.rb: Less use of
1607
+ global variable $rbdbgr. Have to back off the way step/next do their
1608
+ thing. Document added irb command 'dbgr'.
1609
+
1610
+ 2010-03-11 rocky <rockyb@rubyforge.org>
1611
+
1612
+ * app/irb.rb, data/irbrc, processor/command/irb.rb,
1613
+ processor/main.rb: Add command inside irb: dbgr to issue debugger
1614
+ statements. Dry irb code a little.
1615
+
1616
+ 2010-03-11 rocky <rockyb@rubyforge.org>
1617
+
1618
+ * app/irb.rb, data/irbrc, processor/command/irb.rb: Start to get
1619
+ more info back from extend irb commands.
1620
+
1621
+ 2010-03-11 rocky <rockyb@rubyforge.org>
1622
+
1623
+ * README.textile: Typo
1624
+
1625
+ 2010-03-11 rocky <rockyb@rubyforge.org>
1626
+
1627
+ * app/core.rb, app/frame.rb, lib/rbdbgr.rb,
1628
+ processor/command/set_subcmd/trace.rb, processor/command/where.rb,
1629
+ processor/main.rb, test/functional/test-trace-var.rb: Add a
1630
+ trace_var hook and "set trace var" command.
1631
+
1632
+ 2010-03-11 rocky <rockyb@rubyforge.org>
1633
+
1634
+ * README.textile, app/default.rb, app/frame.rb, lib/rbdbgr.rb,
1635
+ processor/command/where.rb, test/unit/test-app-frame.rb: frame.rb,
1636
+ where.rb: handle showing basename in files. Simplify interface
1637
+ README.textile: things have changed slightly
1638
+
1639
+ 2010-03-10 rocky <rockyb@rubyforge.org>
1640
+
1641
+ * Rakefile: Add sudo to install when necessary
1642
+
1643
+ 2010-03-10 rocky <rockyb@rubyforge.org>
1644
+
1645
+ * app/frame.rb, processor/location.rb: I'm guessing/hoping this is
1646
+ more-useful in reporting the debugger location (method
1647
+ print_location) for eval strings.
1648
+
1649
+ 2010-03-10 rocky <rockyb@rubyforge.org>
1650
+
1651
+ * processor/command/debug.rb, processor/frame.rb: Cooler and more
1652
+ robust kind of fix to hidelevels bug.
1653
+
1654
+ 2010-03-10 rocky <rockyb@rubyforge.org>
1655
+
1656
+ * processor/command/debug.rb: Deal thread appearing for the first
1657
+ time.
1658
+
1659
+ 2010-03-10 rocky <rockyb@rubyforge.org>
1660
+
1661
+ * processor/command/down.rb, processor/command/info_subcmd/iseq.rb,
1662
+ processor/command/set_subcmd/debug_subcmd/stack.rb,
1663
+ processor/command/set_subcmd/substitute_subcmd/eval.rb,
1664
+ processor/command/up.rb, processor/frame.rb,
1665
+ test/unit/test-proc-frame.rb: frame.rb, iseq.rb: use/show SHA1's for
1666
+ instruction sequences. {up,down,frame,eval,stack}.rb: DRY code.
1667
+ eval.rb, frame.rb: allow a frame parameter to eval.
1668
+
1669
+ 2010-03-09 rocky <rockyb@rubyforge.org>
1670
+
1671
+ * app/frame.rb, processor/command/list.rb,
1672
+ processor/command/set_subcmd/substitute_subcmd/eval.rb,
1673
+ processor/frame.rb, processor/location.rb, processor/main.rb:
1674
+ Automatic eval string remapping to a file in "list" stack and
1675
+ location listings. Manual remapping too via "set substitute eval".
1676
+ Todo possibly remove set substitute eval or change it to take a
1677
+ frame #. Work in rb-threadframe to get sha1/checksum of iseq instead
1678
+ of inspect name.
1679
+
1680
+ 2010-03-09 rocky <rockyb@rubyforge.org>
1681
+
1682
+ * lib/rbdbgr.rb: Don't run .rbdbgrc or any startup file twice.
1683
+
1684
+ 2010-03-09 rocky <rockyb@rubyforge.org>
1685
+
1686
+ * processor/command/print.rb, processor/eval.rb, processor/main.rb,
1687
+ test/functional/test-delete.rb, test/functional/test-finish.rb,
1688
+ test/functional/test-step.rb: main.rb: auto-eval output looks more
1689
+ like irb using inspect and prefaced with => print.rb: Add print
1690
+ command which uses safe-repr for output. eaval.rb: add a kind of
1691
+ eval that field hide exceptions.
1692
+
1693
+ 2010-03-08 rocky <rockyb@rubyforge.org>
1694
+
1695
+ * interface/script.rb: Small bug in script handling
1696
+
1697
+ 2010-03-08 rocky <rockyb@rubyforge.org>
1698
+
1699
+ * processor/eval.rb, test/unit/test-proc-eval.rb: Dummy up the eval
1700
+ "filename" to something a little more informative. Eventually this
1701
+ might be pushed back into Ruby. Start unit test for eval code.
1702
+
1703
+ 2010-03-08 rocky <rockyb@rubyforge.org>
1704
+
1705
+ * Rakefile, app/options.rb, lib/rbdbgr.rb, test/data/.gitignore,
1706
+ test/data/quit.cmd, test/data/quit.right, test/example/null.rb,
1707
+ test/integration/helper.rb, test/integration/test-quit.rb: First
1708
+ integration test - yay! options.rb: don't try to load a command file
1709
+ that isn't readable rbdbgr.rb: fix bugs in command-file handling
1710
+ integration/helper.rb Rakefile: add integration targets
1711
+
1712
+ 2010-03-08 rocky <rockyb@rubyforge.org>
1713
+
1714
+ * test/functional/fn_helper.rb, test/unit/cmd-helper.rb: tests
1715
+ should to add :nx => true now.
1716
+
1717
+ 2010-03-08 rocky <rockyb@rubyforge.org>
1718
+
1719
+ * app/default.rb, app/options.rb, bin/rbdbgr, lib/rbdbgr.rb,
1720
+ test/unit/test-app-options.rb: Add --nx and @settings[:nx] options.
1721
+
1722
+
1723
+ 2010-03-08 R. Bernstein <rocky@gnu.org>
1724
+
1725
+ * interface/script.rb, lib/rbdbgr.rb: rbdbgr.rb: Bug: --command used
1726
+ wrong interface. singleton methods debug and debug_str:
1727
+ pass options to Debugger.new. Set different off on debug_s
1728
+ tr by default
1729
+
1730
+ 2010-03-07 R. Bernstein <rocky@gnu.org>
1731
+
1732
+ * bin/rbdbgr, lib/rbdbgr.rb: --command option and
1733
+ @settings[:command] now does something. More work need to silence
1734
+ script interface output.
1735
+
1736
+ 2010-03-07 R. Bernstein <rocky@gnu.org>
1737
+
1738
+ * app/default.rb, app/options.rb, bin/rbdbgr, lib/rbdbgr.rb,
1739
+ test/unit/test-app-options.rb: Start --command option. Not fully
1740
+ done yet. options.rb: Fix bug in show_version(). setup_options():
1741
+ make more functional in handling of --help and --version.
1742
+ lib/rbdbgr.rb: setup options in a way that won't mess up
1743
+ DEFAULT_CMDLINE_SETTINGS. Accumulate startup-files for --command
1744
+ option.
1745
+
1746
+ 2010-03-06 R. Bernstein <rocky@gnu.org>
1747
+
1748
+ * processor/command/debug.rb: deubg.rb: works better now. Not ideal,
1749
+ but much better.
1750
+
1751
+ 2010-03-04 rocky <rockyb@rubyforge.org>
1752
+
1753
+ * processor/command/debug.rb: debug.rb: Small doc correction.
1754
+ Save/restore hidelevel and frame.
1755
+
1756
+ 2010-03-04 rocky <rockyb@rubyforge.org>
1757
+
1758
+ * processor/command/debug.rb, processor/main.rb: Add leaving
1759
+ recursive debug message. pdb/pydb does that
1760
+
1761
+ 2010-03-04 rocky <rockyb@rubyforge.org>
1762
+
1763
+ * processor/eval.rb: Split off evaluation routines from main.rb
1764
+
1765
+ 2010-03-04 rocky <rockyb@rubyforge.org>
1766
+
1767
+ * app/mock.rb, processor/command/debug.rb, processor/mock.rb: Add
1768
+ "debug" recursive debugging. Some of the underlying mechanism
1769
+ currently bleeds through. But better than nothing.
1770
+
1771
+ 2010-03-03 rocky <rockyb@rubyforge.org>
1772
+
1773
+ * app/core.rb, app/options.rb, bin/rbdbgr, lib/rbdbgr.rb,
1774
+ test/unit/test-app-options.rb: Add first rbdbgr option --chdir. Fix
1775
+ bugs in handling that. app/core.rb DEFAULT_SETTINGS ->
1776
+ CORE_DEFAULT_SETTINGS to avoid constant name clashes.
1777
+
1778
+ 2010-03-01 rocky <rockyb@rubyforge.org>
1779
+
1780
+ * Rakefile, lib/rbdbgr.rb, processor/main.rb: Rakefile: add install
1781
+ and install_full tasks lib/rbdbgr.rb: add debug_str. Works but is
1782
+ not complete though, still need "set substitute string"
1783
+ processor/main.rb; start mechanism for an intial profile or command
1784
+ array. Not finished.
1785
+
1786
+ 2010-03-01 rocky <rockyb@rubyforge.org>
1787
+
1788
+ * Rakefile: Administrivia
1789
+
1790
+ 2010-02-28 rocky <rockyb@rubyforge.org>
1791
+
1792
+ * processor/command/info_subcmd/args.rb,
1793
+ processor/command/info_subcmd/locals.rb: Add "info locals"
1794
+
1795
+ 2010-02-28 rocky <rockyb@rubyforge.org>
1796
+
1797
+ * README.textile: Small doc changes
1798
+
1799
+ 2010-02-28 rocky <rockyb@rubyforge.org>
1800
+
1801
+ * README.textile: Start to describe the arduous process of
1802
+ installing.
1803
+
1804
+ 2010-02-27 rocky <rockyb@rubyforge.org>
1805
+
1806
+ * README.textile: More text futzing
1807
+
1808
+ 2010-02-27 rocky <rockyb@rubyforge.org>
1809
+
1810
+ * Rakefile: Administrivia
1811
+
1812
+ 2010-02-27 rocky <rockyb@rubyforge.org>
1813
+
1814
+ * README.textile: One more. (I really should figure out how to
1815
+ preview textile by installing locally.)
1816
+
1817
+ 2010-02-27 rocky <rockyb@rubyforge.org>
1818
+
1819
+ * README.textile: Add a lead space in 1st line in example code.
1820
+
1821
+ 2010-02-27 rocky <rockyb@rubyforge.org>
1822
+
1823
+ * README, README.textile, Rakefile: Try *textile*. Thanks priteau!
1824
+
1825
+ 2010-02-27 rocky <rockyb@rubyforge.org>
1826
+
1827
+ * README, README.md: Nope. Don't have the markdown magic.
1828
+
1829
+ 2010-02-27 rocky <rockyb@rubyforge.org>
1830
+
1831
+ * README, README.md, Rakefile: Let's give markdown another chance.
1832
+
1833
+ 2010-02-27 rocky <rockyb@rubyforge.org>
1834
+
1835
+ * Rakefile, app/frame.rb, app/irb.rb, app/util.rb, data/irbrc,
1836
+ lib/rbdbgr.rb, processor/command/base/submgr.rb,
1837
+ processor/command/base/subsubmgr.rb, processor/command/delete.rb,
1838
+ processor/command/disable.rb,
1839
+ processor/command/info_subcmd/args.rb,
1840
+ processor/command/set_subcmd/auto.rb,
1841
+ processor/command/set_subcmd/debug.rb,
1842
+ processor/command/set_subcmd/substitute.rb,
1843
+ processor/command/show_subcmd/auto.rb,
1844
+ processor/command/show_subcmd/debug.rb, profile/irbrc,
1845
+ test/unit/test-app-util.rb: Lots of bug fixes and goodness.
1846
+ app/frame.rb: was listing C params in reverse order. safe_repr each
1847
+ arg was adding a non-existent optional argument
1848
+ info_subcmd/args.rb: Fix buggy test for whether params may have
1849
+ changed. Also fix wrong C param order.
1850
+ Rakefile: forgot to add data directory to distribution profile/irbrc
1851
+ -> data/irbrc, app/irb.rb: consolidate files into one directory.
1852
+ Data wins app/util.rb: safe_repr now matches quotes and can be told
1853
+ what suffix (...) to use rbdbgr.rb: don't debug inside in debug.
1854
+
1855
+ 2010-02-26 rocky <rockyb@rubyforge.org>
1856
+
1857
+ * processor/command/info_subcmd/args.rb: info args for non C stack
1858
+ should show all parameters. Some bugs fixed.
1859
+
1860
+ 2010-02-26 rocky <rockyb@rubyforge.org>
1861
+
1862
+ * app/frame.rb, processor/command/info_subcmd/args.rb,
1863
+ processor/msg.rb: Add "info args"
1864
+
1865
+ 2010-02-26 rocky <rockyb@rubyforge.org>
1866
+
1867
+ * app/frame.rb, processor/command/step.rb, processor/main.rb,
1868
+ processor/running.rb: app/frame.rb: show parameter values on C calls
1869
+ via frame.argc rest: add step to
1870
+
1871
+ 2010-02-26 rocky <rockyb@rubyforge.org>
1872
+
1873
+ * app/default.rb, app/options.rb, lib/rbdbgr.rb, processor/mock.rb:
1874
+ More piddling around with debugger options
1875
+
1876
+ 2010-02-26 rocky <rockyb@rubyforge.org>
1877
+
1878
+ * app/options.rb: Start options processing. Used in integration
1879
+ testing.
1880
+
1881
+ 2010-02-26 rocky <rockyb@rubyforge.org>
1882
+
1883
+ * test/unit/test-proc-validate.rb: "Step to" sort of works. More is
1884
+ needed in determining whether something is a method, when two are
1885
+ equal, and removing the SEGV's when call C-call/return events are
1886
+ handled by default. But other than that - perfect!
1887
+
1888
+ 2010-02-26 rocky <rockyb@rubyforge.org>
1889
+
1890
+ * app/frame.rb: Fix bug in retrieving C function argument values.
1891
+
1892
+ 2010-02-26 rocky <rockyb@rubyforge.org>
1893
+
1894
+ * processor/command/step.rb, processor/validate.rb: Start method
1895
+ determinaton routine in support of "step to".
1896
+
1897
+ 2010-02-24 rocky <rockyb@rubyforge.org>
1898
+
1899
+ * test/integration/file-diff.rb: Less wrong in overlapping file-diff
1900
+ code.
1901
+
1902
+ 2010-02-24 rocky <rockyb@rubyforge.org>
1903
+
1904
+ * test/example/gcd-xx.rb, test/integration/file-diff.rb: Fill out
1905
+ the integration test mechanism a little more by filling out a Pure
1906
+ Ruby implementation of Unix 'diff' via the diff/lcs gem.
1907
+
1908
+ 2010-02-24 rocky <rockyb@rubyforge.org>
1909
+
1910
+ * app/frame.rb, app/util.rb,
1911
+ processor/command/info_subcmd/registers_subcmd/helper.rb,
1912
+ processor/frame.rb, processor/msg.rb, test/unit/test-app-file.rb,
1913
+ test/unit/test-app-util.rb: app/frame.rb: better parameter display
1914
+ for C frames app/util.rb: add safe_repr helper.rb: sp adjustment for
1915
+ C frames processor/frame.rb: allow setting frame to hidden stack
1916
+ entries on request unit/test-app-file.rb: cut-and-paste error.
1917
+
1918
+ 2010-02-23 R. Bernstein <rocky@gnu.org>
1919
+
1920
+ * test/example/gcd.rb, test/example/gcd1.rb,
1921
+ test/integration/.gitignore, test/integration/helper.rb: Lame start
1922
+ at integration tests.
1923
+
1924
+ 2010-02-23 rocky <rockyb@rubyforge.org>
1925
+
1926
+ * app/core.rb: Somewhere inside the VM we allow I guess nested
1927
+ tracing which is messing up ThreadFrame pointers and information.
1928
+ When this is fixed we can do the below. Until then we need to at
1929
+ least remove C calls and returns and possibly other events as well.
1930
+
1931
+
1932
+ 2010-02-23 rocky <rockyb@rubyforge.org>
1933
+
1934
+ * app/file.rb, processor/command/info_subcmd/break.rb,
1935
+ processor/validate.rb, test/unit/test-proc-validate.rb: break.rb:
1936
+ allow showing breakpoint by number. Improve help. app/file.rb:
1937
+ remove Ruby warning messages validate.rb: add int list routine
1938
+
1939
+ 2010-02-22 rocky <rockyb@rubyforge.org>
1940
+
1941
+ * app/file.rb, app/frame.rb, processor/breakpoint.rb,
1942
+ processor/command/break.rb, processor/command/set_subcmd/sp.rb,
1943
+ processor/hook.rb, processor/main.rb, processor/validate.rb,
1944
+ test/functional/test-break.rb, test/functional/test-condition.rb,
1945
+ test/functional/test-delete.rb, test/unit/cmd-helper.rb,
1946
+ test/unit/test-cmd-break.rb: sp.rb: Add ability to change VM stack
1947
+ entries. frame.rb: Fix bug which was messing up class values inside
1948
+ C functions breakpoint.rb: make message look more like gdb Remove
1949
+ some Ruby warning messages. main.rb: remove duplicate
1950
+ load_debugger_commands method
1951
+
1952
+ 2010-02-20 rocky <rockyb@rubyforge.org>
1953
+
1954
+ * processor/command/undisplay.rb: Add undisplay command
1955
+
1956
+ 2010-02-20 rocky <rockyb@rubyforge.org>
1957
+
1958
+ * processor/command/base/subsubmgr.rb,
1959
+ processor/command/info_subcmd/registers.rb,
1960
+ processor/command/info_subcmd/registers_subcmd/lfp.rb,
1961
+ processor/command/step.rb, processor/main.rb: lfp.rb, registers.rb:
1962
+ Remove register commands that aren't available in C functions.
1963
+ step.rb: set different off if we have "step until" main.rb: remove
1964
+ temporary debug statement
1965
+
1966
+ 2010-02-20 rocky <rockyb@rubyforge.org>
1967
+
1968
+ * processor/hook.rb: Fix bug in hook insertion.
1969
+
1970
+ 2010-02-20 rocky <rockyb@rubyforge.org>
1971
+
1972
+ * app/display.rb, processor/command/display.rb,
1973
+ processor/command/next.rb, processor/command/step.rb,
1974
+ processor/default.rb, processor/main.rb, processor/running.rb: Make
1975
+ set different "nostack" the default step/next display minimally
1976
+ works.
1977
+
1978
+ 2010-02-20 rocky <rockyb@rubyforge.org>
1979
+
1980
+ * app/core.rb, app/display.rb, app/frame.rb,
1981
+ processor/command/display.rb, processor/command/where.rb,
1982
+ processor/display.rb, processor/hook.rb, processor/main.rb:
1983
+ where.rb, frame.rb: C function class name workaround. display.rb,
1984
+ hook.rb, main.rb: start display expressions. Not working yet - wait
1985
+ for next commit.
1986
+
1987
+ 2010-02-19 rocky <rockyb@rubyforge.org>
1988
+
1989
+ * processor/command/set_subcmd/auto_subcmd/list.rb,
1990
+ processor/hook.rb: Add a priority for hooks position placement.
1991
+
1992
+ 2010-02-19 rocky <rockyb@rubyforge.org>
1993
+
1994
+ * processor/command/info_subcmd/program.rb,
1995
+ processor/command/info_subcmd/return.rb,
1996
+ processor/command/set_subcmd/return.rb: info_subcmd/program.rb:
1997
+ Don't assume we have an iseq. return.rb: remove C-call again, until
1998
+ we can figure out what's wrong.
1999
+
2000
+ 2010-02-18 rocky <rockyb@rubyforge.org>
2001
+
2002
+ * processor/command/info_subcmd/return.rb,
2003
+ processor/command/set_subcmd/return.rb: Allow showing/setting return
2004
+ values for C calls and returns
2005
+
2006
+ 2010-02-18 rocky <rockyb@rubyforge.org>
2007
+
2008
+ * processor/command/set_subcmd/different.rb,
2009
+ processor/command/set_subcmd/return.rb,
2010
+ processor/command/set_subcmd/substitute_subcmd/string.rb,
2011
+ processor/mock.rb: return.rb: Add a way to set a method return
2012
+ value: "set return". string.rb, different.rb: improve help strings
2013
+ mock.rb: set ISEQS__ and SCRIPT_ISEQS__
2014
+
2015
+ 2010-02-17 rocky <rockyb@rubyforge.org>
2016
+
2017
+ * processor/command/info_subcmd/iseq.rb: Bug in running "info iseq"
2018
+
2019
+
2020
+ 2010-02-17 rocky <rockyb@rubyforge.org>
2021
+
2022
+ * processor/command/set_subcmd/different.rb,
2023
+ processor/command/show_subcmd/different.rb, processor/main.rb: Add
2024
+ "set different nostack".
2025
+
2026
+ 2010-02-17 rocky <rockyb@rubyforge.org>
2027
+
2028
+ * processor/command/list.rb: Fix bugs in 'list' command: cache file
2029
+ when not previously cached. Off by one in listing. More demo code
2030
+ which should eventually find its way into a unit test.
2031
+
2032
+ 2010-02-16 rocky <rockyb@rubyforge.org>
2033
+
2034
+ * app/core.rb: Now that we have greater level of granularity on
2035
+ stepping, let's include C calls and returns in stepping.
2036
+
2037
+ 2010-02-16 rocky <rockyb@rubyforge.org>
2038
+
2039
+ * app/file.rb, processor/command/disassemble.rb,
2040
+ processor/command/info_subcmd/iseq.rb, processor/main.rb,
2041
+ processor/validate.rb, test/unit/test-app-file.rb: Separate debugger
2042
+ instruction sequences.
2043
+
2044
+ 2010-02-16 rocky <rockyb@rubyforge.org>
2045
+
2046
+ * app/brkptmgr.rb, processor/breakpoint.rb,
2047
+ processor/command/break.rb, processor/command/condition.rb,
2048
+ processor/command/continue.rb, processor/main.rb,
2049
+ processor/validate.rb, test/functional/test-break.rb,
2050
+ test/functional/test-condition.rb, test/unit/test-proc-validate.rb:
2051
+ Add "break .. if"
2052
+
2053
+ 2010-02-16 rocky <rockyb@rubyforge.org>
2054
+
2055
+ * processor/breakpoint.rb, processor/command/condition.rb,
2056
+ processor/command/enable.rb, processor/load_cmds.rb,
2057
+ processor/main.rb: breakpoint.rb: Better invalid breakpoint number
2058
+ error messages condition.rb: condition closer to working - but still
2059
+ not operational. main.rb, load_cmds.rb: move declaration of commands
2060
+ attr_accessor load_cmds.rb: better demo code main.rb: closer to
2061
+ interpreting breakpoint condition
2062
+
2063
+ 2010-02-15 rocky <rockyb@rubyforge.org>
2064
+
2065
+ * app/condition.rb, app/file.rb, processor/command/step.rb,
2066
+ processor/load_cmds.rb, processor/main.rb, processor/running.rb,
2067
+ processor/validate.rb, test/unit/test-app-file.rb: Add "step until"
2068
+ !
2069
+
2070
+ 2010-02-15 rocky <rockyb@rubyforge.org>
2071
+
2072
+ * processor/command/info_subcmd/iseq.rb, processor/validate.rb:
2073
+ method_iseq no longer exists.
2074
+
2075
+ 2010-02-15 rocky <rockyb@rubyforge.org>
2076
+
2077
+ * processor/validate.rb: Work around bug in trying to stop at PC
2078
+ offset 0.
2079
+
2080
+ 2010-02-15 rocky <rockyb@rubyforge.org>
2081
+
2082
+ * README: Typo
2083
+
2084
+ 2010-02-15 rocky <rockyb@rubyforge.org>
2085
+
2086
+ * README, lib/rbdbgr.rb, processor/command/list.rb: rbdbgr.rb: Add
2087
+ Debugger.debug singleton. Set return code properly. list.rb: small
2088
+ bug in listing
2089
+
2090
+ 2010-02-14 rocky <rockyb@rubyforge.org>
2091
+
2092
+ * app/file.rb, processor/command/info_subcmd/iseq.rb,
2093
+ processor/validate.rb, test/unit/test-app-file.rb: Better
2094
+ instruction sequence finding in breakpoint command.
2095
+
2096
+ 2010-02-14 rocky <rockyb@rubyforge.org>
2097
+
2098
+ * app/file.rb, processor/command/disassemble.rb,
2099
+ processor/command/info_subcmd/iseq.rb: Use ISEQ__ in finding what to
2100
+ disassemble. file.rb: begin generic iseq lookup routine.
2101
+
2102
+ 2010-02-14 rocky <rockyb@rubyforge.org>
2103
+
2104
+ * app/file.rb, processor/command/info_subcmd/file.rb,
2105
+ processor/validate.rb, test/unit/test-app-file.rb: ISEQ_FILE__
2106
+ find_scripts created and moved from validate.rb to app/file.rb Use
2107
+ new routine in "info file".
2108
+
2109
+ 2010-02-14 rocky <rockyb@rubyforge.org>
2110
+
2111
+ * lib/rbdbgr.rb, processor/command/base/cmd.rb,
2112
+ processor/command/info_subcmd/file.rb, processor/command/list.rb,
2113
+ processor/validate.rb: validate.rb: more better use of
2114
+ SCRIPT_ISEQS__ list.rb: better handling of file names. Remove some
2115
+ bugs rbdbgr.rb: don't overwrite an existing valid SCRIPT_ISEQS__ or
2116
+ ISEQS__ cmd.rb: we use columnize so require it
2117
+
2118
+ 2010-02-13 rocky <rockyb@rubyforge.org>
2119
+
2120
+ * processor/command/list.rb: Update doc for "list" command
2121
+
2122
+ 2010-02-13 rocky <rockyb@rubyforge.org>
2123
+
2124
+ * processor/command/base/cmd.rb,
2125
+ processor/command/info_subcmd/file.rb,
2126
+ processor/command/info_subcmd/iseq.rb: Address bugs and usablilty in
2127
+ "info file".
2128
+
2129
+ 2010-02-13 rocky <rockyb@rubyforge.org>
2130
+
2131
+ * processor/command/info_subcmd/iseq.rb: Improve "info iseq" a
2132
+ little bit using ISEQ__
2133
+
2134
+ 2010-02-13 rocky <rockyb@rubyforge.org>
2135
+
2136
+ * processor/command/help.rb, processor/validate.rb,
2137
+ test/unit/test-cmd-help.rb: help.rb: Give help on command name for
2138
+ alias. validate.rb: allow lookup for iseq when there is only one.
2139
+ test-cmd-help.rb: more extensive testing.
2140
+
2141
+ 2010-02-12 rocky <rockyb@rubyforge.org>
2142
+
2143
+ * processor/command/list.rb, processor/validate.rb,
2144
+ test/unit/test-cmd-break.rb: Fix bug in "list" (no args) not
2145
+ centering properly. Allow list> and l> to show uncentered list.
2146
+
2147
+ 2010-02-12 rocky <rockyb@rubyforge.org>
2148
+
2149
+ * lib/rbdbgr.rb, processor/command/list.rb, processor/validate.rb:
2150
+ More use of ISEQ__
2151
+
2152
+ 2010-02-11 rocky <rockyb@rubyforge.org>
2153
+
2154
+ * processor/main.rb, processor/running.rb: EOF on user input was
2155
+ raising havoc. Until I think of something better...
2156
+
2157
+ 2010-02-11 rocky <rockyb@rubyforge.org>
2158
+
2159
+ * lib/rbdbgr.rb, profile/irbrc: lib/rbdbgr.rb: Set SCRIPT_ISEQS so
2160
+ this be used. profile/irbrc: note that you can use 'q' for quit.
2161
+
2162
+ 2010-02-11 rocky <rockyb@rubyforge.org>
2163
+
2164
+ * app/irb.rb, processor/command/base/submgr.rb,
2165
+ processor/command/irb.rb, processor/command/quit.rb,
2166
+ processor/command/set_subcmd/auto_subcmd/list.rb,
2167
+ processor/hook.rb, processor/running.rb: quit.rb: Add quit!, q, and
2168
+ q! aliases. ! is unconditional running.rb, irb.rb: Add "q" for quit
2169
+ to irb hook.rb list.rb: add/fix autolist
2170
+
2171
+ 2010-02-10 rocky <rockyb@rubyforge.org>
2172
+
2173
+ * processor/breakpoint.rb, processor/hook.rb, processor/main.rb:
2174
+ Move a few more things out of main.rb and more localized which I
2175
+ hope will help modularity.
2176
+
2177
+ 2010-02-09 rocky <rockyb@rubyforge.org>
2178
+
2179
+ * processor/command/set_subcmd/trace.rb,
2180
+ processor/command/show_subcmd/basename.rb,
2181
+ processor/command/show_subcmd/trace.rb, processor/help.rb:
2182
+ show_subcmd/trace.rb: Add 'show trace'. processor/help.rb: fix bug
2183
+ in summary help basename.rb: standalone correction. trace.rb: much
2184
+ more in the way of describing what's going on in the help.
2185
+
2186
+ 2010-02-09 rocky <rockyb@rubyforge.org>
2187
+
2188
+ * processor/command/set_subcmd/auto_subcmd/irb.rb,
2189
+ processor/command/set_subcmd/trace.rb, processor/default.rb,
2190
+ processor/hook.rb, processor/main.rb: Add "set trace" as a
2191
+ unconditional prehook.
2192
+
2193
+ 2010-02-09 rocky <rockyb@rubyforge.org>
2194
+
2195
+ * processor/breakpoint.rb, processor/default.rb, processor/hook.rb,
2196
+ processor/main.rb: Some code cleaning. Move code from main.rb into
2197
+ hook.rb and breakpoint.rb to reduce bulk of main and hopefully this
2198
+ increases modularity.
2199
+
2200
+ 2010-02-09 rocky <rockyb@rubyforge.org>
2201
+
2202
+ * processor/command/irb.rb,
2203
+ processor/command/set_subcmd/auto_subcmd/irb.rb, processor/hook.rb,
2204
+ processor/main.rb, test/unit/test-proc-hook.rb,
2205
+ test/unit/test-proc-validate.rb: First command hook (autoirb) added.
2206
+
2207
+
2208
+ 2010-02-07 rocky <rockyb@rubyforge.org>
2209
+
2210
+ * processor/hook.rb, processor/main.rb,
2211
+ test/functional/test-stepbug.rb: Just to get something started with
2212
+ respect to command hooks.
2213
+
2214
+ 2010-01-27 rocky <rockyb@rubyforge.org>
2215
+
2216
+ * processor/command/disassemble.rb, test/functional/test-step.rb:
2217
+ test-step.rb: make less sensitive to VM instruction generation.
2218
+ disassemble: %w() typo
2219
+
2220
+ 2010-01-27 R. Bernstein <rocky@gnu.org>
2221
+
2222
+ * test/functional/test-delete.rb: Add first delete functional test.
2223
+
2224
+
2225
+ 2010-01-27 rocky <rockyb@rubyforge.org>
2226
+
2227
+ * processor/breakpoint.rb, processor/command/delete.rb: Start delete
2228
+ command.
2229
+
2230
+ 2010-01-25 rocky <rockyb@rubyforge.org>
2231
+
2232
+ * app/brkptmgr.rb, test/unit/test-app-brkptmgr.rb: Track unique
2233
+ breakpoint offset locations for purposes of deleting breakpoints. We
2234
+ can have multiple breakpoints at a given iseq offsets.
2235
+
2236
+ 2010-01-11 rocky <rockyb@rubyforge.org>
2237
+
2238
+ * processor/command/set_subcmd/debug_subcmd/except.rb: Doc string
2239
+ Typo.
2240
+
2241
+ 2010-01-10 rocky <rockyb@rubyforge.org>
2242
+
2243
+ * test/unit/test-app-brkpt.rb, test/unit/test-app-brkptmgr.rb,
2244
+ test/unit/test-app-disassemble.rb, test/unit/test-app-frame.rb,
2245
+ test/unit/test-lib-brkpt.rb, test/unit/test-lib-brkptmgr.rb,
2246
+ test/unit/test-lib-disassemble.rb, test/unit/test-lib-frame.rb:
2247
+ Rename unit test with "lib" to "app" since "app" is where they now
2248
+ live.
2249
+
2250
+ 2010-01-09 rocky <rockyb@rubyforge.org>
2251
+
2252
+ * app/brkpt.rb, processor/command/info_subcmd/break.rb,
2253
+ processor/command/info_subcmd/file.rb,
2254
+ test/functional/test-break.rb, test/unit/test-cmd-endisable.rb: Fix
2255
+ bug in info break. Allow bp number to get reset, although what's
2256
+ really needed is a rework of the bp and manger interfaces. Get tests
2257
+ working again.
2258
+
2259
+ 2009-12-30 rocky <rockyb@rubyforge.org>
2260
+
2261
+ * test/unit/test-cmd-endisable.rb: One more wafer-thin test
2262
+
2263
+ 2009-12-30 rocky <rockyb@rubyforge.org>
2264
+
2265
+ * processor/breakpoint.rb, processor/command/disable.rb,
2266
+ processor/command/enable.rb, test/unit/cmd-helper.rb,
2267
+ test/unit/test-cmd-break.rb, test/unit/test-cmd-endisable.rb,
2268
+ test/unit/test-cmd-help.rb, test/unit/test-cmd-step.rb:
2269
+ breakpoint.rb: Report status correctly for disabling a breakpoint
2270
+ Start unit test for enable/disable commands test/unit/* DRY code via
2271
+ cmd-helper.rb
2272
+
2273
+ 2009-12-07 rocky <rockyb@rubyforge.org>
2274
+
2275
+ * app/core.rb, processor/command/set_subcmd/auto.rb,
2276
+ processor/command/set_subcmd/maxstring.rb,
2277
+ processor/command/set_subcmd/width.rb: maxstring.rb: dry code. More
2278
+ is needed. width.rb: was buggy - should now work core.rb: add core
2279
+ event debug setting
2280
+
2281
+ 2009-12-07 rocky <rockyb@rubyforge.org>
2282
+
2283
+ * app/default.rb, bin/rbdbgr, lib/rbdbgr.rb,
2284
+ processor/command/info_subcmd/program.rb,
2285
+ processor/command/restart.rb,
2286
+ processor/command/show_subcmd/args.rb,
2287
+ processor/command/show_subcmd/maxstring.rb, processor/mock.rb: Save
2288
+ initial current working directory for restart and get rid of it as a
2289
+ class variable. Add "show args" command. restart now uses "show
2290
+ args". DRY maxstring.rb
2291
+
2292
+ 2009-12-06 rocky <rockyb@rubyforge.org>
2293
+
2294
+ * lib/rbdbgr.rb,
2295
+ processor/command/set_subcmd/substitute_subcmd/string.rb: Make
2296
+ debugger &block is less broken, or rather broken in another way. Set
2297
+ substitute allows you to let it figure out what the iseq name is.
2298
+
2299
+ 2009-12-06 rocky <rockyb@rubyforge.org>
2300
+
2301
+ * Rakefile, app/.gitignore, app/Makefile, app/brkpt.rb,
2302
+ app/brkptmgr.rb, app/core.rb, app/default.rb, app/disassemble.rb,
2303
+ app/file.rb, app/frame.rb, app/irb.rb, app/mock.rb, app/run.rb,
2304
+ bin/rbdbgr, lib/brkpt.rb, lib/brkptmgr.rb, lib/core.rb,
2305
+ lib/dbgr-irb.rb, lib/default.rb, lib/disassemble.rb, lib/file.rb,
2306
+ lib/frame.rb, lib/mock.rb, lib/rbdbgr.rb, lib/run.rb,
2307
+ processor/breakpoint.rb, processor/command/break.rb,
2308
+ processor/command/continue.rb, processor/command/disable.rb,
2309
+ processor/command/disassemble.rb, processor/command/down.rb,
2310
+ processor/command/enable.rb, processor/command/frame.rb,
2311
+ processor/command/irb.rb, processor/command/restart.rb,
2312
+ processor/command/set_subcmd/debug.rb, processor/command/up.rb,
2313
+ processor/command/where.rb, processor/frame.rb, processor/main.rb,
2314
+ processor/mock.rb, processor/running.rb,
2315
+ test/unit/test-base-subcmd.rb, test/unit/test-cmd-break.rb,
2316
+ test/unit/test-cmd-help.rb, test/unit/test-cmd-step.rb,
2317
+ test/unit/test-lib-brkpt.rb, test/unit/test-lib-brkptmgr.rb,
2318
+ test/unit/test-lib-disassemble.rb, test/unit/test-lib-frame.rb,
2319
+ test/unit/test-proc-frame.rb, test/unit/test-proc-main.rb,
2320
+ test/unit/test-proc-validate.rb, test/unit/test-subcmd-help.rb: Move
2321
+ lib/*.rb (minus rbdbgr.rb) to app/ so these files don't get
2322
+ registered in requires. Cleaner, I think, than renaming file
2323
+ lib/irb.rb to lib/dbgr-irb.rb.
2324
+
2325
+ 2009-12-06 rocky <rockyb@rubyforge.org>
2326
+
2327
+ * Rakefile, bin/rbdbgr, lib/core.rb, lib/dbgr-irb.rb, lib/irb.rb,
2328
+ lib/rbdbgr.rb, processor/command/base/submgr.rb,
2329
+ processor/command/base/subsubmgr.rb,
2330
+ processor/command/info_subcmd/registers_subcmd/lfp.rb,
2331
+ processor/command/info_subcmd/registers_subcmd/sp.rb,
2332
+ processor/command/irb.rb, processor/command/list.rb,
2333
+ processor/command/set_subcmd/auto.rb,
2334
+ processor/command/set_subcmd/auto_subcmd/eval.rb,
2335
+ processor/command/set_subcmd/auto_subcmd/irb.rb,
2336
+ processor/command/set_subcmd/auto_subcmd/list.rb,
2337
+ processor/command/set_subcmd/debug.rb,
2338
+ processor/command/set_subcmd/debug_subcmd/except.rb,
2339
+ processor/command/set_subcmd/debug_subcmd/skip.rb,
2340
+ processor/command/set_subcmd/debug_subcmd/stack.rb,
2341
+ processor/command/set_subcmd/substitute.rb,
2342
+ processor/command/set_subcmd/substitute_subcmd/path.rb,
2343
+ processor/command/set_subcmd/substitute_subcmd/string.rb,
2344
+ processor/command/show_subcmd/auto.rb,
2345
+ processor/command/show_subcmd/auto_subcmd/eval.rb,
2346
+ processor/command/show_subcmd/auto_subcmd/list.rb,
2347
+ processor/command/show_subcmd/debug.rb,
2348
+ processor/command/show_subcmd/maxstring.rb, processor/main.rb,
2349
+ processor/mock.rb, rbdbgr.rb, test/functional/fn_helper.rb,
2350
+ test/unit/test-lib-brkpt.rb: lib/irb.rb -> lib/dbgr-irb.rb The name
2351
+ lib/irb.rb causes it to be seen in gem package and conflict with the
2352
+ real irb's irb.rb! For now rename. May however move everything
2353
+ except rbdbgr.rb out of lib. rbdbgr.rb -> lib/rbdbgr.rb : irb
2354
+ wasn't finding "require 'rbdbgr'" because rbdbgr seems to be
2355
+ expected to live in lib. Rakefile: Update homepage and make
2356
+ description different from summary to keep rake happy.
2357
+
2358
+ 2009-12-06 rocky <rockyb@rubyforge.org>
2359
+
2360
+ * processor/command/info_subcmd/iseq.rb: Picking up wrong arg in
2361
+ "info iseq ..."
2362
+
2363
+ 2009-12-06 rocky <rockyb@rubyforge.org>
2364
+
2365
+ * Rakefile, test/functional/test-step.rb,
2366
+ test/unit/test-cmd-kill.rb: Rakefile: add check:unit and
2367
+ check:functional to run tests one at a time test-step.rb: Dec 4
2368
+ change by nobu to pars. whihc adjusts line numbers for "def"
2369
+ (Redmine #2427) test-cmd-kill.rb: Back out of sending a signal since
2370
+ something in the bundled Rake processing barfs on this.
2371
+
2372
+ 2009-11-30 rocky <rockyb@rubyforge.org>
2373
+
2374
+ * README, interface/base_intf.rb, interface/script.rb,
2375
+ interface/user.rb, io/base_io.rb, io/input.rb, io/string_array.rb,
2376
+ processor/command/exit.rb, processor/command/quit.rb,
2377
+ processor/main.rb, rbdbgr.rb, test/unit/test-cmd-kill.rb,
2378
+ test/unit/test-cmd-quit.rb, test/unit/test-io-input.rb: Add 'quit'
2379
+ command. Add finalization routines (via at_exit). Add closed? to I/O
2380
+ routines. README: even I forget how to use
2381
+
2382
+ 2009-11-29 rocky <rockyb@rubyforge.org>
2383
+
2384
+ * processor/command/restart.rb: Add alias "run" for "restart"
2385
+
2386
+ 2009-11-08 rocky <rockyb@rubyforge.org>
2387
+
2388
+ * processor/command/finish.rb, processor/command/help.rb: In help
2389
+ for command, show aliases, if any.
2390
+
2391
+ 2009-11-07 rocky <rockyb@rubyforge.org>
2392
+
2393
+ * processor/command/base/cmd.rb, processor/command/base/subcmd.rb,
2394
+ processor/command/info_subcmd/registers_subcmd/sp.rb,
2395
+ processor/command/restart.rb, processor/help.rb,
2396
+ test/unit/test-proc-help.rb: Show restart args before confim
2397
+ prompting. Add another little test.
2398
+
2399
+ 2009-11-07 rocky <rockyb@rubyforge.org>
2400
+
2401
+ * processor/command/base/cmd.rb, processor/command/base/submgr.rb,
2402
+ processor/command/base/subsubmgr.rb, processor/command/set.rb,
2403
+ processor/command/set_subcmd/auto.rb,
2404
+ processor/command/set_subcmd/auto_subcmd/list.rb,
2405
+ processor/command/set_subcmd/debug.rb,
2406
+ processor/command/set_subcmd/substitute.rb,
2407
+ processor/command/show_subcmd/auto_subcmd/list.rb,
2408
+ processor/frame.rb, processor/help.rb, processor/main.rb,
2409
+ processor/validate.rb: Lots of little usability enhancements, mostly
2410
+ in help. Some bug fixes and DRYing some code.
2411
+
2412
+ 2009-11-06 rocky <rockyb@rubyforge.org>
2413
+
2414
+ * processor/command/base/subcmd.rb,
2415
+ processor/command/base/submgr.rb,
2416
+ processor/command/base/subsubmgr.rb, processor/command/set.rb,
2417
+ processor/command/set_subcmd/auto.rb,
2418
+ processor/command/set_subcmd/basename.rb,
2419
+ processor/command/set_subcmd/different.rb,
2420
+ processor/command/set_subcmd/events.rb: Allow "set autolist" or "set
2421
+ autoeval" for "set auto list" or "set auto eval".
2422
+
2423
+ 2009-11-06 R. Bernstein <rockyb@rubyforge.org>
2424
+
2425
+ * processor/command/base/submgr.rb,
2426
+ processor/command/base/subsubmgr.rb,
2427
+ processor/command/set_subcmd/auto_subcmd/.gitignore,
2428
+ processor/command/set_subcmd/auto_subcmd/irb.rb,
2429
+ processor/command/set_subcmd/auto_subcmd/list.rb,
2430
+ processor/command/show_subcmd/auto_subcmd/list.rb,
2431
+ processor/main.rb, processor/mock.rb, test/functional/test-step.rb:
2432
+ Add set/show auto list. In the process added pre-commands hook. Pick
2433
+ up SHORT_HELP from help in subcommands.
2434
+
2435
+ 2009-11-06 rocky <rockyb@rubyforge.org>
2436
+
2437
+ * processor/command/set_subcmd/events.rb: More detailed "set event"
2438
+ help.
2439
+
2440
+ 2009-11-05 rocky <rockyb@rubyforge.org>
2441
+
2442
+ * processor/command/info_subcmd/break.rb: Futzing with breakpoint
2443
+ display code some more.
2444
+
2445
+ 2009-11-05 R. Bernstein <rockyb@rubyforge.org>
2446
+
2447
+ * lib/brkpt.rb, test/unit/test-lib-brkpt.rb: Add some small unit
2448
+ tests
2449
+
2450
+ 2009-11-05 R. Bernstein <rockyb@rubyforge.org>
2451
+
2452
+ * lib/brkpt.rb, processor/command/list.rb: Bang on list command some
2453
+ more. Add another breakpoint icon: temporary.
2454
+
2455
+ 2009-11-04 rocky <rockyb@rubyforge.org>
2456
+
2457
+ * lib/brkptmgr.rb, processor/command/break.rb,
2458
+ processor/command/list.rb, processor/validate.rb,
2459
+ test/functional/test-break.rb, test/unit/test-cmd-break.rb: Add
2460
+ breakpoint indicators in "list" command. Show line number(s) when a
2461
+ breakpoint just set. Revise listing to use containers, rather than
2462
+ file names.
2463
+
2464
+ 2009-11-04 rocky <rockyb@rubyforge.org>
2465
+
2466
+ * processor/command/info_subcmd/registers_subcmd/helper.rb,
2467
+ processor/command/info_subcmd/registers_subcmd/lfp.rb: Show names of
2468
+ local variable. Correct index naming.
2469
+
2470
+ 2009-11-04 rocky <rockyb@rubyforge.org>
2471
+
2472
+ Merge branch 'master' of git@github.com:rocky/rbdbgr
2473
+
2474
+ 2009-11-04 rocky <rockyb@rubyforge.org>
2475
+
2476
+ * processor/command/base/subsubmgr.rb,
2477
+ processor/command/info_subcmd/registers.rb,
2478
+ processor/command/info_subcmd/registers_subcmd/helper.rb,
2479
+ processor/command/info_subcmd/registers_subcmd/lfp.rb,
2480
+ processor/command/info_subcmd/registers_subcmd/pc.rb,
2481
+ processor/command/info_subcmd/registers_subcmd/sp.rb,
2482
+ processor/validate.rb: subsubmgr.rb: Fix bug in "help command
2483
+ subcommand param". validate.rb: bug using wrong hash key.
2484
+ registers/*: longer help. lfp.rb: check range. I probably have
2485
+ indexing backwards and allow one too many. Perhaps more later.
2486
+
2487
+ 2009-11-02 R. Bernstein <rocky@gnu.org>
2488
+
2489
+ * test/functional/test-step.rb: Allow one or two !raise execptions
2490
+ in test.
2491
+
2492
+ 2009-11-01 rocky <rockyb@rubyforge.org>
2493
+
2494
+ * ChangeLog, Rakefile: Add task to create ChangeLog.
2495
+
2496
+ 2009-11-01 rocky <rockyb@rubyforge.org>
2497
+
2498
+ * processor/command/disassemble.rb, processor/validate.rb: Allow
2499
+ breakpoints and disassembly of Proc objects.
2500
+
2501
+ 2009-11-01 rocky <rockyb@rubyforge.org>
2502
+
2503
+ * lib/disassemble.rb, processor/command/disassemble.rb,
2504
+ test/unit/test-lib-disassemble.rb: Add breakpoint marks to
2505
+ instruction disassembly.
2506
+
2507
+ 2009-10-31 rocky <rockyb@rubyforge.org>
2508
+
2509
+ * processor/command/continue.rb, processor/command/irb.rb,
2510
+ processor/command/next.rb,
2511
+ processor/command/set_subcmd/different.rb,
2512
+ processor/command/step.rb, processor/main.rb, processor/running.rb,
2513
+ profile/irbrc, test/functional/test-step.rb: Go over some stepping
2514
+ oddities and bugs. Add command NEED_RUNNING: start putting tracking
2515
+ commands that need a running program. irb -d now sets global $frame.
2516
+ Fix bug in "finish" command and "set debug skip" now works.
2517
+
2518
+ 2009-10-29 rocky <rockyb@rubyforge.org>
2519
+
2520
+ * test/functional/test-step.rb: Recent svn up for Ruby 1.9 seems to
2521
+ give two events for an exception. Accept in for now.
2522
+
2523
+ 2009-10-28 R. Bernstein <rocky@gnu.org>
2524
+
2525
+ * emacs/.gitignore, emacs/AUTHORS, emacs/ChangeLog,
2526
+ emacs/Makefile.am, emacs/NEWS, emacs/README, emacs/configure.ac,
2527
+ emacs/rbdbg-file.el, emacs/rbdbg-load.el, emacs/rbdbg-loc.el,
2528
+ emacs/rbdbg-lochist.el, emacs/rbdbg-procbuf-var.el,
2529
+ emacs/rbdbg-regexp.el, emacs/rbdbg-scriptbuf-var.el,
2530
+ emacs/rbdbg-track-mode.el, emacs/rbdbg-track.el,
2531
+ emacs/rbdbg-window.el, emacs/rbdbgr-core.el,
2532
+ emacs/rbdbgr-regexp.el, emacs/rbdbgr-track-mode.el,
2533
+ emacs/rbdbgr.el, emacs/test/.gitignore, emacs/test/Makefile,
2534
+ emacs/test/behave.el, emacs/test/test-core.el,
2535
+ emacs/test/test-file.el, emacs/test/test-load.el,
2536
+ emacs/test/test-loc.el, emacs/test/test-lochist.el,
2537
+ emacs/test/test-regexp.el, emacs/test/test-regexp2.el,
2538
+ emacs/test/test-track.el: Emacs code has moved to emacs-dbgr.
2539
+
2540
+ 2009-10-28 rocky <rockyb@rubyforge.org>
2541
+
2542
+ * emacs/rbdbg-scriptbuf-var.el, emacs/rbdbgr-core.el,
2543
+ emacs/test/test-core.el: Suggest candidate Ruby files to debug --
2544
+ inch ever so forward in Emacs code.
2545
+
2546
+ 2009-10-27 R. Bernstein <rocky@gnu.org>
2547
+
2548
+ * emacs/rbdbg-procbuf-var.el, emacs/rbdbg-scriptbuf-var.el,
2549
+ emacs/rbdbg-track-mode.el, emacs/rbdbg-track.el,
2550
+ emacs/rbdbg-var.el, emacs/rbdbgr-core.el,
2551
+ emacs/test/test-regexp.el, emacs/test/test-track.el, lib/brkpt.rb,
2552
+ rbdbgr.rb: emacs/*: start to separate buffer-local vars for the
2553
+ process buffer from the buffer-local vars of the (top-level
2554
+ Ruby) script buffer. reset: mostly small doc-like changes.
2555
+
2556
+ 2009-10-26 rocky <rockyb@rubyforge.org>
2557
+
2558
+ * emacs/rbdbgr-core.el, emacs/test/test-core.el: Fix bugs in script
2559
+ args parsing.
2560
+
2561
+ 2009-10-25 rocky <rockyb@rubyforge.org>
2562
+
2563
+ * emacs/Makefile.am, emacs/rbdbgr-core.el, emacs/test/test-core.el:
2564
+ Work more on Emacs core at glacial pace. A command option processing
2565
+ routine was revised.
2566
+
2567
+ 2009-10-25 rocky <rockyb@rubyforge.org>
2568
+
2569
+ * processor/command/base/submgr.rb,
2570
+ processor/command/base/subsubmgr.rb: If only one help subcommand
2571
+ matchs a regexp, run help for that.
2572
+
2573
+ 2009-10-25 rocky <rockyb@rubyforge.org>
2574
+
2575
+ * emacs/rbdbg-track-mode.el, emacs/rbdbgr-core.el,
2576
+ emacs/rbdbgr-track-mode.el, processor/command/info_subcmd/iseq.rb:
2577
+ iseq.rb: Show more information in "info seq". emacs/*: Key-bindings
2578
+ workaround in rbdbgr-track-mode and other fixes.
2579
+
2580
+ 2009-10-25 rocky <rockyb@rubyforge.org>
2581
+
2582
+ * emacs/.gitignore, emacs/Makefile.am, emacs/rbdbg-regexp.el,
2583
+ emacs/rbdbg-track-mode.el, emacs/rbdbg-track.el,
2584
+ emacs/rbdbgr-core.el, emacs/rbdbgr-regexp.el,
2585
+ emacs/rbdbgr-track-mode.el, emacs/test/test-regexp.el,
2586
+ emacs/test/test-regexp2.el, processor/command/disassemble.rb: Make
2587
+ slight progress on getting Emacs front-end to debugger. Add
2588
+ goto-traceback-line and goto-dollarslash-traceback line.
2589
+
2590
+ 2009-10-24 rocky <rockyb@rubyforge.org>
2591
+
2592
+ * processor/command/disassemble.rb,
2593
+ processor/command/info_subcmd/iseq.rb: iseq.rb: Show instruction
2594
+ sequence breakpoints disassemble.rb: short by default (option is now
2595
+ "full") allow '.' for current instruction sequence.
2596
+
2597
+ 2009-10-24 rocky <rockyb@rubyforge.org>
2598
+
2599
+ * emacs/rbdbg-track.el, emacs/test/test-regexp.el,
2600
+ processor/command/base/subsubmgr.rb,
2601
+ processor/command/info_subcmd/registers.rb,
2602
+ processor/command/info_subcmd/registers_subcmd/dfp.rb,
2603
+ processor/command/info_subcmd/registers_subcmd/helper.rb,
2604
+ processor/command/info_subcmd/registers_subcmd/lfp.rb,
2605
+ processor/command/info_subcmd/registers_subcmd/pc.rb,
2606
+ processor/command/info_subcmd/registers_subcmd/sp.rb: Add "info reg
2607
+ dfp" and DRY register array code Emacs: defensive programming when
2608
+ not matching a line number
2609
+
2610
+ 2009-10-24 rocky <rockyb@rubyforge.org>
2611
+
2612
+ * processor/command/base/subsubmgr.rb,
2613
+ processor/command/info_subcmd/registers_subcmd/lfp.rb,
2614
+ processor/command/info_subcmd/registers_subcmd/pc.rb,
2615
+ processor/command/info_subcmd/registers_subcmd/sp.rb,
2616
+ test/functional/test-step.rb: Fix up subcommand help, e.g "help info
2617
+ reg *"
2618
+
2619
+ 2009-10-24 rocky <rockyb@rubyforge.org>
2620
+
2621
+ * processor/command/set_subcmd/events.rb: Show event after setting
2622
+ them.
2623
+
2624
+ 2009-10-23 rocky <rockyb@rubyforge.org>
2625
+
2626
+ * emacs/rbdbg-regexp.el, emacs/test/test-regexp.el,
2627
+ processor/command/info_subcmd/iseq.rb, processor/command/list.rb,
2628
+ processor/command/set_subcmd/substitute_subcmd/path.rb,
2629
+ processor/command/set_subcmd/substitute_subcmd/string.rb,
2630
+ processor/frame.rb, processor/location.rb, processor/main.rb,
2631
+ processor/validate.rb: Add "set substitute string" to map string
2632
+ eval names into a (temporary) file. emacs: expand regexp to deal
2633
+ with "via" or "remap" strings.
2634
+
2635
+ 2009-10-23 R. Bernstein <rocky@gnu.org>
2636
+
2637
+ * processor/command/info_subcmd/file.rb: Bug in running "info file"
2638
+
2639
+
2640
+ 2009-10-23 R. Bernstein <rocky@gnu.org>
2641
+
2642
+ * processor/command/info_subcmd/iseq.rb,
2643
+ processor/command/info_subcmd/program.rb,
2644
+ processor/command/set_subcmd/substitute_subcmd/.gitignore,
2645
+ processor/main.rb: Add "info iseq"
2646
+
2647
+ 2009-10-23 R. Bernstein <rocky@gnu.org>
2648
+
2649
+ Merge branch 'master' of git@github.com:rocky/rbdbgr
2650
+
2651
+ 2009-10-23 R. Bernstein <rocky@gnu.org>
2652
+
2653
+ * processor/command/info_subcmd/registers_subcmd/lfp.rb,
2654
+ processor/command/info_subcmd/registers_subcmd/pc.rb,
2655
+ processor/command/info_subcmd/registers_subcmd/sp.rb,
2656
+ processor/command/set_subcmd/substitute.rb,
2657
+ processor/command/set_subcmd/substitute_subcmd/path.rb,
2658
+ processor/main.rb: Add gdb "set substitute path" in rudimentary
2659
+ form.
2660
+
2661
+ 2009-10-22 rocky <rockyb@rubyforge.org>
2662
+
2663
+ * processor/frame.rb, processor/main.rb: Fix bug in eval via.
2664
+
2665
+ 2009-10-22 rocky <rockyb@rubyforge.org>
2666
+
2667
+ * processor/command/base/cmd.rb,
2668
+ processor/command/info_subcmd/file.rb, processor/main.rb: main.rb,
2669
+ file.rb: Remapping <internal:prelude> and more generally any file
2670
+ remapped shows up cmd.rb, file.rb: Show breakpoint numbers in the
2671
+ way numbers are generally handled. in location line and has "info
2672
+ file" properties shown.
2673
+
2674
+ 2009-10-22 rocky <rockyb@rubyforge.org>
2675
+
2676
+ * data/prelude.rb, emacs/rbdbgr-core.el, emacs/rbdbgr-regexp.el,
2677
+ irbrc, lib/irb.rb, processor/main.rb, profile/irbrc: main: Show
2678
+ <internal:prelude> via LineCache::remap. More work is needed emacs:
2679
+ adding more of the non-trace code. Still far from finished.
2680
+
2681
+ 2009-10-21 R. Bernstein <rocky@gnu.org>
2682
+
2683
+ * emacs/rbdbg-regexp.el, emacs/rbdbg-track-mode.el,
2684
+ emacs/rbdbgr-core.el, emacs/rbdbgr-regexp.el, emacs/rbdbgr.el,
2685
+ emacs/test/test-regexp.el, emacs/test/test-track.el: Baby steps
2686
+ towards adding rbdbgr emacs interface
2687
+
2688
+ 2009-10-21 R. Bernstein <rocky@gnu.org>
2689
+
2690
+ * emacs/rbdbg-window.el: Don't count th mini-buffer as a separate
2691
+ window in one-window-p.
2692
+
2693
+ 2009-10-21 R. Bernstein <rocky@gnu.org>
2694
+
2695
+ * lib/brkptmgr.rb, test/functional/test-finish.rb,
2696
+ test/functional/test-step.rb: lib/brkptmgr.rb: remove debug output
2697
+ test/functional/*: silence tests
2698
+
2699
+ 2009-10-21 rocky <rockyb@rubyforge.org>
2700
+
2701
+ * lib/brkptmgr.rb, processor/breakpoint.rb, processor/main.rb:
2702
+ Handle temporary breakpoints correctly now
2703
+
2704
+ 2009-10-21 rocky <rockyb@rubyforge.org>
2705
+
2706
+ * processor/breakpoint.rb, processor/command/disassemble.rb,
2707
+ processor/main.rb, processor/validate.rb: Fix various bugs in/off of
2708
+ "disassemble" command, and showing internal debugger traceback, etc.
2709
+
2710
+
2711
+ 2009-10-20 rocky <rockyb@rubyforge.org>
2712
+
2713
+ * processor/command/info_subcmd/registers_subcmd/lfp.rb,
2714
+ processor/command/show_subcmd/auto_subcmd/eval.rb,
2715
+ processor/command/show_subcmd/auto_subcmd/irb.rb,
2716
+ processor/command/show_subcmd/maxstring.rb: Small fixes
2717
+
2718
+ 2009-10-20 rocky <rockyb@rubyforge.org>
2719
+
2720
+ * processor/command/finish.rb, processor/command/next.rb,
2721
+ processor/command/show_subcmd/maxstring.rb,
2722
+ processor/command/step.rb: Small docstring improvements
2723
+
2724
+ 2009-10-20 rocky <rockyb@rubyforge.org>
2725
+
2726
+ * processor/command/set_subcmd/auto.rb,
2727
+ processor/command/set_subcmd/debug.rb,
2728
+ processor/command/set_subcmd/debug_subcmd/.gitignore,
2729
+ processor/command/set_subcmd/debug_subcmd/except.rb,
2730
+ processor/command/set_subcmd/debug_subcmd/skip.rb,
2731
+ processor/command/set_subcmd/debug_subcmd/stack.rb,
2732
+ processor/command/set_subcmd/debugstack.rb,
2733
+ processor/command/show_subcmd/auto_subcmd/eval.rb,
2734
+ processor/command/show_subcmd/debug.rb,
2735
+ processor/command/show_subcmd/debug_subcmd/.gitignore,
2736
+ processor/command/show_subcmd/debug_subcmd/except.rb,
2737
+ processor/command/show_subcmd/debug_subcmd/skip.rb,
2738
+ processor/command/show_subcmd/debug_subcmd/stack.rb,
2739
+ processor/command/show_subcmd/debugstack.rb,
2740
+ processor/command/where.rb, processor/default.rb, processor/main.rb:
2741
+ main.rb: Don't crap out on an unhandled exception in running a
2742
+ command. We now have enough of the debugger working where we can
2743
+ dynamically investicagate and fix things. Add "set/show debug"
2744
+ subcommands for turning on/off internal debugger debugging.
2745
+
2746
+ 2009-10-20 rocky <rockyb@rubyforge.org>
2747
+
2748
+ * processor/command/continue.rb, processor/running.rb:
2749
+ processor/running.rb: Go back to no argument continue
2750
+
2751
+ 2009-10-20 rocky <rockyb@rubyforge.org>
2752
+
2753
+ * lib/disassemble.rb, processor/command/disassemble.rb,
2754
+ test/unit/test-lib-disassemble.rb: Fix "disassemble" bug where we
2755
+ might mark multiple locations as current. Add routine to split by
2756
+ offset number in prepration for a more selective disassemble
2757
+ command. Allow one to disassemble without sub disassembly of
2758
+ embedded iseqs.
2759
+
2760
+ 2009-10-20 R. Bernstein <rocky@gnu.org>
2761
+
2762
+ * lib/brkptmgr.rb, processor/command/break.rb,
2763
+ processor/validate.rb, test/unit/test-cmd-break.rb,
2764
+ test/unit/test-lib-brkptmgr.rb: Remove a bug in the "break" command.
2765
+ Start a unit test for this.
2766
+
2767
+ 2009-10-20 R. Bernstein <rocky@gnu.org>
2768
+
2769
+ * processor/command/break.rb, processor/command/continue.rb,
2770
+ processor/validate.rb: DRY breakpoint position code.
2771
+
2772
+ 2009-10-20 R. Bernstein <rocky@gnu.org>
2773
+
2774
+ * processor/breakpoint.rb, processor/command/break.rb,
2775
+ processor/command/continue.rb, processor/main.rb,
2776
+ processor/running.rb, processor/validate.rb: Fix bugs in "break"
2777
+ command; we now allow one to use a method name to start searching
2778
+ for the line number/offset.
2779
+
2780
+ 2009-10-20 rocky <rockyb@rubyforge.org>
2781
+
2782
+ * processor/breakpoint.rb, processor/command/break.rb,
2783
+ processor/validate.rb: Necessary cleanup in preparation for adding
2784
+ breakpoint using method and instruction-sequence names.
2785
+
2786
+ 2009-10-19 rocky <rockyb@rubyforge.org>
2787
+
2788
+ * processor/command/info_subcmd/break.rb: Add object id in hex to
2789
+ instruction sequence name.
2790
+
2791
+ 2009-10-19 rocky <rockyb@rubyforge.org>
2792
+
2793
+ * processor/command/break.rb, processor/main.rb,
2794
+ test/functional/fn_helper.rb, test/functional/test-break.rb:
2795
+ main.rb: Fix bug in "disable" command. break.rb: Canonicalize name
2796
+ in container. test/* grow for testing breakpoints.
2797
+
2798
+ 2009-10-19 rocky <rockyb@rubyforge.org>
2799
+
2800
+ * lib/brkptmgr.rb, lib/core.rb, processor/main.rb,
2801
+ test/functional/test-next.rb: Fix bug in next!
2802
+
2803
+ 2009-10-19 R. Bernstein <rocky@gnu.org>
2804
+
2805
+ * processor/command/disable.rb: Add "disable" command. More work is
2806
+ needed. Bugs in handling enable/disable.
2807
+
2808
+ 2009-10-19 R. Bernstein <rocky@gnu.org>
2809
+
2810
+ * lib/brkpt.rb, processor/breakpoint.rb,
2811
+ processor/command/break.rb, processor/command/enable.rb,
2812
+ processor/running.rb: processor/command: add an "enable" command.
2813
+ processor/{breakpoint,running}.rb: move breakpoint code to a
2814
+ separate file. processor/command/break.rb: category should be
2815
+ "breakpoint", not "running" lib/brkpt.rb: add enabled=
2816
+
2817
+ 2009-10-19 R. Bernstein <rocky@gnu.org>
2818
+
2819
+ * processor/command/break.rb: Fix up docstring to break. Allow
2820
+ "break" with no parameters.
2821
+
2822
+ 2009-10-19 R. Bernstein <rocky@gnu.org>
2823
+
2824
+ * processor/command/break.rb: Doc typo
2825
+
2826
+ 2009-10-19 rocky <rockyb@rubyforge.org>
2827
+
2828
+ * lib/brkpt.rb, lib/brkptmgr.rb, lib/disassemble.rb,
2829
+ processor/command/break.rb, processor/command/info_subcmd/break.rb,
2830
+ processor/command/info_subcmd/file.rb,
2831
+ processor/command/info_subcmd/frame.rb,
2832
+ processor/command/info_subcmd/program.rb: command/info_sub/break.rb:
2833
+ Add "info break" command. command/{break.rb,info_sub/program.rb}:
2834
+ Use instruction sequence names to start to disambiguate locations.
2835
+ lib/break.rb: Add ignore field to breakpoint object.
2836
+ lib/brkptmgr.rb: add more of the useful Enumerable operators to
2837
+ class lib/disassemble.rb: note flaws we currently have
2838
+
2839
+ 2009-10-18 rocky <rockyb@rubyforge.org>
2840
+
2841
+ * processor/command/info_subcmd/file.rb,
2842
+ processor/command/info_subcmd/return.rb,
2843
+ processor/command/set_subcmd/events.rb, processor/running.rb: Add
2844
+ '.' for current file. info xx lines -> info xx brkpts running.rb:
2845
+ break had set a temporary rather than permanent breakpoint.
2846
+
2847
+ 2009-10-18 rocky <rockyb@rubyforge.org>
2848
+
2849
+ * processor/running.rb: Search all iseq's in current, thanks to
2850
+ child_iseqs.
2851
+
2852
+ 2009-10-18 rocky <rockyb@rubyforge.org>
2853
+
2854
+ * interface/base_intf.rb: One FIXME fixed
2855
+
2856
+ 2009-10-18 rocky <rockyb@rubyforge.org>
2857
+
2858
+ * lib/core.rb: Small doc typo
2859
+
2860
+ 2009-10-18 rocky <rockyb@rubyforge.org>
2861
+
2862
+ * test/unit/test-lib-brkpt.rb: track breakpoint interface change.
2863
+
2864
+ 2009-10-18 rocky <rockyb@rubyforge.org>
2865
+
2866
+ * processor/command/base/submgr.rb,
2867
+ processor/command/base/subsubcmd.rb,
2868
+ processor/command/base/subsubmgr.rb,
2869
+ processor/command/info_subcmd/file.rb,
2870
+ processor/command/info_subcmd/frame.rb,
2871
+ processor/command/info_subcmd/registers.rb,
2872
+ processor/command/info_subcmd/return.rb, processor/command/list.rb,
2873
+ processor/command/set_subcmd/auto.rb,
2874
+ processor/command/set_subcmd/auto_sub/eval.rb,
2875
+ processor/command/set_subcmd/auto_sub/irb.rb,
2876
+ processor/command/set_subcmd/auto_subcmd/eval.rb,
2877
+ processor/command/set_subcmd/auto_subcmd/irb.rb,
2878
+ processor/command/show_subcmd/auto.rb: Add "info file" command. Fix
2879
+ "set auto" subcommand. Remove extra \n in "List subcommands" help.
2880
+ Tidy up code more.
2881
+
2882
+ 2009-10-17 rocky <rockyb@rubyforge.org>
2883
+
2884
+ * lib/brkpt.rb, lib/brkptmgr.rb, processor/command/base/cmd.rb,
2885
+ processor/command/break.rb, processor/command/continue.rb,
2886
+ processor/command/info_subcmd/frame.rb,
2887
+ processor/command/info_subcmd/program.rb,
2888
+ processor/command/info_subcmd/registers.rb,
2889
+ processor/command/info_subcmd/return.rb, processor/main.rb,
2890
+ processor/mock.rb, processor/msg.rb, processor/running.rb,
2891
+ test/unit/test-lib-brkptmgr.rb: Lots of little changes... main.rb:
2892
+ Check breakpoint condition and find breakpoint command/info_subcmd:
2893
+ add PREFIX for future use command/info_subcmd/registers.rb: Minimum
2894
+ abbrev is now "reg" since there is a "return" command/break.rb: "b"
2895
+ is an alias for "break" lib/brkpt.rb: add enabled parameter, stay
2896
+ clear of name "binding" lib/brkptmgr.rb: add a "find" and "size"
2897
+ commands, and access to list. command/*: complete I/O routine with
2898
+ msg_nocr; DRY standalone code. running.rb: remove debug code.
2899
+
2900
+ 2009-10-17 rocky <rockyb@rubyforge.org>
2901
+
2902
+ * Rakefile, bin/rbdbgr, lib/brkpt.rb,
2903
+ processor/command/base/cmd.rb, processor/command/base/subcmd.rb,
2904
+ processor/command/base/subsubcmd.rb, processor/command/break.rb,
2905
+ processor/command/continue.rb,
2906
+ processor/command/set_subcmd/auto.rb,
2907
+ processor/command/set_subcmd/auto_sub/eval.rb,
2908
+ processor/command/set_subcmd/auto_sub/irb.rb,
2909
+ processor/command/show.rb,
2910
+ processor/command/show_subcmd/auto_subcmd/eval.rb,
2911
+ processor/command/show_subcmd/auto_subcmd/irb.rb,
2912
+ processor/running.rb: Add a minimal breakpoint command. Add some gem
2913
+ install workarounds. Redmove need for short help constant in
2914
+ subcommands.
2915
+
2916
+ 2009-10-17 rocky <rockyb@rubyforge.org>
2917
+
2918
+ * processor/command/set_subcmd/auto_sub/eval.rb,
2919
+ processor/command/set_subcmd/auto_sub/irb.rb,
2920
+ processor/command/set_subcmd/autoeval.rb,
2921
+ processor/command/set_subcmd/autoirb.rb: Make {set,show}
2922
+ auto{eval,irb} into sub command More hacking to get gem installation
2923
+ work. Not perfect yet.
2924
+
2925
+ 2009-10-17 rocky <rockyb@rubyforge.org>
2926
+
2927
+ * Rakefile, bin/rbdbgr: Gem package now installs properly.
2928
+
2929
+ 2009-10-17 rocky <rockyb@rubyforge.org>
2930
+
2931
+ * lib/brkpt.rb, lib/brkptmgr.rb, lib/core.rb,
2932
+ processor/command/base/cmd.rb, processor/command/base/subcmd.rb,
2933
+ processor/command/base/submgr.rb,
2934
+ processor/command/base/subsubcmd.rb,
2935
+ processor/command/base/subsubmgr.rb, processor/command/base_cmd.rb,
2936
+ processor/command/base_subcmd.rb, processor/command/base_submgr.rb,
2937
+ processor/command/base_subsubcmd.rb,
2938
+ processor/command/base_subsubmgr.rb, processor/command/continue.rb,
2939
+ processor/command/disassemble.rb, processor/command/down.rb,
2940
+ processor/command/exit.rb, processor/command/finish.rb,
2941
+ processor/command/frame.rb, processor/command/help.rb,
2942
+ processor/command/info.rb, processor/command/info_subcmd/frame.rb,
2943
+ processor/command/info_subcmd/program.rb,
2944
+ processor/command/info_subcmd/registers.rb,
2945
+ processor/command/info_subcmd/registers_subcmd/lfp.rb,
2946
+ processor/command/info_subcmd/registers_subcmd/pc.rb,
2947
+ processor/command/info_subcmd/registers_subcmd/sp.rb,
2948
+ processor/command/info_subcmd/return.rb, processor/command/irb.rb,
2949
+ processor/command/kill.rb, processor/command/list.rb,
2950
+ processor/command/next.rb, processor/command/nocache.rb,
2951
+ processor/command/restart.rb, processor/command/set.rb,
2952
+ processor/command/set_subcmd/autoeval.rb,
2953
+ processor/command/set_subcmd/autoirb.rb,
2954
+ processor/command/set_subcmd/basename.rb,
2955
+ processor/command/set_subcmd/debugstack.rb,
2956
+ processor/command/set_subcmd/different.rb,
2957
+ processor/command/set_subcmd/events.rb,
2958
+ processor/command/set_subcmd/maxstring.rb,
2959
+ processor/command/set_subcmd/width.rb, processor/command/show.rb,
2960
+ processor/command/show_subcmd/auto.rb,
2961
+ processor/command/show_subcmd/auto_subcmd/eval.rb,
2962
+ processor/command/show_subcmd/auto_subcmd/irb.rb,
2963
+ processor/command/show_subcmd/basename.rb,
2964
+ processor/command/show_subcmd/debugstack.rb,
2965
+ processor/command/show_subcmd/different.rb,
2966
+ processor/command/show_subcmd/events.rb,
2967
+ processor/command/show_subcmd/maxstring.rb,
2968
+ processor/command/show_subcmd/width.rb,
2969
+ processor/command/source.rb, processor/command/step.rb,
2970
+ processor/command/up.rb, processor/command/where.rb,
2971
+ processor/main.rb, processor/running.rb, processor/subcmd.rb,
2972
+ test/functional/test-step.rb, test/unit/test-base-subcmd.rb,
2973
+ test/unit/test-lib-brkpt.rb: lib/brkpt.rb: add enable/disable
2974
+ fields; set default condition "true" lib/brkptmgr.rb: fill out
2975
+ breakpoint manager more lib/core.rb: add switch and vm to unmaskable
2976
+ events processor/command/base*.rb: move to directory
2977
+ processor/command test/functional/test-step.rb: reinstate exception
2978
+ testing (Todo: nuke VM and sw events in testing)
2979
+
2980
+ 2009-10-17 rocky <rockyb@rubyforge.org>
2981
+
2982
+ * lib/brkptmgr.rb, processor/command/base_cmd.rb,
2983
+ processor/command/base_submgr.rb,
2984
+ processor/command/base_subsubmgr.rb, processor/command/help.rb,
2985
+ processor/subcmd.rb: help.rb, base_submgr.rb: Allow regexp matching
2986
+ of command names for help listing. Idea courtesy of Michael Lord
2987
+ Welles. base_subcmd.rb + above: DRY columnize code brkptmgr.rb:
2988
+ Fix stupid syntax bug subcmd.rb: lookup() add optional parameter to
2989
+ decide on whether to lookup by regexp or not.
2990
+
2991
+ 2009-10-17 rocky <rockyb@rubyforge.org>
2992
+
2993
+ * lib/brkpt.rb, lib/brkptmgr.rb, lib/core.rb,
2994
+ processor/command/continue.rb, test/unit/test-lib-brkpt.rb: Start
2995
+ breakpoint handling. Kind of hacky and not bug free, but it's a good
2996
+ start.
2997
+
2998
+ 2009-10-16 rocky <rockyb@rubyforge.org>
2999
+
3000
+ * lib/brkpt.rb, test/unit/test-lib-brkpt.rb,
3001
+ test/unit/test-lib-frame.rb: Start defining a breakpoint object.
3002
+
3003
+ 2009-10-16 R. Bernstein <rocky@gnu.org>
3004
+
3005
+ * processor/main.rb: Add breakpoint event.
3006
+
3007
+ 2009-10-14 R. Bernstein <rocky@gnu.org>
3008
+
3009
+ * processor/command/base_subcmd.rb,
3010
+ processor/command/base_subsubcmd.rb,
3011
+ processor/command/info_subcmd/registers.rb,
3012
+ processor/command/list.rb,
3013
+ processor/command/set_subcmd/autoeval.rb,
3014
+ processor/command/set_subcmd/different.rb,
3015
+ processor/command/set_subcmd/maxstring.rb,
3016
+ processor/command/show_subcmd/auto.rb,
3017
+ processor/command/show_subcmd/debugstack.rb,
3018
+ processor/command/show_subcmd/events.rb,
3019
+ processor/command/show_subcmd/maxstring.rb,
3020
+ processor/command/show_subcmd/width.rb, processor/validate.rb: Pick
3021
+ up short help strings. validate.rb: parse_position() fix bug in
3022
+ calling get_an_int.
3023
+
3024
+ 2009-10-14 R. Bernstein <rocky@gnu.org>
3025
+
3026
+ * processor/command/info_subcmd/registers.rb: Small doc grammar
3027
+ change.
3028
+
3029
+ 2009-10-14 R. Bernstein <rocky@gnu.org>
3030
+
3031
+ * processor/command/set_subcmd/autoeval.rb,
3032
+ processor/command/set_subcmd/different.rb,
3033
+ processor/command/set_subcmd/maxstring.rb,
3034
+ processor/command/show_subcmd/maxstring.rb: Temporary: Add explicit
3035
+ SHORT_HELP until I fix to split off only the first line of HELP.
3036
+
3037
+ 2009-10-14 R. Bernstein <rocky@gnu.org>
3038
+
3039
+ * processor/command/set_subcmd/maxstring.rb,
3040
+ processor/command/set_subcmd/width.rb,
3041
+ processor/command/show_subcmd/maxstring.rb,
3042
+ processor/command/show_subcmd/width.rb, processor/validate.rb:
3043
+ validate.rb: wasn't respecting min/max limits */maxstring.rb: add
3044
+ set/show maximum string length width.rb: make standalone more real
3045
+ and do more.
3046
+
3047
+ 2009-10-14 R. Bernstein <rocky@gnu.org>
3048
+
3049
+ * processor/command/base_subsubmgr.rb, processor/command/help.rb,
3050
+ processor/command/info_subcmd/registers.rb,
3051
+ processor/command/info_subcmd/registers_subcmd/.gitignore,
3052
+ processor/command/info_subcmd/registers_subcmd/lfp.rb,
3053
+ processor/command/info_subcmd/registers_subcmd/pc.rb,
3054
+ processor/command/info_subcmd/registers_subcmd/sp.rb,
3055
+ processor/command/show_subcmd/auto.rb, processor/default.rb,
3056
+ processor/msg.rb: complete "info registers", adding "info register
3057
+ lfp". Tidy help * output. default.rb: add saferep to truncate long
3058
+ strings.
3059
+
3060
+ 2009-10-14 rocky <rockyb@rubyforge.org>
3061
+
3062
+ * processor/command/info_subcmd/pc.rb,
3063
+ processor/command/info_subcmd/registers.rb,
3064
+ processor/command/info_subcmd/registers_subcmd/pc.rb,
3065
+ processor/command/info_subcmd/registers_subcmd/sp.rb,
3066
+ processor/command/info_subcmd/sp.rb,
3067
+ processor/command/show_subcmd/auto.rb: info {pc,sp} -> info
3068
+ registers {pc,sp}
3069
+
3070
+ 2009-10-13 rocky <rockyb@rubyforge.org>
3071
+
3072
+ * processor/command/base_submgr.rb,
3073
+ processor/command/base_subsubmgr.rb,
3074
+ processor/command/show_subcmd/auto.rb,
3075
+ processor/command/show_subcmd/auto_subcmd/eval.rb,
3076
+ processor/command/show_subcmd/auto_subcmd/irb.rb,
3077
+ processor/command/show_subcmd/autoeval.rb,
3078
+ processor/command/show_subcmd/autoirb.rb: sub commands of 'show
3079
+ auto' works, more or less. Remove 'show autoeval' and 'show autoirb'
3080
+ in favor of 'show auto eval' and 'show auto irb'.
3081
+
3082
+ 2009-10-13 R. Bernstein <rocky@gnu.org>
3083
+
3084
+ * processor/command/base_submgr.rb,
3085
+ processor/command/base_subsubcmd.rb,
3086
+ processor/command/base_subsubmgr.rb: "show auto eval" now works.
3087
+ However, the "help" command needs help.
3088
+
3089
+ 2009-10-12 rocky <rockyb@rubyforge.org>
3090
+
3091
+ * lib/core.rb, processor/command/base_subcmd.rb,
3092
+ processor/command/base_submgr.rb,
3093
+ processor/command/base_subsubcmd.rb,
3094
+ processor/command/base_subsubmgr.rb, processor/command/nocache.rb,
3095
+ processor/command/show.rb, processor/command/show_subcmd/auto.rb,
3096
+ processor/command/show_subcmd/auto_subcmd/.gitignore,
3097
+ processor/command/show_subcmd/auto_subcmd/eval.rb,
3098
+ processor/command/show_subcmd/autoirb.rb,
3099
+ processor/command/show_subcmd/basename.rb, processor/subcmd.rb:
3100
+ "show auto eval" close to working.
3101
+
3102
+ 2009-10-10 rocky <rockyb@rubyforge.org>
3103
+
3104
+ * processor/command/base_subcmd.rb,
3105
+ processor/command/base_submgr.rb,
3106
+ processor/command/base_subsubmgr.rb,
3107
+ processor/command/info_subcmd/pc.rb,
3108
+ processor/command/show_subcmd/auto.rb,
3109
+ processor/command/show_subcmd/trace.rb.try: pc.rb: "info pc" Start
3110
+ support for sub sub commands.
3111
+
3112
+ 2009-10-09 rocky <rockyb@rubyforge.org>
3113
+
3114
+ * processor/command/show_subcmd/trace.rb,
3115
+ processor/command/show_subcmd/trace.rb.try,
3116
+ processor/command/show_subcmd/width.rb, processor/mock.rb: trace.rb:
3117
+ not ready yet for sub-subcommands width: fix standalone bug mock.rb:
3118
+ Add standalone test
3119
+
3120
+ 2009-10-05 rocky <rockyb@rubyforge.org>
3121
+
3122
+ * lib/frame.rb, processor/command/info_subcmd/program.rb: Small
3123
+ grammar thing
3124
+
3125
+ 2009-09-30 rocky <rockyb@rubyforge.org>
3126
+
3127
+ * processor/command/info_subcmd/frame.rb,
3128
+ processor/command/info_subcmd/pc.rb,
3129
+ processor/command/info_subcmd/registers.rb: Add "info registers" in
3130
+ the spirit of gdb. Remove "info pc" as this is now covered by "info
3131
+ registers". frame.rb: now shows: manditory parameters after optional
3132
+ ones.
3133
+
3134
+ 2009-09-30 rocky <rockyb@rubyforge.org>
3135
+
3136
+ * lib/frame.rb, processor/frame.rb: method prototypes now show
3137
+ optional parameters, and splatted rest or block parameters (when
3138
+ given)
3139
+
3140
+ 2009-09-30 R. Bernstein <rocky@gnu.org>
3141
+
3142
+ * processor/command/info_subcmd/frame.rb, processor/main.rb:
3143
+ main.rb: check that commands that need a stack have one.
3144
+ info_subcmd/frame.rb: DRY code.
3145
+
3146
+ 2009-09-29 R. Bernstein <rocky@gnu.org>
3147
+
3148
+ * processor/command/info_subcmd/frame.rb,
3149
+ processor/command/info_subcmd/return.rb: Adjust sp for corrected
3150
+ rb-threadframe
3151
+
3152
+ 2009-09-29 R. Bernstein <rocky@gnu.org>
3153
+
3154
+ * processor/command/info_subcmd/pc.rb,
3155
+ processor/command/info_subcmd/program.rb,
3156
+ processor/command/info_subcmd/return.rb,
3157
+ processor/command/info_subcmd/sp.rb, test/functional/.gitignore,
3158
+ test/unit/test-cmd-kill.rb: pc.rb, sp.rb: add "info pc" and "info
3159
+ sp" commands. info_subcmd/*.rb: remove SHORT_HELP which is set by
3160
+ base class.
3161
+
3162
+ 2009-09-29 rocky <rockyb@rubyforge.org>
3163
+
3164
+ * processor/command/info_subcmd/return.rb: frame.rb: defensive
3165
+ programming. return.rb: Prepare for adding c return values
3166
+
3167
+ 2009-09-28 rocky <rockyb@rubyforge.org>
3168
+
3169
+ * processor/command/info_subcmd/frame.rb,
3170
+ processor/command/info_subcmd/return.rb,
3171
+ test/functional/test-finish.rb, test/functional/test-next.rb,
3172
+ test/functional/test-step.rb: info_subcmd/frame.rb: Add "info
3173
+ return" and show return class on "info frame" if we have a return
3174
+ event. test/*: tag tests for possible automatic extraction.
3175
+
3176
+ 2009-09-28 R. Bernstein <rocky@gnu.org>
3177
+
3178
+ * test/functional/test-finish.rb: Start functional test for
3179
+ "finish".
3180
+
3181
+ 2009-09-28 rocky <rockyb@rubyforge.org>
3182
+
3183
+ * test/functional/test-next.rb: Add "next" command functional test.
3184
+
3185
+
3186
+ 2009-09-27 rocky <rockyb@rubyforge.org>
3187
+
3188
+ * lib/frame.rb, processor/command/finish.rb,
3189
+ processor/command/step.rb, processor/main.rb, processor/running.rb,
3190
+ test/functional/test-step.rb: Add "finish" command. Fix bugs in
3191
+ stepping to specific events. Add event names for all events: add
3192
+ switch, coverage and vm.
3193
+
3194
+ 2009-09-27 rocky <rockyb@rubyforge.org>
3195
+
3196
+ * processor/main.rb: Fix bug in "next" command
3197
+
3198
+ 2009-09-27 rocky <rockyb@rubyforge.org>
3199
+
3200
+ * interface/base_intf.rb, interface/script.rb, interface/user.rb,
3201
+ io/input.rb, processor/command/list.rb, processor/main.rb,
3202
+ processor/validate.rb, rbdbgr.rb, test/functional/test-step.rb: Null
3203
+ return on interactive input now uses last command. Various code
3204
+ cleanups mostly on interfaces. More functional tests.
3205
+
3206
+ 2009-09-26 rocky <rockyb@rubyforge.org>
3207
+
3208
+ * lib/file.rb, processor/command/list.rb, processor/main.rb,
3209
+ processor/validate.rb: List function-name works now. list file:line
3210
+ works too. Don't show file text if there's nothing to show.
3211
+
3212
+ 2009-09-26 rocky <rockyb@rubyforge.org>
3213
+
3214
+ * bin/rbdbgr, lib/file.rb, lib/run.rb, processor/command/list.rb,
3215
+ processor/command/restart.rb, processor/mock.rb,
3216
+ processor/validate.rb, rbdbgr.rb, test/functional/fn_helper.rb:
3217
+ bin/rbdbgr run.rb: Move Rbdbgr module to a module list.rb: bang on
3218
+ some more restart.rb: Add Ruby interpreter if $0 is not executable
3219
+ mock.rb: remove debug statement rbdbgr.rb: Add :set_restart option
3220
+ which is less cumbersome than using :restart_argv
3221
+
3222
+ 2009-09-26 rocky <rockyb@rubyforge.org>
3223
+
3224
+ * lib/frame.rb, processor/command/set_subcmd/autoirb.rb,
3225
+ processor/command/set_subcmd/basename.rb,
3226
+ processor/command/show_subcmd/basename.rb, processor/frame.rb,
3227
+ processor/main.rb: Add set/show basename.
3228
+
3229
+ 2009-09-26 rocky <rockyb@rubyforge.org>
3230
+
3231
+ * processor/command/info_subcmd/frame.rb, processor/frame.rb:
3232
+ processor/info_subcmd/frame.rb: DRY code processor/frame.rb:
3233
+ offset2lines semantic change in rb-threadframe. reduce bogus
3234
+ behavior in standalone code.
3235
+
3236
+ 2009-09-26 rocky <rockyb@rubyforge.org>
3237
+
3238
+ * lib/file.rb, lib/mock.rb, processor/command/list.rb,
3239
+ processor/default.rb, processor/frame.rb, processor/main.rb,
3240
+ processor/mock.rb, processor/validate.rb,
3241
+ test/unit/test-proc-frame.rb, test/unit/test-proc-validate.rb:
3242
+ list.rb: Hammer on "list" command a little. Needs a lot more work
3243
+ though. validate.rb: Use confirm from interface in command
3244
+ processor. defaults.rb: Add defaults for "basename" and "autolist"
3245
+ (neither is setable/showable yet). mock.rb: Add Debugger::Core mock
3246
+ which reduces bogusness in some unit tests (proc-validate,
3247
+ proc-frame) file.rb Speaking of bogusness, add parse location
3248
+ routine which doesn't work yet.
3249
+
3250
+ 2009-09-25 rocky <rockyb@rubyforge.org>
3251
+
3252
+ * processor/command/list.rb: First cut at a list command.
3253
+
3254
+ 2009-09-25 R. Bernstein <rocky@gnu.org>
3255
+
3256
+ * Rakefile, test/functional/fn_helper.rb,
3257
+ test/functional/test-step.rb: Add more functional tests and run that
3258
+ now by default.
3259
+
3260
+ 2009-09-25 R. Bernstein <rocky@gnu.org>
3261
+
3262
+ * test/functional/fn_helper.rb, test/functional/test-step.rb: First
3263
+ functional test of stepping works. Stepping code is buggy, but at
3264
+ least the framework works.
3265
+
3266
+ 2009-09-25 R. Bernstein <rocky@gnu.org>
3267
+
3268
+ * Rakefile, processor/main.rb: Show line text.
3269
+
3270
+ 2009-09-24 rocky <rockyb@rubyforge.org>
3271
+
3272
+ * interface/base_intf.rb, processor/command/info_subcmd/frame.rb,
3273
+ processor/main.rb: Use thread-frame's offset2lines for getting line
3274
+ numbers of instruction offsets.
3275
+
3276
+ 2009-09-24 rocky <rockyb@rubyforge.org>
3277
+
3278
+ * interface/base_intf.rb, test/functional/fn_helper.rb,
3279
+ test/functional/test-step.rb: base_intf.rb: use only I/O functions
3280
+ we define. Was missing the newline. More work towards getting
3281
+ functional testing working.
3282
+
3283
+ 2009-09-24 R. Bernstein <rocky@gnu.org>
3284
+
3285
+ * interface/base_intf.rb, interface/user.rb,
3286
+ test/functional/test-step.rb: Closer to having functional testing
3287
+ working.
3288
+
3289
+ 2009-09-24 R. Bernstein <rocky@gnu.org>
3290
+
3291
+ * rbdbgr.rb: Add Debugger::start and Debugger::stop to control
3292
+ tracing
3293
+
3294
+ 2009-09-24 rocky <rockyb@rubyforge.org>
3295
+
3296
+ * test/functional/fn_helper.rb: Helper functions probably usable
3297
+ now.
3298
+
3299
+ 2009-09-23 rocky <rockyb@rubyforge.org>
3300
+
3301
+ * io/input.rb, rbdbgr.rb, test/functional/fn_helper.rb,
3302
+ test/unit/test-intf-user.rb, test/unit/test-io-input.rb,
3303
+ test/unit/test-user.rb: input.rb: don't assume input has a tty?
3304
+ method. rbdbgr.rb: Allow one to pass in the input and output
3305
+ descriptors More and better unit tests.
3306
+
3307
+ 2009-09-23 R. Bernstein <rocky@gnu.org>
3308
+
3309
+ * io/input.rb, test/unit/test-io-input.rb: :line_edit only works if
3310
+ input is a tty. Add trivial unit test of io/input.
3311
+
3312
+ 2009-09-23 R. Bernstein <rocky@gnu.org>
3313
+
3314
+ * interface/script.rb, interface/user.rb, io/input.rb,
3315
+ io/string_array.rb, processor/main.rb, test/unit/test-user.rb: Hook
3316
+ user/script interfaces to use new IO-based io/input. string_array
3317
+ now (probably) is usable. main.rb eof is on the interface's input,
3318
+ not the interface.
3319
+
3320
+ 2009-09-23 R. Bernstein <rocky@gnu.org>
3321
+
3322
+ * processor/command/set_subcmd/events.rb,
3323
+ processor/command/show_subcmd/events.rb: Set/show events minimum
3324
+ abbrev is "ev".
3325
+
3326
+ 2009-09-23 R. Bernstein <rocky@gnu.org>
3327
+
3328
+ * interface/base_intf.rb, interface/script.rb, interface/user.rb,
3329
+ io/base_io.rb, io/input.rb, processor/main.rb: input.rb: closer to
3330
+ being usuable. main.rb: Add end and unknown as other unmaskable
3331
+ events
3332
+
3333
+ 2009-09-23 rocky <rockyb@rubyforge.org>
3334
+
3335
+ * io/base_io.rb, io/input.rb: Rough first cut
3336
+
3337
+ 2009-09-22 rocky <rockyb@rubyforge.org>
3338
+
3339
+ * processor/command/info_subcmd/program.rb,
3340
+ processor/command/next.rb, processor/command/step.rb,
3341
+ processor/default.rb, processor/main.rb, processor/running.rb: Add
3342
+ stepping to the next exception.
3343
+
3344
+ 2009-09-22 rocky <rockyb@rubyforge.org>
3345
+
3346
+ * interface/base_intf.rb, io/.gitignore, io/base_io.rb,
3347
+ io/string_array.rb, processor/command/kill.rb: Start I/O layer, in
3348
+ particular string_array which will help in functional testing.
3349
+
3350
+ 2009-09-22 R. Bernstein <rocky@gnu.org>
3351
+
3352
+ * processor/command/irb.rb, processor/running.rb: irb interrupt
3353
+ handling improvements
3354
+
3355
+ 2009-09-22 rocky <rockyb@rubyforge.org>
3356
+
3357
+ * processor/mock.rb: Small change
3358
+
3359
+ 2009-09-22 rocky <rockyb@rubyforge.org>
3360
+
3361
+ * Rakefile, processor/command/base_subcmd.rb,
3362
+ processor/command/base_submgr.rb,
3363
+ processor/command/base_subsubmgr.rb,
3364
+ processor/command/disassemble.rb, processor/command/down.rb,
3365
+ processor/command/exit.rb, processor/command/frame.rb,
3366
+ processor/command/help.rb, processor/command/info.rb,
3367
+ processor/command/irb.rb, processor/command/kill.rb,
3368
+ processor/command/next.rb, processor/command/restart.rb,
3369
+ processor/command/set.rb, processor/command/show.rb,
3370
+ processor/command/source.rb, processor/command/step.rb,
3371
+ processor/command/up.rb, processor/command/where.rb,
3372
+ processor/mock.rb, processor/subcmd.rb: DRY code with respect to
3373
+ mock setup. rake :check => :check:lib :check:commands, etc.
3374
+
3375
+ 2009-09-22 rocky <rockyb@rubyforge.org>
3376
+
3377
+ * lib/core.rb, processor/command/disassemble.rb,
3378
+ processor/command/down.rb, processor/command/frame.rb,
3379
+ processor/command/irb.rb, processor/command/up.rb,
3380
+ processor/command/where.rb, processor/frame.rb, processor/main.rb,
3381
+ processor/running.rb: Fix bugs in suffix handling for step/next
3382
+ commands. "last position" includes the stack size. frame_setup() can
3383
+ figure out the thread, so no need to pass that.
3384
+
3385
+ 2009-09-21 rocky <rockyb@rubyforge.org>
3386
+
3387
+ * processor/command/set_subcmd/events.rb, processor/main.rb,
3388
+ processor/msg.rb: Correct process_command_and_quit? to do the right
3389
+ thing on interface EOF. Also, it now understands comments and how
3390
+ to repeat the last command on the empty string. This removes bugs
3391
+ in stepping on a "source" command and the duplicate stepping when
3392
+ leaving irb. events.rb: allow commas to end event names, i.e. set
3393
+ events line, call, return as well as: set events line call return
3394
+
3395
+
3396
+ 2009-09-21 R. Bernstein <rocky@gnu.org>
3397
+
3398
+ * irbrc, lib/irb.rb: Chain in user irbrc if the RBDBGR_IRB
3399
+ environment variable is set.
3400
+
3401
+ 2009-09-20 rocky <rockyb@rubyforge.org>
3402
+
3403
+ * lib/irb.rb, processor/command/irb.rb: Wasn't getting irbrc path
3404
+ correct
3405
+
3406
+ 2009-09-20 rocky <rockyb@rubyforge.org>
3407
+
3408
+ * .gitignore, irbrc, lib/core.rb, lib/irb.rb,
3409
+ processor/command/irb.rb, processor/command/next.rb,
3410
+ processor/command/step.rb, processor/default.rb, processor/main.rb,
3411
+ processor/mock.rb, processor/running.rb, rbdbgr.rb: Add custom irb
3412
+ profile for rbdbgr irb sessions. Running processor/command/irb.rb
3413
+ now runs irb which can be used to test the custom profile. Added irb
3414
+ command 'n' for next. DRY step/next suffix detection code. Set
3415
+ defaults more for normal users: set autoeval on set events:
3416
+ remove instruction stepping set different on Did I mention that
3417
+ "next" now works?
3418
+
3419
+ 2009-09-20 rocky <rockyb@rubyforge.org>
3420
+
3421
+ * processor/command/next.rb: Add debugger "next" command. That
3422
+ wasn't so bad was it? Need unit/integration tests of this stuff.
3423
+
3424
+ 2009-09-19 rocky <rockyb@rubyforge.org>
3425
+
3426
+ * interface/base_intf.rb, interface/script.rb, interface/user.rb,
3427
+ processor/main.rb, processor/msg.rb: More complete I/O used
3428
+ interface routines. Interfaces now stack. "source" command works
3429
+ modulo one glitch. Fix bug in setting @output.
3430
+
3431
+ 2009-09-19 rocky <rockyb@rubyforge.org>
3432
+
3433
+ * processor/command/base_cmd.rb, processor/command/source.rb,
3434
+ processor/command/step.rb, processor/main.rb, processor/mock.rb,
3435
+ processor/msg.rb, rbdbgr.rb: Pretty close to having a working
3436
+ "source" command - needs a little more work on eof condition. To
3437
+ that end the, interface is now an array of interfaces.
3438
+
3439
+ 2009-09-18 rocky <rockyb@rubyforge.org>
3440
+
3441
+ * interface/script.rb: First stab at (a port from pydbgr) of a
3442
+ script interface.
3443
+
3444
+ 2009-09-18 rocky <rockyb@rubyforge.org>
3445
+
3446
+ * bin/rbdbgr, processor/command/down.rb,
3447
+ processor/command/set_subcmd/debugstack.rb,
3448
+ processor/command/show_subcmd/debugstack.rb,
3449
+ processor/command/up.rb, processor/command/where.rb,
3450
+ processor/frame.rb, processor/main.rb, test/unit/test-proc-frame.rb:
3451
+ Hide rbdbgr levels of the stack frame unless "set debugstack" is
3452
+ set.
3453
+
3454
+ 2009-09-17 rocky <rockyb@rubyforge.org>
3455
+
3456
+ * processor/command/irb.rb: $rbdbgr should be top-level debugger
3457
+ object.
3458
+
3459
+ 2009-09-17 rocky <rockyb@rubyforge.org>
3460
+
3461
+ * lib/irb.rb, processor/command/continue.rb,
3462
+ processor/command/irb.rb, processor/command/set_subcmd/autoeval.rb,
3463
+ processor/command/set_subcmd/autoirb.rb,
3464
+ processor/command/show_subcmd/autoirb.rb,
3465
+ processor/command/step.rb, processor/default.rb, processor/main.rb,
3466
+ processor/running.rb: Add set/show subcommand "set autoirb".
3467
+ Separate "running"-category code from the various debugger commands.
3468
+
3469
+
3470
+ 2009-09-17 rockyb <rocky@gnu.org>
3471
+
3472
+ * bin/rbdbgr, lib/irb.rb: Use excluded correctly. Disable
3473
+ ExtendCommandBundle for now
3474
+
3475
+ 2009-09-17 rocky <rockyb@rubyforge.org>
3476
+
3477
+ * processor/command/irb.rb: rdebug -> rbdbgr
3478
+
3479
+ 2009-09-17 rocky <rockyb@rubyforge.org>
3480
+
3481
+ * lib/irb.rb, processor/command/irb.rb: Add irb command
3482
+ (rudimentary). Yay!
3483
+
3484
+ 2009-09-17 rocky <rockyb@rubyforge.org>
3485
+
3486
+ * lib/disassemble.rb, processor/command/disassemble.rb,
3487
+ test/unit/test-lib-disassemble.rb: Tag line with PC offset.
3488
+
3489
+ 2009-09-16 rocky <rockyb@rubyforge.org>
3490
+
3491
+ * rbdbgr.rb: Use proper way to add to list of excluded methods of a
3492
+ trace filter.
3493
+
3494
+ 2009-09-16 rocky <rockyb@rubyforge.org>
3495
+
3496
+ * lib/core.rb: Typo
3497
+
3498
+ 2009-09-16 rocky <rockyb@rubyforge.org>
3499
+
3500
+ * lib/core.rb: Provisions for using original-style hook
3501
+
3502
+ 2009-09-15 rockyb <rocky@gnu.org>
3503
+
3504
+ * bin/rbdbgr: Add Kernel::load to the list of ignored functions.
3505
+
3506
+ 2009-09-15 rockyb <rocky@gnu.org>
3507
+
3508
+ * emacs/rbdbgr-regexp.el, emacs/test/test-regexp.el: Update regexp
3509
+ for via locations
3510
+
3511
+ 2009-09-15 R. Bernstein <rocky@gnu.org>
3512
+
3513
+ * processor/main.rb: Show via location when location is eval or the
3514
+ container is not file.
3515
+
3516
+ 2009-09-14 rocky <rockyb@rubyforge.org>
3517
+
3518
+ * processor/command/base_cmd.rb, processor/command/base_subcmd.rb,
3519
+ processor/command/continue.rb, processor/command/disassemble.rb,
3520
+ processor/command/down.rb, processor/command/exit.rb,
3521
+ processor/command/frame.rb, processor/command/help.rb,
3522
+ processor/command/info.rb, processor/command/kill.rb,
3523
+ processor/command/restart.rb, processor/command/set.rb,
3524
+ processor/command/set_subcmd/autoeval.rb,
3525
+ processor/command/set_subcmd/different.rb,
3526
+ processor/command/set_subcmd/events.rb,
3527
+ processor/command/set_subcmd/width.rb, processor/command/show.rb,
3528
+ processor/command/show_subcmd/autoeval.rb,
3529
+ processor/command/show_subcmd/different.rb,
3530
+ processor/command/show_subcmd/events.rb,
3531
+ processor/command/show_subcmd/trace.rb,
3532
+ processor/command/show_subcmd/width.rb, processor/command/step.rb,
3533
+ processor/command/up.rb, processor/command/where.rb,
3534
+ processor/mock.rb: DRY command code to not set default class
3535
+ constant values. In a subcommand, The default for SHORT_HELP is the
3536
+ first line of the (long) HELP. Add a routine in mock.rb to show all
3537
+ of the used class constants
3538
+
3539
+ 2009-09-13 rocky <rockyb@rubyforge.org>
3540
+
3541
+ * bin/rbdbgr, lib/frame.rb, processor/command/info_subcmd/frame.rb,
3542
+ processor/command/info_subcmd/line.rb,
3543
+ processor/command/info_subcmd/program.rb,
3544
+ processor/command/set_subcmd/events.rb,
3545
+ processor/command/set_subcmd/traceset.rb,
3546
+ processor/command/show_subcmd/events.rb,
3547
+ processor/command/show_subcmd/traceset.rb: set/show traceset ->
3548
+ set/show event info line -> info frame Minor other corrections.
3549
+
3550
+ 2009-09-12 rocky <rockyb@rubyforge.org>
3551
+
3552
+ * .gitignore, bin/rbdbgr: Change $0 the right way. See
3553
+ http://www.ruby-forum.com/topic/187083
3554
+
3555
+ 2009-09-11 R. Bernstein <rocky@gnu.org>
3556
+
3557
+ * processor/command/info_subcmd/line.rb,
3558
+ processor/command/info_subcmd/program.rb: Add "info program"
3559
+
3560
+ 2009-09-11 R. Bernstein <rocky@gnu.org>
3561
+
3562
+ * .gitignore, processor/command/info.rb,
3563
+ processor/command/info_subcmd/.gitignore,
3564
+ processor/command/info_subcmd/line.rb: Add info subcommand and in
3565
+ particular "info line" which show PC offset.
3566
+
3567
+ 2009-09-11 rocky <rockyb@rubyforge.org>
3568
+
3569
+ * processor/command/step.rb, processor/main.rb: Add more step
3570
+ events: {c-,}{call,return}.
3571
+
3572
+ 2009-09-10 rocky <rockyb@rubyforge.org>
3573
+
3574
+ * bin/rbdbgr: Small changes and doc changes.
3575
+
3576
+ 2009-09-10 rocky <rockyb@rubyforge.org>
3577
+
3578
+ * processor/command/set_subcmd/different.rb,
3579
+ processor/command/show_subcmd/different.rb,
3580
+ processor/command/step.rb, processor/default.rb, processor/main.rb,
3581
+ test/unit/test-bin-rbdbgr.rb, test/unit/test-cmd-help.rb,
3582
+ test/unit/test-cmd-step.rb: Add ability to step by different
3583
+ position: set/show different and s[tep]{+,-}. Add unit test for
3584
+ step command which in the process found a bug in handling "step" as
3585
+ well as showing how to improve unit test for the help command.
3586
+
3587
+ 2009-09-10 R. Bernstein <rocky@gnu.org>
3588
+
3589
+ * processor/command/down.rb, processor/command/up.rb: I had "up" and
3590
+ "down" commands reversed.
3591
+
3592
+ 2009-09-10 R. Bernstein <rocky@gnu.org>
3593
+
3594
+ * bin/rbdbgr, test/unit/test-bin-rbdbgr.rb: whence tests readable
3595
+ rather than just exist. Add first unit test of rbdbgr functions.
3596
+
3597
+ 2009-09-10 rocky <rockyb@rubyforge.org>
3598
+
3599
+ * processor/main.rb: Show event status only on top frame
3600
+
3601
+ 2009-09-09 rocky <rockyb@rubyforge.org>
3602
+
3603
+ * Rakefile, bin/rbdbgr: rbdbgr: Set restart args correclty. I have a
3604
+ feeling I will be using this a lot. Rakefile: start work to make a
3605
+ gem. Doesn't work yet though.
3606
+
3607
+ 2009-09-09 rocky <rockyb@rubyforge.org>
3608
+
3609
+ * bin/rbdbgr, processor/command/base_subcmd.rb,
3610
+ processor/command/base_submgr.rb,
3611
+ processor/command/base_subsubmgr.rb,
3612
+ processor/command/show_subcmd/trace.rb, processor/main.rb,
3613
+ processor/mock.rb: rbdbgr: save/set/restore $0. Exclude
3614
+ debug_program. Pass in debugger object. Try using $rbdbgr
3615
+ for global debugger variable. Start sub commands of sub commands.
3616
+ Not working yet. Define/use some processor attr_reader's to remove
3617
+ ugly instance_variable_get's.
3618
+
3619
+ 2009-09-09 R. Bernstein <rocky@gnu.org>
3620
+
3621
+ * Rakefile, processor/command/base_subcmd.rb,
3622
+ processor/command/base_submgr.rb, processor/command/kill.rb,
3623
+ processor/mock.rb, processor/msg.rb, processor/subcmd.rb, rbdbgr.rb:
3624
+ Start using user inteface from command processor. Add rake tasks to
3625
+ be able to run all pieces of the debugger individually (tasks
3626
+ check:lib, check:commands, and check:processor). Kill deal with
3627
+ failed kill via Errno::ESRCH.
3628
+
3629
+ 2009-09-09 rocky <rockyb@rubyforge.org>
3630
+
3631
+ * bin/rbdbgr: Small doc update
3632
+
3633
+ 2009-09-09 rocky <rockyb@rubyforge.org>
3634
+
3635
+ * bin/.gitignore, bin/rbdbgr: Get name of ruby program via rbconfig.
3636
+ RDEBUG -> RBDBGR.
3637
+
3638
+ 2009-09-08 rocky <rockyb@rubyforge.org>
3639
+
3640
+ * bin/rbdbgr, interface/base_intf.rb, interface/user.rb:
3641
+ interface/*: DRY code a little bin/rbdbgr: Scope variables better,
3642
+ make routines in rbdbgr more unit testable partially by allowing
3643
+ rbdbgr to be loaded/required.
3644
+
3645
+ 2009-09-08 R. Bernstein <rocky@gnu.org>
3646
+
3647
+ * interface/user.rb, test/unit/test-subcmd-help.rb,
3648
+ test/unit/test-user.rb: First unit test of user interface. (Still
3649
+ not using it yet in rbdbgr though.)
3650
+
3651
+ 2009-09-08 rocky <rockyb@rubyforge.org>
3652
+
3653
+ Merge branch 'master' of git@github.com:rocky/rbdbgr
3654
+
3655
+ 2009-09-08 rocky <rockyb@rubyforge.org>
3656
+
3657
+ * Rakefile: Default task for now is test.
3658
+
3659
+ 2009-09-08 rocky <rockyb@rubyforge.org>
3660
+
3661
+ * interface/.gitignore, interface/base_intf.rb, interface/user.rb:
3662
+ Start adding interfaces and start with the most common one - a user
3663
+ interface.
3664
+
3665
+ 2009-09-01 R. Bernstein <rocky@gnu.org>
3666
+
3667
+ * emacs/rbdbg-loc.el, emacs/rbdbg-lochist.el, emacs/rbdbg-track.el,
3668
+ emacs/test/test-lochist.el: bug fixes in tracking ring positions.
3669
+
3670
+ 2009-08-31 rocky <rockyb@rubyforge.org>
3671
+
3672
+ * emacs/rbdbg-load.el, emacs/rbdbg-lochist.el: Allow a list of
3673
+ filenames to require relative
3674
+
3675
+ 2009-08-31 rocky <rockyb@rubyforge.org>
3676
+
3677
+ * emacs/test/test-load.el: One more require-relative test and more
3678
+ robust testing.
3679
+
3680
+ 2009-08-31 R. Bernstein <rocky@gnu.org>
3681
+
3682
+ * emacs/rbdbg-load.el, emacs/rbdbg-loc.el,
3683
+ emacs/rbdbg-track-mode.el, emacs/rbdbg-var.el: Remove warnings.
3684
+
3685
+ 2009-08-31 R. Bernstein <rocky@gnu.org>
3686
+
3687
+ * emacs/rbdbg-load.el, emacs/test/test-load.el: Add a custom
3688
+ require-relative routine
3689
+
3690
+ 2009-08-28 R. Bernstein <rocky@gnu.org>
3691
+
3692
+ * emacs/rbdbg-loc.el, emacs/rbdbg-track-mode.el,
3693
+ emacs/rbdbg-track.el, emacs/rbdbgr-regexp.el: Add location regexps
3694
+ for *all* of my debuggers. :-)
3695
+
3696
+ 2009-08-28 rocky <rockyb@rubyforge.org>
3697
+
3698
+ * emacs/rbdbgr-regexp.el: Add regexps for more languages
3699
+
3700
+ 2009-08-28 rocky <rockyb@rubyforge.org>
3701
+
3702
+ * emacs/rbdbg-lochist.el, emacs/rbdbg-track.el, emacs/rbdbg-var.el,
3703
+ emacs/test/test-lochist.el, emacs/test/test-track.el: Do more error
3704
+ checking
3705
+
3706
+ 2009-08-27 rocky <rockyb@rubyforge.org>
3707
+
3708
+ * emacs/rbdbgr-regexp.el: More small doc updates
3709
+
3710
+ 2009-08-27 rocky <rockyb@rubyforge.org>
3711
+
3712
+ * emacs/rbdbgr-regexp.el: More small doc updates
3713
+
3714
+ 2009-08-27 rocky <rockyb@rubyforge.org>
3715
+
3716
+ * emacs/rbdbgr-regexp.el, emacs/test/test-track.el: Add doc string
3717
+
3718
+ 2009-08-27 rocky <rockyb@rubyforge.org>
3719
+
3720
+ * emacs/Makefile.am, emacs/rbdbg-track-mode.el,
3721
+ emacs/rbdbg-track.el, emacs/rbdbg-var.el, emacs/rbdbgr-regexp.el,
3722
+ emacs/test/test-regexp.el, emacs/test/test-track.el: Regular
3723
+ expressions and pattern groups are now coming from a buffer-local
3724
+ variable inside the process buffer. Start rbdbg-track testing.
3725
+
3726
+ 2009-08-27 R. Bernstein <rocky@gnu.org>
3727
+
3728
+ * emacs/Makefile.am: Dry Makefile a little and fix a few bugs
3729
+
3730
+ 2009-08-27 R. Bernstein <rocky@gnu.org>
3731
+
3732
+ * emacs/rbdbg-lochist.el: Remove debug statement.
3733
+
3734
+ 2009-08-27 R. Bernstein <rocky@gnu.org>
3735
+
3736
+ * emacs/rbdbg-lochist.el, emacs/rbdbg-track-mode.el,
3737
+ emacs/rbdbg-track.el: Increase location history ring size (a
3738
+ little). Other small adjustments.
3739
+
3740
+ 2009-08-27 rockyb <rocky@gnu.org>
3741
+
3742
+ * emacs/rbdbg-file.el, emacs/rbdbg-loc.el, emacs/rbdbg-lochist.el,
3743
+ emacs/rbdbg-track-mode.el, emacs/rbdbg-track.el,
3744
+ emacs/test/test-loc.el: Convert lochist to a defstruct. Bang on
3745
+ location history which now works better.
3746
+
3747
+ 2009-08-27 rocky <rockyb@rubyforge.org>
3748
+
3749
+ * emacs/Makefile.am, emacs/rbdbg-lochist.el,
3750
+ emacs/rbdbg-track-mode.el, emacs/rbdbg-track.el,
3751
+ emacs/rbdbg-var.el, emacs/rbdbgt-mode.el,
3752
+ emacs/test/test-lochist.el: Add buffer-local debugger defstruct.
3753
+ Start working out kinks in location tracking.
3754
+
3755
+ 2009-08-27 rocky <rockyb@rubyforge.org>
3756
+
3757
+ * emacs/Makefile.am, emacs/rbdbg-lochist.el, emacs/rbdbg-track.el,
3758
+ emacs/rbdbg-window.el, emacs/rbdbgt-mode.el,
3759
+ emacs/test/test-lochist.el: DRY hook code. Window code is now split
3760
+ in its own file.
3761
+
3762
+ 2009-08-26 rocky <rockyb@rubyforge.org>
3763
+
3764
+ * emacs/rbdbgt-mode.el: Support eshell as well as shell. Break out
3765
+ track mode into a separate file.
3766
+
3767
+ 2009-08-26 rocky <rockyb@rubyforge.org>
3768
+
3769
+ * emacs/rbdbg-loc.el: Code and doc cleanup
3770
+
3771
+ 2009-08-26 rockyb <rocky@gnu.org>
3772
+
3773
+ * emacs/rbdbg-file.el, emacs/rbdbg-loc.el, emacs/rbdbg-track.el,
3774
+ emacs/test/test-file.el, emacs/test/test-loc.el: Don't need to do
3775
+ things the hard way - use Common Lisp's defstruct.
3776
+
3777
+ 2009-08-26 R. Bernstein <rocky@gnu.org>
3778
+
3779
+ * emacs/rbdbg-track.el: Doc changes.
3780
+
3781
+ 2009-08-26 rockyb <rocky@gnu.org>
3782
+
3783
+ * emacs/rbdbg-track.el: Wasn't setting the buffer back in the case
3784
+ that we split the window.
3785
+
3786
+ 2009-08-26 rockyb <rocky@gnu.org>
3787
+
3788
+ * emacs/rbdbg-track.el: Add rbdbg-trace-mode and install a
3789
+ comint-output-filter-function hook. And with this, Yay! we have
3790
+ something minimally tracking locations for rbdbgr.rb.
3791
+
3792
+ 2009-08-26 R. Bernstein <rocky@gnu.org>
3793
+
3794
+ * emacs/rbdbg-track.el: Small changes.
3795
+
3796
+ 2009-08-26 rockyb <rocky@gnu.org>
3797
+
3798
+ * emacs/rbdbg-track.el: Add a simple custom windowing routine.
3799
+
3800
+ 2009-08-26 rocky <rockyb@rubyforge.org>
3801
+
3802
+ * emacs/rbdbg-loc.el: funcall -> apply
3803
+
3804
+ 2009-08-26 rocky <rockyb@rubyforge.org>
3805
+
3806
+ * emacs/rbdbg-file.el, emacs/rbdbg-loc.el, emacs/rbdbg-lochist.el,
3807
+ emacs/rbdbg-track.el, emacs/test/test-loc.el: Pretty much a working
3808
+ comint hook. I can't believe how something this simple was made so
3809
+ complicated. And we don't need no stinking buffer in a location
3810
+ object - An Emacs mark contains a reference to a buffer.
3811
+
3812
+ 2009-08-25 rockyb <rocky@gnu.org>
3813
+
3814
+ * emacs/rbdbg-loc.el, emacs/test/test-loc.el: Add routine to go to a
3815
+ location and set the buffer and marker fields.
3816
+
3817
+ 2009-08-25 rockyb <rocky@gnu.org>
3818
+
3819
+ * emacs/rbdbg-file.el, emacs/rbdbg-loc.el, emacs/test/test-loc.el:
3820
+ Add buffer to location object. Allow null buffer and marker field
3821
+
3822
+ 2009-08-25 rocky <rockyb@rubyforge.org>
3823
+
3824
+ * emacs/Makefile.am, emacs/rbdbg-file.el, emacs/rbdbg-track.el,
3825
+ emacs/test/test-file.el, emacs/test/test-loc.el: Add some
3826
+ file-related functions
3827
+
3828
+ 2009-08-24 rocky <rockyb@rubyforge.org>
3829
+
3830
+ * emacs/rbdbg-track.el, emacs/rbdbgr-regexp.el,
3831
+ emacs/test/test-loc.el, emacs/test/test-lochist.el,
3832
+ emacs/test/test-regexp.el: Name change cleanups and small
3833
+ fixes/improvements.
3834
+
3835
+ 2009-08-24 rocky <rockyb@rubyforge.org>
3836
+
3837
+ * emacs/Makefile.am, emacs/rbdbg-track.el, emacs/rbdbgr-regexp.el,
3838
+ emacs/test/test-regexp.el: Start filling in location tracking.
3839
+ Start with regexps.
3840
+
3841
+ 2009-08-23 rocky <rockyb@rubyforge.org>
3842
+
3843
+ * emacs/.gitignore, emacs/Makefile.am, emacs/rbdbg-loc.el,
3844
+ emacs/rbdbg-lochist.el, emacs/rbdbg-locring.el,
3845
+ emacs/test/.gitignore, emacs/test/behave.el,
3846
+ emacs/test/test-loc.el, emacs/test/test-locring.el: Start rewriting
3847
+ Emacs/Debugger interaction code. From scratch. This doesn't do
3848
+ anything useful yet.
3849
+
3850
+ 2009-08-23 rocky <rockyb@rubyforge.org>
3851
+
3852
+ * emacs/.gitignore, emacs/AUTHORS, emacs/ChangeLog,
3853
+ emacs/Makefile.am, emacs/NEWS, emacs/README, emacs/configure.ac,
3854
+ emacs/rbdbg-loc.el, emacs/rbdbg-lochist.el, emacs/rbdbg-locring.el,
3855
+ emacs/test/.gitignore, emacs/test/Makefile, emacs/test/behave.el,
3856
+ emacs/test/test-loc.el, emacs/test/test-lochist.el,
3857
+ emacs/test/test-locring.el: Start rewriting Emacs/Debugger
3858
+ interaction code. From scratch. This time, for sure! Right now there
3859
+ isn't anything useful.
3860
+
3861
+ 2009-08-22 rocky <rockyb@rubyforge.org>
3862
+
3863
+ * lib/core.rb, lib/default.rb, processor/command/continue.rb,
3864
+ processor/command/disassemble.rb, processor/command/down.rb,
3865
+ processor/command/exit.rb, processor/command/frame.rb,
3866
+ processor/command/help.rb, processor/command/kill.rb,
3867
+ processor/command/restart.rb, processor/command/set.rb,
3868
+ processor/command/set_subcmd/autoeval.rb,
3869
+ processor/command/set_subcmd/traceset.rb,
3870
+ processor/command/set_subcmd/width.rb, processor/command/show.rb,
3871
+ processor/command/show_subcmd/autoeval.rb,
3872
+ processor/command/show_subcmd/traceset.rb,
3873
+ processor/command/show_subcmd/width.rb, processor/command/step.rb,
3874
+ processor/command/up.rb, processor/command/where.rb,
3875
+ processor/mock.rb, rbdbgr.rb: Add a "restart" command. We can now
3876
+ debug debugger commands; debugger writers: eat your heart out! DRY
3877
+ debugger-command demo code by putting more of the boilerplate code
3878
+ into mock.rb More demoing done added through the advanced magic of
3879
+ loops.
3880
+
3881
+ 2009-08-21 rocky <rockyb@rubyforge.org>
3882
+
3883
+ * rbdbgr.rb: One more to ignore
3884
+
3885
+ 2009-08-21 rocky <rockyb@rubyforge.org>
3886
+
3887
+ * processor/main.rb: Oops syntax error creapt in
3888
+
3889
+ 2009-08-21 rocky <rockyb@rubyforge.org>
3890
+
3891
+ * lib/core.rb, processor/command/disassemble.rb, processor/main.rb:
3892
+ core.rb: trace vm instructions - Yeah baby! disassemble.rb: show
3893
+ disassembly for *anything* that responds to disasm better error
3894
+ message for being in C functions. main.rb: add more even icons and
3895
+ show even when we don't have an icon.
3896
+
3897
+ 2009-08-21 R. Bernstein <rocky@gnu.org>
3898
+
3899
+ * processor/command/disassemble.rb: Add a rudimentary dissassemble
3900
+ command. This time, for sure!
3901
+
3902
+ 2009-08-21 rockyb <rocky@gnu.org>
3903
+
3904
+ * processor/command/base_subcmd.rb: Add rudimentary disassemble
3905
+
3906
+ 2009-08-21 R. Bernstein <rocky@gnu.org>
3907
+
3908
+ Merge branch 'master' of git@github.com:rocky/rbdbgr
3909
+
3910
+ 2009-08-21 R. Bernstein <rocky@gnu.org>
3911
+
3912
+ * lib/core.rb, processor/main.rb, rbdbgr.rb: Add more icons. And a
3913
+ class test.
3914
+
3915
+ 2009-08-20 rocky <rockyb@rubyforge.org>
3916
+
3917
+ * lib/core.rb, rbdbgr.rb: More work to make stepping work. There is
3918
+ still weirdness going on. Also it looks like resolution on what's up
3919
+ with event tracing thing is going to be crucial.
3920
+
3921
+ 2009-08-19 rocky <rockyb@rubyforge.org>
3922
+
3923
+ * lib/core.rb, rbdbgr.rb: Add event after debugger-call debugging.
3924
+ Don't show stopping points inside debugger method for when
3925
+ :immediate => true It's almost looking like a real debugger.
3926
+
3927
+ 2009-08-18 rocky <rockyb@rubyforge.org>
3928
+
3929
+ * lib/core.rb, lib/frame.rb, processor/command/down.rb,
3930
+ processor/command/set_subcmd/traceset.rb, processor/command/up.rb:
3931
+ Small doc changes
3932
+
3933
+ 2009-08-18 rocky <rockyb@rubyforge.org>
3934
+
3935
+ * processor/command/step.rb: Add step command - this time, for sure!
3936
+
3937
+
3938
+ 2009-08-18 rocky <rockyb@rubyforge.org>
3939
+
3940
+ * lib/core.rb, processor/command/continue.rb,
3941
+ processor/command/set_subcmd/traceset.rb,
3942
+ processor/command/show_subcmd/traceset.rb, processor/main.rb: First
3943
+ cut at a 'step' command. Better 'continue' command. Event masks now
3944
+ saved in lib/core.rb where this kind of stuff should be. Remove
3945
+ bogosity of returning a value to break out of the command loop - I'm
3946
+ not even sure why I even let it exist this long.
3947
+
3948
+ 2009-08-18 R. Bernstein <rocky@gnu.org>
3949
+
3950
+ * processor/command/base_subcmd.rb,
3951
+ processor/command/base_submgr.rb, processor/command/continue.rb,
3952
+ processor/command/exit.rb: Add a *very* rudimentary continue
3953
+ command.
3954
+
3955
+ 2009-08-18 R. Bernstein <rocky@gnu.org>
3956
+
3957
+ * processor/command/set_subcmd/traceset.rb: Add set traceset.
3958
+
3959
+ 2009-08-18 R. Bernstein <rocky@gnu.org>
3960
+
3961
+ * lib/core.rb, processor/command/base_subcmd.rb,
3962
+ processor/command/base_submgr.rb, processor/command/down.rb,
3963
+ processor/command/frame.rb, processor/command/help.rb,
3964
+ processor/command/set.rb, processor/command/set_subcmd/autoeval.rb,
3965
+ processor/command/set_subcmd/width.rb, processor/command/show.rb,
3966
+ processor/command/show_subcmd/autoeval.rb,
3967
+ processor/command/show_subcmd/traceset.rb,
3968
+ processor/command/show_subcmd/width.rb, processor/command/up.rb,
3969
+ processor/command/where.rb, processor/main.rb, processor/mock.rb,
3970
+ rbdbgr.rb, test/unit/test-base-subcmd.rb,
3971
+ test/unit/test-cmd-help.rb, test/unit/test-lib-frame.rb,
3972
+ test/unit/test-proc-frame.rb, test/unit/test-proc-main.rb,
3973
+ test/unit/test-proc-validate.rb, test/unit/test-subcmd-help.rb:
3974
+ Remove File.join() from require_relative. It takes an Array!
3975
+
3976
+ 2009-08-18 rocky <rockyb@rubyforge.org>
3977
+
3978
+ * processor/command/show_subcmd/traceset.rb: Pretty up output a
3979
+ little in show traceset.
3980
+
3981
+ 2009-08-18 rocky <rockyb@rubyforge.org>
3982
+
3983
+ * processor/command/base_subcmd.rb,
3984
+ processor/command/base_submgr.rb,
3985
+ processor/command/show_subcmd/traceset.rb, processor/main.rb,
3986
+ rbdbgr.rb, test/unit/test-subcmd-help.rb: Add "show traceset"
3987
+ command. DRY code with class constants. Check that *subcommands*
3988
+ have needed class contants. Allow commands/subcommands to get at
3989
+ core and the trace filter. Add run_show_val for generic command
3990
+ value display.
3991
+
3992
+ 2009-08-17 rocky <rockyb@rubyforge.org>
3993
+
3994
+ * processor/validate.rb: Method comment enhancement. My English
3995
+ always amazes me.
3996
+
3997
+ 2009-08-17 rocky <rockyb@rubyforge.org>
3998
+
3999
+ * lib/core.rb, processor/main.rb, rbdbgr.rb: ... and block debugging
4000
+ starts to do something useful.
4001
+
4002
+ 2009-08-17 rockyb <rocky@gnu.org>
4003
+
4004
+ * processor/command/base_cmd.rb, processor/command/base_subcmd.rb,
4005
+ processor/command/exit.rb, processor/command/frame.rb,
4006
+ processor/command/kill.rb, processor/command/where.rb,
4007
+ processor/msg.rb, processor/validate.rb, rbdbgr.rb,
4008
+ test/unit/test-proc-validate.rb: Add a 'kill' command - don't know
4009
+ how I lived this long without it! Add confirm method. Use full
4010
+ sentences in command messages. Start testing validation routines.
4011
+ Nuke trace hook until I figure out the garbage collection segv. I'll
4012
+ be back!
4013
+
4014
+ 2009-08-17 rockyb <rocky@gnu.org>
4015
+
4016
+ * lib/core.rb, rbdbgr.rb: Small improvements to getting block
4017
+ tracing working.
4018
+
4019
+ 2009-08-17 rocky <rockyb@rubyforge.org>
4020
+
4021
+ * lib/core.rb, lib/frame.rb, rbdbgr.rb: Start using tracefilter and
4022
+ debugger block form. Much is broken in this area.
4023
+
4024
+ 2009-08-08 rocky <rockyb@rubyforge.org>
4025
+
4026
+ Merge branch 'master' of git@github.com:rocky/rbdbgr Conflicts:
4027
+ processor/main.rb Conflicts: processor/main.rb
4028
+
4029
+ 2009-08-12 rocky <rockyb@rubyforge.org>
4030
+
4031
+ * processor/command/exit.rb, processor/command/help.rb,
4032
+ processor/command/where.rb, processor/main.rb,
4033
+ test/unit/test-proc-main.rb: I hate conflicted merges
4034
+
4035
+ 2009-08-08 rocky <rockyb@rubyforge.org>
4036
+
4037
+ * processor/command/exit.rb, processor/command/help.rb,
4038
+ processor/command/where.rb, processor/main.rb,
4039
+ test/unit/test-proc-main.rb: I hate conflicted merges.
4040
+
4041
+ 2009-08-08 rocky <rockyb@rubyforge.org>
4042
+
4043
+ Merge branch 'master' of git@github.com:rocky/rbdbgr Conflicts:
4044
+ processor/command/exit.rb processor/command/help.rb
4045
+ processor/command/where.rb processor/main.rb
4046
+ test/unit/test-proc-main.rb
4047
+
4048
+ 2009-08-12 R. Bernstein <rocky@gnu.org>
4049
+
4050
+ * processor/command/base_subcmd.rb: Playing switch-board operator.
4051
+ You know, delegation not inheritance
4052
+
4053
+ 2009-08-12 rockyb <rocky@gnu.org>
4054
+
4055
+ * processor/command/base_cmd.rb, processor/command/base_subcmd.rb,
4056
+ processor/command/down.rb, processor/command/exit.rb,
4057
+ processor/command/frame.rb, processor/command/help.rb,
4058
+ processor/command/set.rb, processor/command/show.rb,
4059
+ processor/command/up.rb, processor/command/where.rb,
4060
+ processor/main.rb, test/unit/test-proc-main.rb: Remove NAME_ALIASES
4061
+ bogosity. We now allow a optional ALIASES array of Strings and a
4062
+ required NAME.
4063
+
4064
+ 2009-08-08 rocky <rockyb@rubyforge.org>
4065
+
4066
+ * processor/command/base_cmd.rb, processor/command/down.rb,
4067
+ processor/command/exit.rb, processor/command/frame.rb,
4068
+ processor/command/help.rb, processor/command/set.rb,
4069
+ processor/command/show.rb, processor/command/up.rb,
4070
+ processor/command/where.rb, processor/main.rb,
4071
+ test/unit/test-proc-main.rb: NAME_ALIASES -> NAME and ALIASES.
4072
+ Commmand#name from class NAME.
4073
+
4074
+ 2009-08-08 rocky <rockyb@rubyforge.org>
4075
+
4076
+ * processor/command/down.rb, processor/command/exit.rb,
4077
+ processor/command/frame.rb, processor/command/help.rb,
4078
+ processor/command/set.rb, processor/command/show.rb,
4079
+ processor/command/up.rb, processor/command/where.rb,
4080
+ processor/main.rb: Debugger commands are in namespace
4081
+ Debugger::Command rather than Debugger. Regularize code which may
4082
+ facilitate DRYing in the future. TODO: NAME_ALIASES -> ALIASES.
4083
+
4084
+ 2009-08-08 rocky <rockyb@rubyforge.org>
4085
+
4086
+ * processor/command/base_cmd.rb, processor/command/base_subcmd.rb,
4087
+ processor/command/set_subcmd/autoeval.rb,
4088
+ processor/command/set_subcmd/width.rb,
4089
+ processor/command/show_subcmd/.gitignore, processor/main.rb:
4090
+ Debugger::Subcommand is a subclass of Debugger::Command - DRYs code
4091
+ a little bit. Add undefined command message used when set autoeval
4092
+ is off.
4093
+
4094
+ 2009-08-08 rocky <rockyb@rubyforge.org>
4095
+
4096
+ * processor/command/show_subcmd/.gitignore,
4097
+ processor/command/show_subcmd/autoeval.rb,
4098
+ processor/command/show_subcmd/width.rb: Add show subcommands: width
4099
+ and autoeval.
4100
+
4101
+ 2009-08-07 rocky <rockyb@rubyforge.org>
4102
+
4103
+ * processor/command/down.rb, processor/command/set.rb,
4104
+ processor/command/show.rb: Start 'show' command.
4105
+
4106
+ 2009-08-07 rocky <rockyb@rubyforge.org>
4107
+
4108
+ * processor/command/base_subcmd.rb,
4109
+ processor/command/base_submgr.rb,
4110
+ processor/command/set_subcmd/autoeval.rb,
4111
+ processor/command/set_subcmd/width.rb, processor/main.rb: Add second
4112
+ "set" command: set width.
4113
+
4114
+ 2009-08-07 rocky <rockyb@rubyforge.org>
4115
+
4116
+ * processor/command/base_cmd.rb, processor/command/base_subcmd.rb,
4117
+ processor/command/base_submgr.rb, processor/command/help.rb,
4118
+ processor/command/set.rb, processor/command/set_subcmd/autoeval.rb,
4119
+ processor/main.rb, processor/subcmd.rb, processor/validate.rb,
4120
+ test/unit/test-cmd-help.rb: Debugger 'set' command on a boolean
4121
+ (autoeval) finally works! The suggests that all of the subcommand
4122
+ work might no longer be vaporware.
4123
+
4124
+ 2009-08-07 rocky <rockyb@rubyforge.org>
4125
+
4126
+ * processor/command/base_cmd.rb, processor/command/base_subcmd.rb,
4127
+ processor/command/base_submgr.rb, processor/command/help.rb,
4128
+ processor/command/set_subcmd/autoeval.rb, processor/main.rb,
4129
+ processor/subcmd.rb: Lots of work getting subcommands ported from
4130
+ Python pydbgr. Much more work needed.
4131
+
4132
+ 2009-08-06 rocky <rockyb@rubyforge.org>
4133
+
4134
+ * processor/command/base_submgr.rb,
4135
+ processor/command/set_subcmd/autoeval.rb, processor/main.rb: First
4136
+ cut at subcmd manager. Much more work is needed though.
4137
+
4138
+ 2009-08-06 R. Bernstein <rocky@gnu.org>
4139
+
4140
+ * processor/command/base_cmd.rb, processor/command/base_subcmd.rb,
4141
+ processor/command/down.rb, processor/command/set_subcmd/.gitignore,
4142
+ processor/command/set_subcmd/autoeval.rb,
4143
+ test/unit/test-base-subcmd.rb: Start first real subcommand:
4144
+ autoeval.
4145
+
4146
+ 2009-08-06 rockyb <rocky@gnu.org>
4147
+
4148
+ * processor/command/base_subcmd.rb, test/unit/test-base-subcmd.rb:
4149
+ Add show_onoff.
4150
+
4151
+ 2009-08-06 R. Bernstein <rocky@gnu.org>
4152
+
4153
+ * processor/command/base_subcmd.rb, test/unit/test-base-subcmd.rb:
4154
+ More complete base_subcmd and bug removal via unit testing.
4155
+
4156
+ 2009-08-06 rocky <rockyb@rubyforge.org>
4157
+
4158
+ * lib/Makefile, processor/Makefile, processor/command/Makefile,
4159
+ test/Makefile, test/unit/Makefile: I see Makefiles everywhere!
4160
+
4161
+ 2009-08-06 rocky <rockyb@rubyforge.org>
4162
+
4163
+ * processor/command/base_cmd.rb, processor/command/base_subcmd.rb,
4164
+ processor/command/help.rb, processor/msg.rb, processor/subcmd.rb:
4165
+ Start work on subcommand interface.
4166
+
4167
+ 2009-08-05 rocky <rockyb@rubyforge.org>
4168
+
4169
+ * processor/subcmd.rb: Rough cut at translation of corresponding
4170
+ Python pydbgr code.
4171
+
4172
+ 2009-08-05 R. Bernstein <rocky@gnu.org>
4173
+
4174
+ * processor/main.rb: Add debugger command argument checking
4175
+
4176
+ 2009-08-05 rocky <rockyb@rubyforge.org>
4177
+
4178
+ * processor/command/down.rb, processor/command/up.rb,
4179
+ processor/command/where.rb: Localize module require better and small
4180
+ standalone fixes.
4181
+
4182
+ 2009-08-05 rocky <rockyb@rubyforge.org>
4183
+
4184
+ * Makefile, processor/default.rb, processor/main.rb,
4185
+ processor/msg.rb: Add autoeval setting and turn prompt into a
4186
+ setting Too old to learn to live without a Makefile :-(
4187
+
4188
+ 2009-08-05 rocky <rockyb@rubyforge.org>
4189
+
4190
+ * lib/core.rb, lib/default.rb, lib/frame.rb, processor/cmdproc.rb,
4191
+ processor/command/where.rb, processor/default.rb,
4192
+ processor/main.rb, processor/mock.rb, rbdbgr.rb,
4193
+ test/unit/test-cmd-help.rb, test/unit/test-cmdproc.rb,
4194
+ test/unit/test-proc-main.rb: Separate Debugger, Debugger::Core and
4195
+ Debugger::CmdProcessor settings. Fix bugs in "where" command. Add
4196
+ ruby-debug stack_trace_on_error option.
4197
+
4198
+ 2009-08-05 rocky <rockyb@rubyforge.org>
4199
+
4200
+ * lib/core.rb, processor/cmdproc.rb, processor/command/down.rb,
4201
+ processor/command/help.rb, processor/command/up.rb,
4202
+ processor/command/where.rb, processor/mock.rb,
4203
+ processor/validate.rb, rbdbgr.rb, test/unit/test-proc-frame.rb: Add
4204
+ access to (top-)level debugger settings - help uses "width" setting
4205
+ of this now. Start a mock Debugger to help runing/testing
4206
+ individual commands standalone. Fix bugs in get_int of validate.
4207
+ "where" now sets a max int value. Probably some other things as
4208
+ well. Whew.
4209
+
4210
+ 2009-08-04 rocky <rockyb@rubyforge.org>
4211
+
4212
+ * lib/core.rb, processor/cmdproc.rb, processor/command/down.rb,
4213
+ processor/command/frame.rb, processor/command/help.rb,
4214
+ processor/command/up.rb, processor/command/where.rb: Small temporary
4215
+ changes
4216
+
4217
+ 2009-08-04 rocky <rockyb@rubyforge.org>
4218
+
4219
+ * processor/command/down.rb, processor/command/frame.rb,
4220
+ processor/command/help.rb, processor/command/up.rb,
4221
+ processor/command/where.rb: API change requires that we can no
4222
+ longer create a Debugger::Core object without a Debugger object.
4223
+ Adjust command standalone demo for this. Todo: create a common mock
4224
+ helper module.
4225
+
4226
+ 2009-08-04 rocky <rockyb@rubyforge.org>
4227
+
4228
+ * lib/core.rb, lib/default.rb, processor/cmdproc.rb,
4229
+ processor/command/down.rb, processor/command/up.rb,
4230
+ processor/frame.rb, rbdbgr.rb, test/unit/test-cmd-help.rb,
4231
+ test/unit/test-cmdproc.rb, test/unit/test-proc-frame.rb: Bug fix for
4232
+ negative positioning in frame command. help doc corrections in
4233
+ up/down. Start adding debugger settings. In doing so we also start
4234
+ start linking together core, command_processor and debugger objects.
4235
+
4236
+
4237
+ 2009-08-03 rocky <rockyb@rubyforge.org>
4238
+
4239
+ * lib/frame.rb: Use container type set by rb-threadframe.
4240
+
4241
+ 2009-08-02 rocky <rockyb@rubyforge.org>
4242
+
4243
+ * test/unit/test-lib-frame.rb: unit test administration
4244
+
4245
+ 2009-08-01 rocky <rockyb@rubyforge.org>
4246
+
4247
+ * lib/frame.rb, processor/command/where.rb: Tidy frame output a
4248
+ little.
4249
+
4250
+ 2009-08-01 rocky <rockyb@rubyforge.org>
4251
+
4252
+ * processor/cmdproc.rb, processor/command/down.rb,
4253
+ processor/command/up.rb, processor/frame.rb,
4254
+ test/unit/test-proc-frame.rb: Add up and down commands. Address some
4255
+ of the frame modularity issues via frame_setup and frame_teardown
4256
+
4257
+ 2009-07-31 rocky <rockyb@rubyforge.org>
4258
+
4259
+ * processor/cmdproc.rb: Minor
4260
+
4261
+ 2009-07-31 rocky <rockyb@rubyforge.org>
4262
+
4263
+ * lib/core.rb, processor/cmdproc.rb, processor/command/frame.rb,
4264
+ test/unit/test-proc-frame.rb: show minimal location in command loop.
4265
+ frame command works now, um, really.
4266
+
4267
+ 2009-07-31 rocky <rockyb@rubyforge.org>
4268
+
4269
+ * lib/frame.rb, processor/cmdproc.rb, processor/command/frame.rb,
4270
+ processor/frame.rb, processor/msg.rb, processor/validate.rb,
4271
+ test/unit/test-proc-frame.rb: More complete frame command... hack,
4272
+ hack, hack.
4273
+
4274
+ 2009-07-31 rocky <rockyb@rubyforge.org>
4275
+
4276
+ * lib/core.rb, processor/cmdproc.rb, processor/command/frame.rb:
4277
+ First impression of what a frame command might look like
4278
+
4279
+ 2009-07-31 rocky <rockyb@rubyforge.org>
4280
+
4281
+ * lib/core.rb, processor/cmdproc.rb, processor/command/where.rb:
4282
+ Fill in integer reading routines and add thread2frames in
4283
+ preparation of adding a debugger "frame" command.
4284
+
4285
+ 2009-07-30 rocky <rockyb@rubyforge.org>
4286
+
4287
+ * lib/frame.rb, test/unit/test-lib-frame.rb: Remove count_frames
4288
+
4289
+ 2009-07-30 rocky <rockyb@rubyforge.org>
4290
+
4291
+ * lib/frame.rb, test/unit/test-lib-frame.rb: Use
4292
+ ThreadFrame#stack_size.
4293
+
4294
+ 2009-07-30 rocky <rockyb@rubyforge.org>
4295
+
4296
+ * lib/frame.rb: Don't use ThreadFrame#caller_method but
4297
+ eval('self.class', frame.binding) instead. Add stack frame numbers
4298
+ to stack listing.
4299
+
4300
+ 2009-07-28 rocky <rockyb@rubyforge.org>
4301
+
4302
+ * lib/frame.rb, test/unit/test-lib-frame.rb: Add method class name,
4303
+ C arity, and tidy line numbers.
4304
+
4305
+ 2009-07-26 rocky <rockyb@rubyforge.org>
4306
+
4307
+ * processor/command/help.rb: Indentation on columns via columnize
4308
+ 0.3.1
4309
+
4310
+ 2009-07-26 rocky <rockyb@rubyforge.org>
4311
+
4312
+ * processor/command/base_cmd.rb, processor/command/help.rb: Add
4313
+ category help.
4314
+
4315
+ 2009-07-26 rocky <rockyb@rubyforge.org>
4316
+
4317
+ * processor/command/base_cmd.rb, processor/command/help.rb,
4318
+ test/unit/test-cmd-help.rb, test/unit/test-cmdproc.rb: Fill out help
4319
+ command some more. Do more stringent testing of class constants.
4320
+
4321
+ 2009-07-25 rocky <rockyb@rubyforge.org>
4322
+
4323
+ * processor/cmdproc.rb, processor/command/help.rb,
4324
+ processor/command/where.rb: Get "where" command to a point where it
4325
+ is minimally useful. Start "help" command.
4326
+
4327
+ 2009-07-25 rocky <rockyb@rubyforge.org>
4328
+
4329
+ * lib/frame.rb: Forgot block args
4330
+
4331
+ 2009-07-24 rocky <rockyb@rubyforge.org>
4332
+
4333
+ * lib/frame.rb: Piddle around with showing a frame
4334
+
4335
+ 2009-07-24 rocky <rockyb@rubyforge.org>
4336
+
4337
+ * lib/frame.rb: Include arity.
4338
+
4339
+ 2009-07-23 rocky <rockyb@rubyforge.org>
4340
+
4341
+ * lib/frame.rb: Show block/frame local information better. More
4342
+ work's needed though.
4343
+
4344
+ 2009-07-22 rocky <rockyb@rubyforge.org>
4345
+
4346
+ * lib/frame.rb, test/unit/test-lib-frame.rb: Show more frame info
4347
+ via threadframe.
4348
+
4349
+ 2009-07-19 rocky <rockyb@rubyforge.org>
4350
+
4351
+ * lib/core.rb, lib/frame.rb, lib/stack.rb, processor/cmdproc.rb,
4352
+ processor/command/base_cmd.rb, processor/command/exit.rb,
4353
+ processor/command/where.rb, rbdbgr.rb: where.rb: now to the state
4354
+ where it does something remotely useful. process_command_and_quit?
4355
+ doesn't try to run a comand after running it cmdproc.rb: set up
4356
+ access from commmand to core and itself. rbdbgr.rb: add debugger()
4357
+ method. exit.rb: fix bug in calling exit without args.
4358
+
4359
+ 2009-07-18 rocky <rockyb@rubyforge.org>
4360
+
4361
+ * lib/stack.rb: Fill out a tad more.
4362
+
4363
+ 2009-07-18 rocky <rocky@sanchez.(none)>
4364
+
4365
+ * lib/.gitignore, lib/core.rb, lib/stack.rb, processor/cmdproc.rb,
4366
+ processor/command/exit.rb, processor/command/where.rb,
4367
+ test/unit/test-cmdproc.rb: Start a real command - where. Nowhere
4368
+ near done though.
4369
+
4370
+ 2009-07-18 rocky <rocky@sanchez.(none)>
4371
+
4372
+ * processor/cmdproc.rb, processor/command/base_cmd.rb,
4373
+ processor/command/exit.rb: Turn some class instance variables into
4374
+ class constants since I don't think they'll change.
4375
+
4376
+ 2009-07-18 rocky <rocky@sanchez.(none)>
4377
+
4378
+ * processor/command/exit.rb: Minor
4379
+
4380
+ 2009-07-18 rocky <rocky@sanchez.(none)>
4381
+
4382
+ * processor/cmdproc.rb, processor/command/base_cmd.rb,
4383
+ processor/command/exit.rb, test/unit/test-cmdproc.rb: Start to clean
4384
+ up/simplify how to write debugger commands.
4385
+
4386
+ 2009-07-17 rocky <rockyb@rubyforge.org>
4387
+
4388
+ * lib/core.rb, processor/command/base_cmd.rb,
4389
+ processor/command/exit.rb, test/unit/test-cmdproc.rb: Thought this
4390
+ was committed. Whateveer. Add unit test. Comment what core does. Add
4391
+ exit command.
4392
+
4393
+ 2009-07-17 rocky <rocky@sanchez.(none)>
4394
+
4395
+ * README, Rakefile: Administriva
4396
+
4397
+ 2009-07-17 rocky <rocky@sanchez.(none)>
4398
+
4399
+ * processor/cmdproc.rb, test/unit/.gitignore,
4400
+ test/unit/test-cmdproc.rb: Our first unit test. Yay!
4401
+
4402
+ 2009-07-17 rocky <rocky@sanchez.(none)>
4403
+
4404
+ * processor/cmdproc.rb, processor/command/exit.rb,
4405
+ processor/command/quit.rb: Now have a mechanism for loading debugger
4406
+ and running debugger commands.
4407
+
4408
+ 2009-07-17 rocky <rocky@sanchez.(none)>
4409
+
4410
+ * lib/core.rb: Minor
4411
+
4412
+ 2009-07-17 rocky <rocky@sanchez.(none)>
4413
+
4414
+ * lib/core.rb, processor/cmdproc.rb, processor/command/.gitignore,
4415
+ processor/command/base_cmd.rb, processor/command/quit.rb: Start
4416
+ filling out command structure - but still more baby steps.
4417
+
4418
+ 2009-07-16 rocky <rocky@sanchez.(none)>
4419
+
4420
+ * Baby steps toward a real debugger. Hah - Florian, I beat you to it!
4421
+
4422
+