rb8-trepanning 0.1.3-universal-ruby-1.9.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (274) hide show
  1. data/.gitignore +3 -0
  2. data/CHANGES +34 -0
  3. data/ChangeLog +875 -0
  4. data/README.textile +59 -0
  5. data/Rakefile +215 -0
  6. data/app/.gitignore +1 -0
  7. data/app/cmd_parse.kpeg +241 -0
  8. data/app/cmd_parse.rb +212 -0
  9. data/app/cmd_parser.rb +1948 -0
  10. data/app/complete.rb +79 -0
  11. data/app/default.rb +90 -0
  12. data/app/display.rb +148 -0
  13. data/app/eventbuffer.rb +147 -0
  14. data/app/frame.rb +166 -0
  15. data/app/irb.rb +114 -0
  16. data/app/options.rb +200 -0
  17. data/app/run.rb +74 -0
  18. data/app/util.rb +65 -0
  19. data/bin/.gitignore +1 -0
  20. data/bin/trepan8 +115 -0
  21. data/data/.gitignore +1 -0
  22. data/data/irbrc +41 -0
  23. data/interface/.gitignore +1 -0
  24. data/interface/base_intf.rb +109 -0
  25. data/interface/client.rb +82 -0
  26. data/interface/comcodes.rb +20 -0
  27. data/interface/script.rb +110 -0
  28. data/interface/server.rb +147 -0
  29. data/interface/user.rb +165 -0
  30. data/io/base_io.rb +148 -0
  31. data/io/input.rb +158 -0
  32. data/io/null_output.rb +46 -0
  33. data/io/string_array.rb +156 -0
  34. data/io/tcpclient.rb +129 -0
  35. data/io/tcpfns.rb +33 -0
  36. data/io/tcpserver.rb +141 -0
  37. data/lib/debugger.rb +8 -0
  38. data/lib/trepanning.rb +283 -0
  39. data/processor/.gitignore +1 -0
  40. data/processor/command-ruby-debug/breakpoints.rb +155 -0
  41. data/processor/command-ruby-debug/catchpoint.rb +55 -0
  42. data/processor/command-ruby-debug/condition.rb +49 -0
  43. data/processor/command-ruby-debug/control.rb +31 -0
  44. data/processor/command-ruby-debug/display.rb +120 -0
  45. data/processor/command-ruby-debug/enable.rb +202 -0
  46. data/processor/command-ruby-debug/frame.rb +199 -0
  47. data/processor/command-ruby-debug/help.rb +63 -0
  48. data/processor/command-ruby-debug/info.rb +359 -0
  49. data/processor/command-ruby-debug/method.rb +84 -0
  50. data/processor/command-ruby-debug/reload.rb +40 -0
  51. data/processor/command-ruby-debug/save.rb +90 -0
  52. data/processor/command-ruby-debug/set.rb +237 -0
  53. data/processor/command-ruby-debug/show.rb +251 -0
  54. data/processor/command-ruby-debug/source.rb +36 -0
  55. data/processor/command-ruby-debug/threads.rb +189 -0
  56. data/processor/command-ruby-debug/trace.rb +57 -0
  57. data/processor/command-ruby-debug/variables.rb +199 -0
  58. data/processor/command.rb +270 -0
  59. data/processor/command/.gitignore +1 -0
  60. data/processor/command/alias.rb +54 -0
  61. data/processor/command/backtrace.rb +123 -0
  62. data/processor/command/base/cmd.rb +177 -0
  63. data/processor/command/base/subcmd.rb +230 -0
  64. data/processor/command/base/submgr.rb +188 -0
  65. data/processor/command/base/subsubcmd.rb +128 -0
  66. data/processor/command/base/subsubmgr.rb +199 -0
  67. data/processor/command/break.rb +114 -0
  68. data/processor/command/catch.rb +71 -0
  69. data/processor/command/complete.rb +39 -0
  70. data/processor/command/continue.rb +57 -0
  71. data/processor/command/directory.rb +50 -0
  72. data/processor/command/disable.rb +85 -0
  73. data/processor/command/display.rb +78 -0
  74. data/processor/command/down.rb +54 -0
  75. data/processor/command/edit.rb +79 -0
  76. data/processor/command/enable.rb +48 -0
  77. data/processor/command/eval.rb +90 -0
  78. data/processor/command/exit.rb +66 -0
  79. data/processor/command/finish.rb +59 -0
  80. data/processor/command/frame.rb +97 -0
  81. data/processor/command/help.rb +230 -0
  82. data/processor/command/help/.gitignore +1 -0
  83. data/processor/command/help/README +10 -0
  84. data/processor/command/help/command.txt +58 -0
  85. data/processor/command/help/examples.txt +16 -0
  86. data/processor/command/help/filename.txt +40 -0
  87. data/processor/command/help/location.txt +37 -0
  88. data/processor/command/help/suffixes.txt +17 -0
  89. data/processor/command/info.rb +28 -0
  90. data/processor/command/info_subcmd/.gitignore +1 -0
  91. data/processor/command/info_subcmd/args.rb +39 -0
  92. data/processor/command/info_subcmd/breakpoints.rb +80 -0
  93. data/processor/command/info_subcmd/catch.rb +36 -0
  94. data/processor/command/info_subcmd/files.rb +39 -0
  95. data/processor/command/info_subcmd/globals.rb +64 -0
  96. data/processor/command/info_subcmd/line.rb +30 -0
  97. data/processor/command/info_subcmd/locals.rb +69 -0
  98. data/processor/command/info_subcmd/macro.rb +62 -0
  99. data/processor/command/info_subcmd/program.rb +51 -0
  100. data/processor/command/info_subcmd/ruby.rb +57 -0
  101. data/processor/command/info_subcmd/source.rb +74 -0
  102. data/processor/command/info_subcmd/stack.rb +25 -0
  103. data/processor/command/info_subcmd/threads.rb +75 -0
  104. data/processor/command/kill.rb +78 -0
  105. data/processor/command/list.rb +117 -0
  106. data/processor/command/macro.rb +68 -0
  107. data/processor/command/next.rb +79 -0
  108. data/processor/command/parsetree.rb +56 -0
  109. data/processor/command/pp.rb +40 -0
  110. data/processor/command/pr.rb +37 -0
  111. data/processor/command/ps.rb +40 -0
  112. data/processor/command/restart.rb +86 -0
  113. data/processor/command/save.rb +58 -0
  114. data/processor/command/set.rb +47 -0
  115. data/processor/command/set_subcmd/.gitignore +1 -0
  116. data/processor/command/set_subcmd/abbrev.rb +25 -0
  117. data/processor/command/set_subcmd/auto.rb +27 -0
  118. data/processor/command/set_subcmd/auto_subcmd/.gitignore +1 -0
  119. data/processor/command/set_subcmd/auto_subcmd/eval.rb +53 -0
  120. data/processor/command/set_subcmd/auto_subcmd/irb.rb +33 -0
  121. data/processor/command/set_subcmd/auto_subcmd/list.rb +33 -0
  122. data/processor/command/set_subcmd/basename.rb +25 -0
  123. data/processor/command/set_subcmd/callstyle.rb +46 -0
  124. data/processor/command/set_subcmd/confirm.rb +24 -0
  125. data/processor/command/set_subcmd/debug.rb +47 -0
  126. data/processor/command/set_subcmd/different.rb +61 -0
  127. data/processor/command/set_subcmd/highlight.rb +43 -0
  128. data/processor/command/set_subcmd/max.rb +26 -0
  129. data/processor/command/set_subcmd/max_subcmd/list.rb +49 -0
  130. data/processor/command/set_subcmd/max_subcmd/stack.rb +50 -0
  131. data/processor/command/set_subcmd/max_subcmd/string.rb +76 -0
  132. data/processor/command/set_subcmd/max_subcmd/width.rb +49 -0
  133. data/processor/command/set_subcmd/reload.rb +42 -0
  134. data/processor/command/set_subcmd/timer.rb +58 -0
  135. data/processor/command/set_subcmd/trace.rb +37 -0
  136. data/processor/command/set_subcmd/trace_subcmd/buffer.rb +42 -0
  137. data/processor/command/set_subcmd/trace_subcmd/print.rb +41 -0
  138. data/processor/command/shell.rb +139 -0
  139. data/processor/command/show.rb +39 -0
  140. data/processor/command/show_subcmd/.gitignore +1 -0
  141. data/processor/command/show_subcmd/abbrev.rb +20 -0
  142. data/processor/command/show_subcmd/alias.rb +46 -0
  143. data/processor/command/show_subcmd/args.rb +34 -0
  144. data/processor/command/show_subcmd/auto.rb +28 -0
  145. data/processor/command/show_subcmd/auto_subcmd/eval.rb +27 -0
  146. data/processor/command/show_subcmd/auto_subcmd/irb.rb +23 -0
  147. data/processor/command/show_subcmd/auto_subcmd/list.rb +22 -0
  148. data/processor/command/show_subcmd/basename.rb +20 -0
  149. data/processor/command/show_subcmd/callstyle.rb +22 -0
  150. data/processor/command/show_subcmd/confirm.rb +18 -0
  151. data/processor/command/show_subcmd/debug.rb +26 -0
  152. data/processor/command/show_subcmd/debug_subcmd/dbgr.rb +21 -0
  153. data/processor/command/show_subcmd/debug_subcmd/skip.rb +22 -0
  154. data/processor/command/show_subcmd/debug_subcmd/step.rb +22 -0
  155. data/processor/command/show_subcmd/different.rb +26 -0
  156. data/processor/command/show_subcmd/directories.rb +22 -0
  157. data/processor/command/show_subcmd/highlight.rb +24 -0
  158. data/processor/command/show_subcmd/max.rb +27 -0
  159. data/processor/command/show_subcmd/max_subcmd/list.rb +38 -0
  160. data/processor/command/show_subcmd/max_subcmd/stack.rb +36 -0
  161. data/processor/command/show_subcmd/max_subcmd/string.rb +42 -0
  162. data/processor/command/show_subcmd/max_subcmd/width.rb +37 -0
  163. data/processor/command/show_subcmd/reload.rb +18 -0
  164. data/processor/command/show_subcmd/timer.rb +18 -0
  165. data/processor/command/show_subcmd/trace.rb +29 -0
  166. data/processor/command/show_subcmd/trace_subcmd/buffer.rb +65 -0
  167. data/processor/command/show_subcmd/trace_subcmd/print.rb +23 -0
  168. data/processor/command/show_subcmd/version.rb +23 -0
  169. data/processor/command/source.rb +134 -0
  170. data/processor/command/step.rb +81 -0
  171. data/processor/command/tbreak.rb +19 -0
  172. data/processor/command/unalias.rb +44 -0
  173. data/processor/command/undisplay.rb +59 -0
  174. data/processor/command/up.rb +72 -0
  175. data/processor/default.rb +56 -0
  176. data/processor/display.rb +17 -0
  177. data/processor/eval.rb +113 -0
  178. data/processor/eventbuf.rb +105 -0
  179. data/processor/frame.rb +172 -0
  180. data/processor/help.rb +92 -0
  181. data/processor/helper.rb +76 -0
  182. data/processor/hook.rb +134 -0
  183. data/processor/load_cmds.rb +258 -0
  184. data/processor/location.rb +174 -0
  185. data/processor/main.rb +455 -0
  186. data/processor/mock.rb +136 -0
  187. data/processor/msg.rb +61 -0
  188. data/processor/processor.rb +674 -0
  189. data/processor/running.rb +168 -0
  190. data/processor/stepping.rb +18 -0
  191. data/processor/subcmd.rb +161 -0
  192. data/processor/validate.rb +355 -0
  193. data/processor/virtual.rb +34 -0
  194. data/test/data/.gitignore +1 -0
  195. data/test/data/break_bad.cmd +19 -0
  196. data/test/data/break_bad.right +29 -0
  197. data/test/data/break_loop_bug.cmd +5 -0
  198. data/test/data/break_loop_bug.right +15 -0
  199. data/test/data/dollar-0.right +2 -0
  200. data/test/data/dollar-0a.right +2 -0
  201. data/test/data/dollar-0b.right +2 -0
  202. data/test/data/edit.cmd +14 -0
  203. data/test/data/edit.right +24 -0
  204. data/test/data/file-with-space.cmd +6 -0
  205. data/test/data/file-with-space.right +4 -0
  206. data/test/data/printvar.cmd +17 -0
  207. data/test/data/printvar.right +31 -0
  208. data/test/data/raise.cmd +11 -0
  209. data/test/data/raise.right +19 -0
  210. data/test/data/source.cmd +5 -0
  211. data/test/data/source.right +18 -0
  212. data/test/data/stepping-1.9.right +50 -0
  213. data/test/data/stepping.cmd +21 -0
  214. data/test/data/stepping.right +48 -0
  215. data/test/data/trepan8-save.1 +6 -0
  216. data/test/example/bp_loop_issue.rb +3 -0
  217. data/test/example/break-bug.rb +7 -0
  218. data/test/example/brkpt-class-bug.rb +8 -0
  219. data/test/example/classes.rb +11 -0
  220. data/test/example/dollar-0.rb +5 -0
  221. data/test/example/except-bug1.rb +4 -0
  222. data/test/example/except-bug2.rb +7 -0
  223. data/test/example/file with space.rb +1 -0
  224. data/test/example/gcd.rb +18 -0
  225. data/test/example/info-var-bug.rb +47 -0
  226. data/test/example/info-var-bug2.rb +2 -0
  227. data/test/example/null.rb +1 -0
  228. data/test/example/pm-bug.rb +3 -0
  229. data/test/example/pm.rb +11 -0
  230. data/test/example/raise.rb +3 -0
  231. data/test/integration/.gitignore +4 -0
  232. data/test/integration/config.yaml +8 -0
  233. data/test/integration/helper.rb +154 -0
  234. data/test/integration/test-break_bad.rb +26 -0
  235. data/test/integration/test-dollar-0.rb +31 -0
  236. data/test/integration/test-edit.rb +17 -0
  237. data/test/integration/test-file-with-space.rb +26 -0
  238. data/test/integration/test-printvar.rb +17 -0
  239. data/test/integration/test-raise.rb +21 -0
  240. data/test/integration/test-source.rb +16 -0
  241. data/test/integration/test-stepping.rb +24 -0
  242. data/test/unit/.gitignore +1 -0
  243. data/test/unit/cmd-helper.rb +52 -0
  244. data/test/unit/mock-helper.rb +12 -0
  245. data/test/unit/test-app-cmd_parse.rb +97 -0
  246. data/test/unit/test-app-cmd_parser.rb +23 -0
  247. data/test/unit/test-app-complete.rb +39 -0
  248. data/test/unit/test-app-frame.rb +32 -0
  249. data/test/unit/test-app-options.rb +92 -0
  250. data/test/unit/test-app-run.rb +14 -0
  251. data/test/unit/test-app-util.rb +44 -0
  252. data/test/unit/test-base-cmd.rb +45 -0
  253. data/test/unit/test-base-subcmd.rb +57 -0
  254. data/test/unit/test-base-submgr.rb +23 -0
  255. data/test/unit/test-base-subsubcmd.rb +17 -0
  256. data/test/unit/test-cmd-alias.rb +48 -0
  257. data/test/unit/test-cmd-exit.rb +27 -0
  258. data/test/unit/test-cmd-help.rb +104 -0
  259. data/test/unit/test-cmd-kill.rb +46 -0
  260. data/test/unit/test-cmd-source.rb +34 -0
  261. data/test/unit/test-completion.rb +42 -0
  262. data/test/unit/test-intf-user.rb +46 -0
  263. data/test/unit/test-io-input.rb +27 -0
  264. data/test/unit/test-io-tcp.rb +33 -0
  265. data/test/unit/test-io-tcpclient.rb +54 -0
  266. data/test/unit/test-io-tcpfns.rb +17 -0
  267. data/test/unit/test-io-tcpserver.rb +50 -0
  268. data/test/unit/test-proc-eval.rb +36 -0
  269. data/test/unit/test-proc-hook.rb +30 -0
  270. data/test/unit/test-proc-load_cmds.rb +50 -0
  271. data/test/unit/test-proc-location.rb +79 -0
  272. data/test/unit/test-subcmd-help.rb +44 -0
  273. data/trepan8.gemspec +58 -0
  274. metadata +388 -0
data/.gitignore ADDED
@@ -0,0 +1,3 @@
1
+ /*~
2
+ /pkg
3
+ /tmp
data/CHANGES ADDED
@@ -0,0 +1,34 @@
1
+ June 12, 2011 (0.1.3) Fleetwood release
2
+
3
+ First attempt at backport from trepanning.
4
+
5
+ New features
6
+ - Syntax highlighting (if coderay, term-ansicolor and newer linecache)
7
+ - tab completion (more complete on MRI 1.8.7 rb-readline gem used)
8
+ - parsetree (if ParseTree installed)
9
+
10
+ New commands from trepanning:
11
+ - gdb-like "confirm" to turn on/off prompting of dangerous commands
12
+ - "eval" and "eval?" without args to run parts of the current source line
13
+ - macros
14
+ - aliases
15
+ - new help system
16
+ - unique command abbrev (or not if "set abbrev off")
17
+ - new "!" suffix on "quit" and "kill" command, e.g. "q!", to avoid prompting.
18
+
19
+ Incompatibilities:
20
+ - autoeval is on by default
21
+ - ";;" separates debugger commands so you can use ";" in eval
22
+ - some possibliy lesser-used commands have been dropped. If people notice,
23
+ they can be reinstated.
24
+ - p is now pr to avoid eval confusion with Ruby's "p" method
25
+ - dropped support for annotations and ruby-debug emacs. Use newer emacs-dbgr
26
+ - some commands have been moved to closer match gdb:
27
+ * threads -> info threads
28
+ * reload -> set reload
29
+ * trace -> set trace
30
+
31
+ This sort of works for an unpatched MRI 1.9. Better is a patched MRI
32
+ 1.9.2 to use rb-threadframe and rb-trepanning.
33
+
34
+ See ruby-debug's CHANGES for older changes
data/ChangeLog ADDED
@@ -0,0 +1,875 @@
1
+ 2011-06-11 rocky <rockyb@rubyforge.org>
2
+
3
+ * Rakefile: I run rubinius on this too often.
4
+
5
+ 2011-06-11 rocky <rockyb@rubyforge.org>
6
+
7
+ * CHANGES: Update NEWS
8
+
9
+ 2011-06-11 rocky <rockyb@rubyforge.org>
10
+
11
+ * test/integration/test-file-with-space.rb,
12
+ test/integration/test-stepping.rb: Work on a couple of integration
13
+ tests.
14
+
15
+ 2011-06-11 rocky <rockyb@rubyforge.org>
16
+
17
+ * trepan8.gemspec: Package administrivia
18
+
19
+ 2011-06-11 rocky <rockyb@rubyforge.org>
20
+
21
+ * trepan8.gemspec: Build special for 1.8.7 versus 1.9.2. The
22
+ linecache dependency is different.
23
+
24
+ 2011-06-11 rocky <rockyb@rubyforge.org>
25
+
26
+ * app/cmd_parse.rb, processor/command/base/subsubcmd.rb,
27
+ processor/command/show_subcmd/auto_subcmd/eval.rb: See above. Meant
28
+ to commit along with the other..
29
+
30
+ 2011-06-11 rocky <rockyb@rubyforge.org>
31
+
32
+ * test/data/stepping-1.9.right, test/integration/helper.rb,
33
+ test/integration/test-raise.rb, test/integration/test-stepping.rb,
34
+ test/unit/test-app-cmd_parse.rb, test/unit/test-app-frame.rb: More
35
+ tolerance for unpatched 1.9.2
36
+
37
+ 2011-06-11 rocky <rockyb@rubyforge.org>
38
+
39
+ * CHANGES, README.textile, app/irb.rb, app/options.rb,
40
+ processor/command/base/cmd.rb, processor/command/base/subcmd.rb,
41
+ processor/command/base/submgr.rb,
42
+ processor/command/base/subsubcmd.rb,
43
+ processor/command/base/subsubmgr.rb,
44
+ processor/command/info_subcmd/source.rb, processor/eventbuf.rb,
45
+ processor/load_cmds.rb, processor/location.rb,
46
+ processor/validate.rb, test/unit/test-base-subcmd.rb,
47
+ test/unit/test-base-submgr.rb, test/unit/test-proc-location.rb,
48
+ trepan8.gemspec: Add MRI 1.9 tolerance although rb-threadframe and
49
+ rb-trepanning do a much better job.
50
+
51
+ 2011-06-10 rocky <rockyb@rubyforge.org>
52
+
53
+ * CHANGES, app/options.rb,
54
+ processor/command/set_subcmd/highlight.rb, trepan8.gemspec: Add
55
+ tests to see if linecahe is late enough for terminal highlighting.
56
+
57
+ 2011-06-10 rocky <rockyb@rubyforge.org>
58
+
59
+ * CHANGES, processor/command/info_subcmd/threads.rb: Add "info
60
+ threads" from ruby-debug.
61
+
62
+ 2011-06-10 rocky <rockyb@rubyforge.org>
63
+
64
+ * processor/location.rb: location.rb in better sync with
65
+ rbx-trepanning.
66
+
67
+ 2011-06-10 rocky <rockyb@rubyforge.org>
68
+
69
+ * CHANGES, processor/command/help/suffixes.txt,
70
+ processor/command/list.rb, processor/command/set_subcmd/reload.rb,
71
+ processor/command/show_subcmd/reload.rb, processor/default.rb,
72
+ processor/location.rb: Add set/show reload.
73
+
74
+ 2011-06-09 rocky <rockyb@rubyforge.org>
75
+
76
+ * processor/command/info_subcmd/locals.rb,
77
+ processor/command/info_subcmd/source.rb: Add gdb "info source"
78
+
79
+ 2011-06-09 rocky <rockyb@rubyforge.org>
80
+
81
+ * processor/command/info_subcmd/globals.rb,
82
+ processor/command/info_subcmd/locals.rb, processor/eval.rb: Add
83
+ "info globals".
84
+
85
+ 2011-06-09 rocky <rockyb@rubyforge.org>
86
+
87
+ * app/frame.rb, processor/command/eval.rb, processor/eval.rb,
88
+ processor/location.rb, test/data/printvar.cmd,
89
+ test/data/printvar.right, test/integration/helper.rb,
90
+ test/integration/test-break-bad.rb,
91
+ test/integration/test-break_bad.rb,
92
+ test/integration/test-dollar-0.rb, test/integration/test-edit.rb,
93
+ test/integration/test-printvar.rb, test/integration/test-source.rb,
94
+ test/integration/test-stepping.rb: Fix bug in debugger eval. DRY
95
+ integration tests. frame.describe now respects basename setting.
96
+
97
+ 2011-06-09 rocky <rockyb@rubyforge.org>
98
+
99
+ * processor/command/help/command.txt,
100
+ processor/command/help/examples.txt,
101
+ processor/command/help/suffixes.txt: Add more syntax help.
102
+ Specifically break out examples and describe suffixes.
103
+
104
+ 2011-06-09 rocky <rockyb@rubyforge.org>
105
+
106
+ * Rakefile: Better file cleanup. Sync with rbx-trepanning.
107
+
108
+ 2011-06-09 rocky <rockyb@rubyforge.org>
109
+
110
+ * processor/command/set_subcmd/timer.rb,
111
+ processor/command/show_subcmd/timer.rb: Add set/show timer hook
112
+
113
+ 2011-06-09 rocky <rockyb@rubyforge.org>
114
+
115
+ * CHANGES, ChangeLog: What's up.
116
+
117
+ 2011-06-09 rocky <rockyb@rubyforge.org>
118
+
119
+ * README.textile: Consistency
120
+
121
+ 2011-06-09 rocky <rockyb@rubyforge.org>
122
+
123
+ * README.textile: Consistency
124
+
125
+ 2011-06-09 rocky <rockyb@rubyforge.org>
126
+
127
+ Merge branch 'master' of github.com:rocky/rb8-trepanning
128
+
129
+ 2011-06-09 rocky <rockyb@rubyforge.org>
130
+
131
+ * README.textile: List optional dependencies
132
+
133
+ 2011-06-09 rocky <rockyb@rubyforge.org>
134
+
135
+ * interface/user.rb, lib/trepanning.rb, processor/command/source.rb:
136
+ More complete completion for "source". Deal with Readline completion
137
+ proc wars and rb-readline bug.
138
+
139
+ 2011-06-09 rocky <rockyb@rubyforge.org>
140
+
141
+ * processor/command/catch.rb: catch Docstring. I think I got it
142
+ right this time.
143
+
144
+ 2011-06-08 rocky <rockyb@rubyforge.org>
145
+
146
+ * Rakefile, io/input.rb, lib/trepanning.rb,
147
+ processor/command/catch.rb,
148
+ processor/command/set_subcmd/callstyle.rb,
149
+ processor/command/set_subcmd/highlight.rb,
150
+ processor/command/shell.rb: Part of last commit. See that.
151
+
152
+ 2011-06-08 rocky <rockyb@rubyforge.org>
153
+
154
+ * test/unit/test-app-options.rb: Allow rb-readline which does
155
+ command completion better. Silence multiple constant initialization
156
+ warnings via require irb and require readline. highlight, callstyle:
157
+ add completion args Rakefile: fix standalone by getting Ruby
158
+ location. test-app-options: remove --help test until we deal with
159
+ the fact --help exits
160
+
161
+ 2011-06-08 rocky <rockyb@rubyforge.org>
162
+
163
+ * processor/command/parsetree.rb: Add section header on parsetree.
164
+
165
+ 2011-06-08 rocky <rockyb@rubyforge.org>
166
+
167
+ * processor/command/pp.rb: Got class name wrong on PP command
168
+
169
+ 2011-06-08 rocky <rockyb@rubyforge.org>
170
+
171
+ * processor/command/pp.rb: Got class name wrong on PP command
172
+
173
+ 2011-06-08 rocky <rockyb@rubyforge.org>
174
+
175
+ * processor/command/pp.rb,
176
+ processor/command/show_subcmd/max_subcmd/stack.rbc,
177
+ test/integration/.gitignore: Add rudimentary "pp" (pretty print)
178
+ command.
179
+
180
+ 2011-06-08 rocky <rockyb@rubyforge.org>
181
+
182
+ * README.textile, processor/command/parsetree.rb: add $ promts
183
+ README example
184
+
185
+ 2011-06-08 rocky <rockyb@rubyforge.org>
186
+
187
+ * app/cmd_parse.rb, processor/command/next.rb,
188
+ processor/command/parsetree.rb, processor/command/pr.rb,
189
+ processor/command/step.rb: Add a "parsetree" debugger command.
190
+
191
+ 2011-06-08 rocky <rockyb@rubyforge.org>
192
+
193
+ Merge branch 'master' of github.com:rocky/rb8-trepanning
194
+
195
+ 2011-06-08 rocky <rockyb@rubyforge.org>
196
+
197
+ * interface/user.rb: History file is in .trepan8_hist
198
+
199
+ 2011-06-08 rocky <rockyb@rubyforge.org>
200
+
201
+ Merge branch 'master' of github.com:rocky/rb8-trepanning
202
+
203
+ 2011-06-08 rocky <rockyb@rubyforge.org>
204
+
205
+ * test/data/file-with-space.cmd, test/data/file-with-space.right:
206
+ Forgot to add file
207
+
208
+ 2011-06-08 rocky <rockyb@rubyforge.org>
209
+
210
+ Merge branch 'master' of github.com:rocky/rb8-trepanning
211
+
212
+ 2011-06-08 rocky <rockyb@rubyforge.org>
213
+
214
+ * test/integration/test-file-with-space.rb: Convert
215
+ test-file-with-spaces from ruby-debug.
216
+
217
+ 2011-06-07 rocky <rockyb@rubyforge.org>
218
+
219
+ * processor/command/break.rb, test/data/break_bad.cmd,
220
+ test/data/break_bad.right, test/data/break_loop_bug.cmd,
221
+ test/data/break_loop_bug.right, test/data/source.right,
222
+ test/integration/test-break-bad.rb,
223
+ test/integration/test-stepping.rb: Convert test-break-bad
224
+ integration test from ruby-debug
225
+
226
+ 2011-06-07 rocky <rockyb@rubyforge.org>
227
+
228
+ * test/data/dollar-0.right, test/data/dollar-0a.right,
229
+ test/data/dollar-0b.right, test/integration/test-dollar-0.rb,
230
+ test/integration/test-dollar-0.rb.try,
231
+ test/integration/test-raise.rb: Convert test-dollar0.rb integration
232
+ test from ruby-debug.
233
+
234
+ 2011-06-07 rocky <rockyb@rubyforge.org>
235
+
236
+ * processor/validate.rb, test/data/source.cmd,
237
+ test/data/source.right, test/data/trepan8-save.1,
238
+ test/integration/test-source.rb: Convert source test from ruby-debug
239
+
240
+
241
+ 2011-06-07 rocky <rockyb@rubyforge.org>
242
+
243
+ * data/irbrc, lib/trepanning.rb, processor/command/catch.rb,
244
+ processor/command/info_subcmd/catch.rb,
245
+ processor/command/info_subcmd/program.rb,
246
+ processor/command/shell.rb, processor/main.rb,
247
+ processor/processor.rb, test/data/raise.cmd, test/data/raise.right,
248
+ test/integration/test-raise.rb, test/integration/test-raise.rb.try,
249
+ test/unit/test-completion.rb: Add ruby-debug "catch" command.
250
+
251
+ 2011-06-07 rocky <rockyb@rubyforge.org>
252
+
253
+ * processor/command/break.rb, processor/validate.rb,
254
+ test/integration/test-raise.rb.try,
255
+ test/integration/test-stepping.rb: Remove some debug code.
256
+
257
+ 2011-06-07 rocky <rockyb@rubyforge.org>
258
+
259
+ * processor/command/break.rb,
260
+ processor/command/info_subcmd/breakpoints.rb, processor/main.rb,
261
+ processor/processor.rb, processor/validate.rb,
262
+ test/data/edit.right, test/data/stepping.right: Allow breakpoint
263
+ conditions. Set CmdProcessor event names.
264
+
265
+ 2011-06-07 rocky <rockyb@rubyforge.org>
266
+
267
+ * processor/command/show_subcmd/callstyle.rb,
268
+ test/data/stepping.cmd, test/data/stepping.right,
269
+ test/integration/test-stepping.rb: Add stepping integration test
270
+ from ruby-debug.
271
+
272
+ 2011-06-06 rocky <rockyb@rubyforge.org>
273
+
274
+ * processor/command/set_subcmd/callstyle.rb,
275
+ processor/command/set_subcmd/different.rb,
276
+ processor/command/show_subcmd/callstyle.rb, processor/processor.rb:
277
+ Add set/show callstyle like ruby-debug has. processor.rb: bug in
278
+ running from "source"'d file.
279
+
280
+ 2011-06-06 rocky <rockyb@rubyforge.org>
281
+
282
+ * processor/command/set_subcmd/max.rb,
283
+ processor/command/set_subcmd/max_subcmd/list.rb,
284
+ processor/command/set_subcmd/max_subcmd/stack.rb,
285
+ processor/command/set_subcmd/max_subcmd/string.rb,
286
+ processor/command/set_subcmd/max_subcmd/width.rb,
287
+ processor/command/show_subcmd/max.rb,
288
+ processor/command/show_subcmd/max_subcmd/list.rb,
289
+ processor/command/show_subcmd/max_subcmd/stack.rb,
290
+ processor/command/show_subcmd/max_subcmd/stack.rbc,
291
+ processor/command/show_subcmd/max_subcmd/string.rb,
292
+ processor/command/show_subcmd/max_subcmd/width.rb: Add trepanning
293
+ "set max" commands.
294
+
295
+ 2011-06-06 rocky <rockyb@rubyforge.org>
296
+
297
+ * processor/command/break.rb: Remove \n's which were left-over from
298
+ ruby-debug.
299
+
300
+ 2011-06-06 rocky <rockyb@rubyforge.org>
301
+
302
+ * app/options.rb: Small options processing changes
303
+
304
+ 2011-06-05 rocky <rockyb@rubyforge.org>
305
+
306
+ * test/integration/helper.rb: More stray debug output
307
+
308
+ 2011-06-05 rocky <rockyb@rubyforge.org>
309
+
310
+ * Rakefile, app/options.rb, app/run.rb, bin/trepan8,
311
+ interface/script.rb, processor/command/set_subcmd/debug.rb,
312
+ processor/processor.rb, test/data/edit.right,
313
+ test/integration/helper.rb, test/integration/test-dollar-0.rb,
314
+ test/integration/test-dollar-0.rb.try,
315
+ test/integration/test-edit.rb, test/integration/test-raise.rb,
316
+ test/integration/test-raise.rb.try: Get first integration test
317
+ working. "set debug testing" beefed up for the task. Add --basename
318
+ option. Remove --annotate remnant and some debug output.
319
+
320
+ 2011-06-05 rocky <rockyb@rubyforge.org>
321
+
322
+ * README.textile: README format tweaking
323
+
324
+ 2011-06-05 rocky <rockyb@rubyforge.org>
325
+
326
+ * README.textile: Github likes README's.
327
+
328
+ 2011-06-05 rocky <rockyb@rubyforge.org>
329
+
330
+ * app/default.rb, app/interface.rb, app/options.rb, app/run.rb,
331
+ bin/.gitignore, bin/trepan8, lib/trepanning.rb,
332
+ processor/command/set_subcmd/highlight.rb: options processing done
333
+ in app/processing rather than bin/trepan8 as other trepanning
334
+ debugger do. Options processing is I think a little less convoluted
335
+ now with the replacement of an ostruct for a hash. "set highlight
336
+ reset" sets highight on in addition to resetting.
337
+
338
+ 2011-06-05 rocky <rockyb@rubyforge.org>
339
+
340
+ * app/run.rb, bin/trepan8, test/unit/test-app-run.rb: Move
341
+ debug_program() from debugger invocation script (bin/trepan8 here)
342
+ to app/run.rb as trepan and trepanx have it.
343
+
344
+ 2011-06-04 rocky <rockyb@rubyforge.org>
345
+
346
+ * interface/script.rb, lib/trepanning.rb,
347
+ processor/command/edit.rb, processor/command/set_subcmd/debug.rb,
348
+ processor/main.rb, test/data/edit.cmd, test/data/edit.right,
349
+ test/integration/helper.rb, test/integration/test-edit.rb: Improve
350
+ "edit" command. Closer to having integration testing working.
351
+
352
+ 2011-06-04 rocky <rockyb@rubyforge.org>
353
+
354
+ * processor/command/help/command.txt: command syntax help yet again.
355
+
356
+
357
+ 2011-06-04 rocky <rockyb@rubyforge.org>
358
+
359
+ * test/unit/test-proc-load_cmds.rb: Add load_cmds unit test.
360
+
361
+ 2011-06-04 rocky <rockyb@rubyforge.org>
362
+
363
+ * interface/user.rb, lib/trepanning.rb,
364
+ test/unit/test-completion.rb: Fix up complete unit test. Need to
365
+ remove global variable down the line...
366
+
367
+ 2011-06-04 rocky <rockyb@rubyforge.org>
368
+
369
+ * app/util.rb, processor/command/help/command.txt,
370
+ processor/command/list.rb, processor/command/set_subcmd/abbrev.rb,
371
+ processor/command/show_subcmd/abbrev.rb, processor/default.rb,
372
+ processor/main.rb, processor/validate.rb,
373
+ test/unit/test-app-util.rb: Allow unique abbreviations of commands.
374
+ See set/show abbrev. Sync with rbx-trepanning
375
+
376
+ 2011-06-04 rocky <rockyb@rubyforge.org>
377
+
378
+ * processor/command/info_subcmd/macro.rb,
379
+ processor/command/show_subcmd/macro.rb: show macro -> info macro as
380
+ gdb has it.
381
+
382
+ 2011-06-04 rocky <rockyb@rubyforge.org>
383
+
384
+ * processor/command/info_subcmd/args.rb,
385
+ processor/command/info_subcmd/locals.rb: Add info locals
386
+
387
+ 2011-06-04 rocky <rockyb@rubyforge.org>
388
+
389
+ * app/options.rb, bin/trepan8, processor/default.rb,
390
+ processor/processor.rb: Add trepan8 --highlight option.
391
+
392
+ 2011-06-04 rocky <rockyb@rubyforge.org>
393
+
394
+ * processor/command/list.rb, processor/default.rb,
395
+ processor/location.rb, trepan8.gemspec: list.rb, repan8.gemspec:
396
+ support for syntax highlighting. default.rb, location.rb: move
397
+ reload_on_change to be a setting.
398
+
399
+ 2011-06-04 rocky <rockyb@rubyforge.org>
400
+
401
+ * bin/trepan8, lib/trepanning.rb: Change more uses of the newer way
402
+ to call debugger init scripts.
403
+
404
+ 2011-06-03 rocky <rockyb@rubyforge.org>
405
+
406
+ Merge branch 'master' of
407
+ /srv/gitosis/repositories/rb8-trepanning Conflicts:
408
+ processor/main.rb
409
+
410
+ 2011-06-03 rocky <rockyb@rubyforge.org>
411
+
412
+ * app/interface.rb, bin/trepan8, io/input.rb, lib/trepanning.rb,
413
+ processor/location.rb, processor/main.rb, processor/processor.rb:
414
+ Use newer style inteface stack for startup scripts.
415
+
416
+ 2011-06-03 rocky <rockyb@rubyforge.org>
417
+
418
+ * interface/client.rb, interface/server.rb, interface/user.rb,
419
+ processor/command/eval.rb, processor/command/source.rb,
420
+ processor/location.rb, processor/main.rb,
421
+ test/unit/test-cmd-source.rb, test/unit/test-proc-eval.rb,
422
+ test/unit/test-proc-hook.rb, test/unit/test-subcmd-help.rb: Fix up
423
+ "source" command. More unit tests. Add closed? to interfaces.
424
+
425
+ 2011-06-03 rocky <rockyb@rubyforge.org>
426
+
427
+ * app/display.rb, app/eventbuffer.rb: Forgot the "display" and
428
+ "eventbuffer" helper modules
429
+
430
+ 2011-06-03 rocky <rockyb@rubyforge.org>
431
+
432
+ * io/input.rb, lib/trepanning.rb,
433
+ processor/command/set_subcmd/auto_subcmd/eval.rb,
434
+ processor/processor.rb: Start readline tab completion.
435
+ auto_subcmd/eval.rb: DRY code.
436
+
437
+ 2011-06-02 rocky <rockyb@rubyforge.org>
438
+
439
+ * Rakefile, app/interface.rb, bin/trepan8, io/null_output.rb,
440
+ processor/command/continue.rb, processor/command/display.rb,
441
+ processor/command/finish.rb, processor/command/info_subcmd/line.rb,
442
+ processor/command/next.rb, processor/command/pr.rb,
443
+ processor/command/ps.rb,
444
+ processor/command/set_subcmd/auto_subcmd/irb.rb,
445
+ processor/command/set_subcmd/auto_subcmd/list.rb,
446
+ processor/command/show_subcmd/auto_subcmd/irb.rb,
447
+ processor/command/show_subcmd/auto_subcmd/list.rb,
448
+ processor/command/source.rb, processor/command/step.rb,
449
+ processor/command/undisplay.rb, processor/default.rb,
450
+ processor/display.rb, processor/eventbuf.rb, processor/hook.rb,
451
+ processor/main.rb, processor/processor.rb,
452
+ test/unit/test-cmd-help.rb: Cut over to new-style interfaces. Add
453
+ display/undisplay "source", set/show autoirb/list "pr" "ps "
454
+ commands.
455
+
456
+ 2011-06-02 rocky <rockyb@rubyforge.org>
457
+
458
+ * processor/command/tbreak.rb: tbreak: Remove alias. Improve
459
+ docstring. Sync with rb-trepanning and rbx-trepanning.
460
+
461
+ 2011-06-02 rocky <rockyb@rubyforge.org>
462
+
463
+ * processor/command/break.rb, processor/command/tbreak.rb,
464
+ processor/validate.rb, test/unit/test-cmd-help.rb: Add "break" and
465
+ "tbreak" debugger commands.
466
+
467
+ 2011-06-02 rocky <rockyb@rubyforge.org>
468
+
469
+ * processor/validate.rb: Remove some breakpoint parsing examples
470
+ that are not relevant here
471
+
472
+ 2011-06-02 rocky <rockyb@rubyforge.org>
473
+
474
+ * processor/default.rb, processor/helper.rb: Remove constant already
475
+ defined message when requiring twice.
476
+
477
+ 2011-06-02 rocky <rockyb@rubyforge.org>
478
+
479
+ * test/unit/mock-helper.rb, test/unit/test-cmd-alias.rb,
480
+ test/unit/test-cmd-exit.rb, test/unit/test-cmd-help.rb,
481
+ test/unit/test-cmd-kill.rb: More unit tests from rbx-trepanning.
482
+
483
+ 2011-06-02 rocky <rockyb@rubyforge.org>
484
+
485
+ * processor/command/continue.rb, processor/command/disable.rb,
486
+ processor/command/enable.rb, processor/command/eval.rb,
487
+ processor/command/finish.rb, processor/command/frame.rb,
488
+ processor/command/list.rb, processor/command/restart.rb,
489
+ processor/command/shell.rb, processor/validate.rb: Beef up demo code
490
+ for standalone routines.
491
+
492
+ 2011-06-02 rocky <rockyb@rubyforge.org>
493
+
494
+ * app/default.rb, app/interface.rb, lib/trepanning.rb,
495
+ processor/command-ruby-debug/info.rb,
496
+ processor/command/backtrace.rb,
497
+ processor/command/info_subcmd/line.rb,
498
+ processor/command/info_subcmd/stack.rb,
499
+ processor/command/restart.rb, processor/command/up.rb,
500
+ processor/location.rb, processor/main.rb, processor/mock.rb,
501
+ test/unit/test-proc-location.rb: Add proc/location test which finds
502
+ bugs and code to improve. add "restart" and "info stack" commands.
503
+ Demo code now for "backtrace" and "up".
504
+
505
+ 2011-06-02 rocky <rockyb@rubyforge.org>
506
+
507
+ * processor/command-ruby-debug/control.rb: Cut over "restart".
508
+
509
+ 2011-06-02 rocky <rockyb@rubyforge.org>
510
+
511
+ * processor/command/info_subcmd/breakpoints.rb: See above.
512
+
513
+ 2011-06-02 rocky <rockyb@rubyforge.org>
514
+
515
+ * processor/command/disable.rb, processor/command/enable.rb,
516
+ processor/command/info_subcmd/breakpoints.rb: Cut over commands
517
+ "enable", "disable", and "info breakpoints".
518
+
519
+ 2011-06-01 rocky <rockyb@rubyforge.org>
520
+
521
+ * app/frame.rb, processor/command-ruby-debug/frame.rb,
522
+ processor/command-ruby-debug/list.rb,
523
+ processor/command/backtrace.rb, processor/command/list.rb,
524
+ processor/location.rb: Cut over "backtrace" and "list" commands. Use
525
+ ruby-debug's better path cleaning.
526
+
527
+ 2011-06-01 rocky <rockyb@rubyforge.org>
528
+
529
+ * Rakefile, app/cmd_parser.rb, app/frame.rb,
530
+ processor/command-ruby-debug/list.rb, processor/command/finish.rb,
531
+ processor/command/show_subcmd/.gitignore,
532
+ processor/command/show_subcmd/args.rb,
533
+ processor/command/show_subcmd/debug.rb,
534
+ processor/command/show_subcmd/debug_subcmd/dbgr.rb,
535
+ processor/command/show_subcmd/debug_subcmd/skip.rb,
536
+ processor/command/show_subcmd/debug_subcmd/step.rb,
537
+ processor/frame.rb, processor/virtual.rb, test/unit/cmd-helper.rb,
538
+ test/unit/test-app-frame.rb, test/unit/test-base-cmd.rb,
539
+ test/unit/test-base-subcmd.rb, test/unit/test-base-submgr.rb,
540
+ test/unit/test-base-subsubcmd.rb: Add more unit tests which means
541
+ adding more code and fixing some. Add "show debug" Fix "list".
542
+ Describe what's up with virtual.
543
+
544
+ 2011-06-01 rocky <rockyb@rubyforge.org>
545
+
546
+ * app/frame.rb, processor/eval.rb, processor/frame.rb,
547
+ processor/location.rb, processor/mock.rb: Redo Frame class to
548
+ simplify: no longer use messy state, but attr_accessor :frame.index
549
+ .
550
+
551
+ 2011-06-01 rocky <rockyb@rubyforge.org>
552
+
553
+ * app/frame.rb: frame fixes.
554
+
555
+ 2011-06-01 rocky <rockyb@rubyforge.org>
556
+
557
+ * app/interface.rb, processor/command/show_subcmd/auto.rb,
558
+ processor/processor.rb, test/data/edit.cmd: Script processing
559
+ running - sort of (frame is messed up). Closer to having some sort
560
+ of integration testing working.
561
+
562
+ 2011-06-01 rocky <rockyb@rubyforge.org>
563
+
564
+ * .gitignore, bin/trepan8, processor/command/info_subcmd/catch.rb,
565
+ processor/command/set_subcmd/.gitignore,
566
+ processor/command/set_subcmd/auto.rb,
567
+ processor/command/set_subcmd/auto_subcmd/.gitignore,
568
+ processor/command/set_subcmd/auto_subcmd/eval.rb,
569
+ processor/command/set_subcmd/debug.rb,
570
+ processor/command/show_subcmd/auto.rb,
571
+ processor/command/show_subcmd/auto_subcmd/eval.rb,
572
+ processor/help.rb, processor/processor.rb, test/data/.gitignore,
573
+ test/data/edit.cmd, test/data/edit.right, test/data/raise.cmd,
574
+ test/data/raise.right, test/example/raise.rb,
575
+ test/integration/.gitignore, test/integration/config.yaml,
576
+ test/integration/helper.rb, test/integration/test-dollar-0.rb,
577
+ test/integration/test-edit.rb, test/integration/test-raise.rb: Push
578
+ towards getting integration tests working. Add "set/show autoeval"
579
+ and "set debug test". processor.rb: handle # comments and autoeval.
580
+ help.rb: remove extraneous \n.
581
+
582
+ 2011-05-31 rocky <rockyb@rubyforge.org>
583
+
584
+ * app/frame.rb, processor/frame.rb: frame fixes.
585
+
586
+ 2011-05-31 rocky <rockyb@rubyforge.org>
587
+
588
+ * processor/command/shell.rb, processor/mock.rb: Fix up mock enough
589
+ to get shell.rb standalone working -- with a little limping.
590
+
591
+ 2011-05-31 rocky <rockyb@rubyforge.org>
592
+
593
+ * app/interface.rb, processor/command/shell.rb, processor/mock.rb,
594
+ processor/virtual.rb: Trepan::Interface -> Trepan::OldInterface when
595
+ old. Simplify and move a little bit forward in mock.rb
596
+
597
+ 2011-05-31 rocky <rockyb@rubyforge.org>
598
+
599
+ * processor/command-ruby-debug/continue.rb,
600
+ processor/command-ruby-debug/edit.rb,
601
+ processor/command-ruby-debug/eval.rb,
602
+ processor/command-ruby-debug/finish.rb,
603
+ processor/command-ruby-debug/irb.rb,
604
+ processor/command-ruby-debug/kill.rb,
605
+ processor/command-ruby-debug/quit.rb,
606
+ processor/command/continue.rb, processor/running.rb: Cut over
607
+ "continue" command to new-style commands. Remove some older style
608
+ commands.
609
+
610
+ 2011-05-31 rocky <rockyb@rubyforge.org>
611
+
612
+ * app/irb.rb, app/options.rb, data/.gitignore, data/irbrc,
613
+ processor/command/shell.rb, processor/location.rb,
614
+ processor/main.rb, processor/running.rb: Add "shell" command to go
615
+ into irb. Use processor/location.rb for loc_and_text code.
616
+
617
+ 2011-05-31 rocky <rockyb@rubyforge.org>
618
+
619
+ * processor/command/help/.gitignore, processor/command/help/README,
620
+ processor/command/help/command.txt,
621
+ processor/command/help/filename.txt,
622
+ processor/command/help/location.txt: Add syntax help.
623
+
624
+ 2011-05-31 rocky <rockyb@rubyforge.org>
625
+
626
+ * app/frame.rb, app/options.rb, processor/default.rb,
627
+ processor/frame.rb: Wasn't updating position on frame commands.
628
+
629
+ 2011-05-31 rocky <rockyb@rubyforge.org>
630
+
631
+ * app/interface.rb: errmsg needs to add newlines
632
+
633
+ 2011-05-31 rocky <rockyb@rubyforge.org>
634
+
635
+ * app/frame.rb, processor/command-ruby-debug/frame.rb,
636
+ processor/command/down.rb, processor/command/frame.rb,
637
+ processor/command/up.rb, processor/frame.rb, processor/help.rb,
638
+ processor/processor.rb: Add "up", "down" and "frame" commands.
639
+
640
+ 2011-05-31 rocky <rockyb@rubyforge.org>
641
+
642
+ * app/frame.rb, processor/command-ruby-debug/breakpoints.rb,
643
+ processor/command/edit.rb,
644
+ processor/command/info_subcmd/.gitignore,
645
+ processor/command/info_subcmd/program.rb, processor/frame.rb,
646
+ processor/main.rb, processor/processor.rb: Add processor/frame.rb
647
+ and start using it. Add "info program". breakpoints.rb: bug caused
648
+ by name conflict and conversion.
649
+
650
+ 2011-05-30 rocky <rockyb@rubyforge.org>
651
+
652
+ * app/frame.rb, processor/command/edit.rb,
653
+ processor/command/info_subcmd/args.rb, processor/eval.rb,
654
+ processor/location.rb, processor/main.rb, processor/processor.rb:
655
+ Start a Frame object which simplfies access code.
656
+
657
+ 2011-05-30 rocky <rockyb@rubyforge.org>
658
+
659
+ * processor/command/base/submgr.rb, processor/default.rb: Smal
660
+ changes
661
+
662
+ 2011-05-30 rocky <rockyb@rubyforge.org>
663
+
664
+ * lib/trepanning.rb, processor/command/base/submgr.rb,
665
+ processor/command/info_subcmd/args.rb,
666
+ processor/command/info_subcmd/files.rb,
667
+ processor/command/info_subcmd/ruby.rb, processor/default.rb,
668
+ processor/eval.rb, processor/load_cmds.rb, processor/location.rb,
669
+ processor/running.rb, processor/validate.rb, processor/virtual.rb:
670
+ module Trepan; class CmdProcessor -> class Trepan::CmdProcessor
671
+ which should make things more cross-implementation portable. Add
672
+ processor.location.rb.
673
+
674
+ 2011-05-29 rocky <rockyb@rubyforge.org>
675
+
676
+ * processor/command/finish.rb,
677
+ processor/command/info_subcmd/args.rb,
678
+ processor/command/info_subcmd/files.rb: Add "info args" and "info
679
+ files" and "finish". "finish" might be buggy.
680
+
681
+ 2011-05-29 rocky <rockyb@rubyforge.org>
682
+
683
+ * processor/command/info_subcmd/args.rb,
684
+ processor/command/info_subcmd/ruby.rb: Add "info args" correct help
685
+ for "info ruby".
686
+
687
+ 2011-05-29 rocky <rockyb@rubyforge.org>
688
+
689
+ * processor/command-ruby-debug/stepping.rb,
690
+ processor/command/edit.rb, processor/command/next.rb,
691
+ processor/command/step.rb, processor/eval.rb, processor/main.rb,
692
+ processor/processor.rb, processor/virtual.rb: Fix up "edit", "eval"
693
+ and "step". Add "next".
694
+
695
+ 2011-05-28 rocky <rockyb@rubyforge.org>
696
+
697
+ * processor/command/directory.rb, processor/command/edit.rb,
698
+ processor/command/eval.rb, processor/command/info.rb,
699
+ processor/command/info_subcmd/ruby.rb, processor/command/save.rb,
700
+ processor/command/set.rb, processor/command/set_subcmd/basename.rb,
701
+ processor/command/set_subcmd/confirm.rb,
702
+ processor/command/set_subcmd/different.rb,
703
+ processor/command/set_subcmd/highlight.rb,
704
+ processor/command/show_subcmd/auto.rb,
705
+ processor/command/show_subcmd/basename.rb,
706
+ processor/command/show_subcmd/confirm.rb,
707
+ processor/command/show_subcmd/different.rb,
708
+ processor/command/show_subcmd/directories.rb,
709
+ processor/command/show_subcmd/highlight.rb,
710
+ processor/command/show_subcmd/macro.rb,
711
+ processor/command/show_subcmd/version.rb: Add more easy commands and
712
+ some set/show/info subcommands.
713
+
714
+ 2011-05-28 rocky <rockyb@rubyforge.org>
715
+
716
+ * test/unit/test-app-cmd_parse.rb,
717
+ test/unit/test-app-cmd_parser.rb, test/unit/test-app-util.rb: More
718
+ unit tests from rbx-trepanning
719
+
720
+ 2011-05-28 rocky <rockyb@rubyforge.org>
721
+
722
+ * app/interface.rb, processor/command/step.rb,
723
+ processor/load_cmds.rb, processor/main.rb, processor/mock.rb,
724
+ processor/processor.rb, processor/running.rb,
725
+ processor/validate.rb, processor/virtual.rb: Added first new-style
726
+ command - step.
727
+
728
+ 2011-05-28 rocky <rockyb@rubyforge.org>
729
+
730
+ * app/default.rb, processor/command.rb, processor/default.rb,
731
+ processor/processor.rb: More new/old coexistence.
732
+
733
+ 2011-05-28 rocky <rockyb@rubyforge.org>
734
+
735
+ * processor/command-ruby-debug/breakpoints.rb,
736
+ processor/command-ruby-debug/catchpoint.rb,
737
+ processor/command-ruby-debug/condition.rb,
738
+ processor/command-ruby-debug/continue.rb,
739
+ processor/command-ruby-debug/control.rb,
740
+ processor/command-ruby-debug/display.rb,
741
+ processor/command-ruby-debug/edit.rb,
742
+ processor/command-ruby-debug/enable.rb,
743
+ processor/command-ruby-debug/eval.rb,
744
+ processor/command-ruby-debug/finish.rb,
745
+ processor/command-ruby-debug/frame.rb,
746
+ processor/command-ruby-debug/help.rb,
747
+ processor/command-ruby-debug/info.rb,
748
+ processor/command-ruby-debug/irb.rb,
749
+ processor/command-ruby-debug/kill.rb,
750
+ processor/command-ruby-debug/list.rb,
751
+ processor/command-ruby-debug/method.rb,
752
+ processor/command-ruby-debug/quit.rb,
753
+ processor/command-ruby-debug/reload.rb,
754
+ processor/command-ruby-debug/save.rb,
755
+ processor/command-ruby-debug/set.rb,
756
+ processor/command-ruby-debug/show.rb,
757
+ processor/command-ruby-debug/source.rb,
758
+ processor/command-ruby-debug/stepping.rb,
759
+ processor/command-ruby-debug/threads.rb,
760
+ processor/command-ruby-debug/trace.rb,
761
+ processor/command-ruby-debug/variables.rb, processor/command.rb,
762
+ processor/eval.rb, processor/help.rb, processor/load_cmds.rb,
763
+ processor/main.rb, processor/processor.rb, processor/virtual.rb:
764
+ Coexistance of old Commands with new. Split into OldCommand and
765
+ Command.
766
+
767
+ 2011-05-28 rocky <rockyb@rubyforge.org>
768
+
769
+ * app/cmd_parse.kpeg, app/cmd_parse.rb, app/cmd_parser.rb,
770
+ processor/command/base/submgr.rb, processor/command/step.rb,
771
+ processor/eval.rb, processor/load_cmds.rb, processor/main.rb,
772
+ processor/msg.rb, processor/processor.rb, processor/stepping.rb,
773
+ processor/validate.rb, processor/virtual.rb: Port more code over.
774
+ Main driver is "step" and "validate".
775
+
776
+ 2011-05-28 rocky <rockyb@rubyforge.org>
777
+
778
+ * processor/main.rb: Add "eval" to list of processor/main-required
779
+ files.
780
+
781
+ 2011-05-28 rocky <rockyb@rubyforge.org>
782
+
783
+ * processor/command/complete.rb, processor/command/help.rb,
784
+ processor/command/macro.rb, processor/eval.rb, processor/main.rb,
785
+ processor/msg.rb: Port over more "support"-class commands: help,
786
+ macro, and complete.
787
+
788
+ 2011-05-28 rocky <rockyb@rubyforge.org>
789
+
790
+ * app/interface.rb, app/util.rb,
791
+ processor/command-ruby-debug/breakpoints.rb,
792
+ processor/command-ruby-debug/catchpoint.rb,
793
+ processor/command-ruby-debug/condition.rb,
794
+ processor/command-ruby-debug/continue.rb,
795
+ processor/command-ruby-debug/control.rb,
796
+ processor/command-ruby-debug/display.rb,
797
+ processor/command-ruby-debug/edit.rb,
798
+ processor/command-ruby-debug/enable.rb,
799
+ processor/command-ruby-debug/eval.rb,
800
+ processor/command-ruby-debug/finish.rb,
801
+ processor/command-ruby-debug/frame.rb,
802
+ processor/command-ruby-debug/help.rb,
803
+ processor/command-ruby-debug/info.rb,
804
+ processor/command-ruby-debug/irb.rb,
805
+ processor/command-ruby-debug/kill.rb,
806
+ processor/command-ruby-debug/list.rb,
807
+ processor/command-ruby-debug/method.rb,
808
+ processor/command-ruby-debug/quit.rb,
809
+ processor/command-ruby-debug/reload.rb,
810
+ processor/command-ruby-debug/save.rb,
811
+ processor/command-ruby-debug/set.rb,
812
+ processor/command-ruby-debug/show.rb,
813
+ processor/command-ruby-debug/source.rb,
814
+ processor/command-ruby-debug/stepping.rb,
815
+ processor/command-ruby-debug/threads.rb,
816
+ processor/command-ruby-debug/trace.rb,
817
+ processor/command-ruby-debug/variables.rb,
818
+ processor/command/.gitignore, processor/command/alias.rb,
819
+ processor/command/base/cmd.rb, processor/command/base/subsubcmd.rb,
820
+ processor/command/breakpoints.rb, processor/command/catchpoint.rb,
821
+ processor/command/condition.rb, processor/command/continue.rb,
822
+ processor/command/control.rb, processor/command/display.rb,
823
+ processor/command/edit.rb, processor/command/enable.rb,
824
+ processor/command/eval.rb, processor/command/exit.rb,
825
+ processor/command/finish.rb, processor/command/frame.rb,
826
+ processor/command/help.rb, processor/command/info.rb,
827
+ processor/command/irb.rb, processor/command/kill.rb,
828
+ processor/command/list.rb, processor/command/method.rb,
829
+ processor/command/quit.rb, processor/command/reload.rb,
830
+ processor/command/save.rb, processor/command/set.rb,
831
+ processor/command/show.rb, processor/command/show_subcmd/alias.rb,
832
+ processor/command/source.rb, processor/command/stepping.rb,
833
+ processor/command/threads.rb, processor/command/trace.rb,
834
+ processor/command/unalias.rb, processor/command/variables.rb,
835
+ processor/load_cmds.rb, processor/main.rb, processor/mock.rb,
836
+ processor/msg.rb: Start adding new-style Trepan::Command class.
837
+
838
+ 2011-05-27 rocky <rockyb@rubyforge.org>
839
+
840
+ * app/.gitignore, app/complete.rb, app/default.rb,
841
+ interface/.gitignore, interface/base_intf.rb, interface/client.rb,
842
+ interface/comcodes.rb, interface/script.rb, interface/server.rb,
843
+ interface/user.rb, io/base_io.rb, io/input.rb, io/null_output.rb,
844
+ io/string_array.rb, io/tcpclient.rb, io/tcpfns.rb, io/tcpserver.rb,
845
+ processor/.gitignore, processor/command/base/cmd.rb,
846
+ processor/command/base/subcmd.rb, processor/command/base/submgr.rb,
847
+ processor/command/base/subsubcmd.rb,
848
+ processor/command/base/subsubmgr.rb, processor/help.rb,
849
+ processor/mock.rb, processor/subcmd.rb,
850
+ test/unit/test-app-complete.rb, test/unit/test-intf-user.rb,
851
+ test/unit/test-io-input.rb, test/unit/test-io-tcp.rb,
852
+ test/unit/test-io-tcpclient.rb, test/unit/test-io-tcpfns.rb,
853
+ test/unit/test-io-tcpserver.rb: Start moving/converting code from
854
+ rbx-trepanning. For now "class Trepan" => "module Trepan". Will
855
+ probably undo this later...
856
+
857
+ 2011-05-27 rocky <rockyb@rubyforge.org>
858
+
859
+ * trepan8.gemspec: Correct dependency version number for linecache
860
+
861
+ 2011-05-27 rocky <rockyb@rubyforge.org>
862
+
863
+ * .gitignore, Rakefile, app/default.rb, app/options.rb,
864
+ bin/trepan8, lib/debugger.rb, lib/trepanning.rb,
865
+ test/unit/.gitignore, test/unit/test-app-options.rb,
866
+ trepan8.gemspec: Port over Rakefile from rb-trepanning. Add first
867
+ unit test (from rb-trepanning).
868
+
869
+ 2011-05-26 rvm <rocky-rvm@static-71-183-236-17.nycmny.fios.verizon.net>
870
+
871
+ * First attempt to backport trepanning. Right now it's mostly
872
+ ruby-debug w/o ruby-debug-base and separated from the main code in
873
+ git. There are some small changes towards the trepanning file system
874
+ organization. Also module Debugger is now module Trepan.
875
+