rb8-trepanning 0.1.3

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 +52 -0
  274. metadata +391 -0
data/trepan8.gemspec ADDED
@@ -0,0 +1,52 @@
1
+ # -*- Ruby -*-
2
+ # -*- encoding: utf-8 -*-
3
+ require 'rake'
4
+ unless Object.const_defined?(:'Trepan')
5
+ if RUBY_VERSION =~ /^1.9.2/
6
+ require File.expand_path(File.dirname(__FILE__) + '/app/options')
7
+ else
8
+ require 'rubygems'; require 'require_relative'
9
+ require_relative './app/options'
10
+ end
11
+ end
12
+
13
+ Gem::Specification.new do |spec|
14
+ spec.authors = ['R. Bernstein']
15
+ spec.date = Time.now
16
+ spec.description = <<-EOF
17
+ A modular, testable, Ruby debugger using some of the best ideas from ruby-debug, other debuggers, and Ruby Rails.
18
+
19
+ Some of the core debugger concepts have been rethought. As a result, some of this may be experimental.
20
+
21
+ This version works only with a MRI 1.8 and 1.9.2'
22
+
23
+ See also rb-trepanning and rbx-trepanning versions that works with Rubinius.
24
+ and a patched YARV 1.9.2.
25
+ EOF
26
+ # spec.add_dependency('rb-trace', '>= 0.5')
27
+
28
+ if RUBY_VERSION.start_with?('1.8')
29
+ spec.add_dependency('linecache', '>= 0.43')
30
+ elsif RUBY_VERSION.start_with?('1.9')
31
+ spec.add_dependency('linecache19', '>= 0.5.12')
32
+ end
33
+
34
+ spec.add_dependency('rbx-require-relative', '> 0.0.4')
35
+ spec.add_dependency('columnize')
36
+ spec.author = 'R. Bernstein'
37
+ spec.bindir = 'bin'
38
+ spec.email = 'rockyb@rubyforge.net'
39
+ spec.executables = ['trepan8']
40
+ spec.files = `git ls-files`.split("\n")
41
+ spec.has_rdoc = true
42
+ spec.homepage = 'http://wiki.github.com/rocky/rb8-trepanning'
43
+ spec.name = 'rb8-trepanning'
44
+ spec.license = 'MIT'
45
+ spec.platform = Gem::Platform::RUBY
46
+ spec.require_path = 'lib'
47
+ spec.summary = 'Ruby MRI 1.8.7 and 1.9.2 Trepanning Debugger'
48
+ spec.version = Trepan::VERSION
49
+
50
+ spec.rdoc_options += ['--title', "Trepan #{Trepan::VERSION} Documentation"]
51
+
52
+ end
metadata ADDED
@@ -0,0 +1,391 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rb8-trepanning
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 1
9
+ - 3
10
+ version: 0.1.3
11
+ platform: ruby
12
+ authors:
13
+ - R. Bernstein
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-06-12 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: linecache
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ hash: 93
29
+ segments:
30
+ - 0
31
+ - 43
32
+ version: "0.43"
33
+ type: :runtime
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: rbx-require-relative
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ">"
42
+ - !ruby/object:Gem::Version
43
+ hash: 23
44
+ segments:
45
+ - 0
46
+ - 0
47
+ - 4
48
+ version: 0.0.4
49
+ type: :runtime
50
+ version_requirements: *id002
51
+ - !ruby/object:Gem::Dependency
52
+ name: columnize
53
+ prerelease: false
54
+ requirement: &id003 !ruby/object:Gem::Requirement
55
+ none: false
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ hash: 3
60
+ segments:
61
+ - 0
62
+ version: "0"
63
+ type: :runtime
64
+ version_requirements: *id003
65
+ description: |
66
+ A modular, testable, Ruby debugger using some of the best ideas from ruby-debug, other debuggers, and Ruby Rails.
67
+
68
+ Some of the core debugger concepts have been rethought. As a result, some of this may be experimental.
69
+
70
+ This version works only with a MRI 1.8 and 1.9.2'
71
+
72
+ See also rb-trepanning and rbx-trepanning versions that works with Rubinius.
73
+ and a patched YARV 1.9.2.
74
+
75
+ email: rockyb@rubyforge.net
76
+ executables:
77
+ - trepan8
78
+ extensions: []
79
+
80
+ extra_rdoc_files: []
81
+
82
+ files:
83
+ - .gitignore
84
+ - CHANGES
85
+ - ChangeLog
86
+ - README.textile
87
+ - Rakefile
88
+ - app/.gitignore
89
+ - app/cmd_parse.kpeg
90
+ - app/cmd_parse.rb
91
+ - app/cmd_parser.rb
92
+ - app/complete.rb
93
+ - app/default.rb
94
+ - app/display.rb
95
+ - app/eventbuffer.rb
96
+ - app/frame.rb
97
+ - app/irb.rb
98
+ - app/options.rb
99
+ - app/run.rb
100
+ - app/util.rb
101
+ - bin/.gitignore
102
+ - bin/trepan8
103
+ - data/.gitignore
104
+ - data/irbrc
105
+ - interface/.gitignore
106
+ - interface/base_intf.rb
107
+ - interface/client.rb
108
+ - interface/comcodes.rb
109
+ - interface/script.rb
110
+ - interface/server.rb
111
+ - interface/user.rb
112
+ - io/base_io.rb
113
+ - io/input.rb
114
+ - io/null_output.rb
115
+ - io/string_array.rb
116
+ - io/tcpclient.rb
117
+ - io/tcpfns.rb
118
+ - io/tcpserver.rb
119
+ - lib/debugger.rb
120
+ - lib/trepanning.rb
121
+ - processor/.gitignore
122
+ - processor/command-ruby-debug/breakpoints.rb
123
+ - processor/command-ruby-debug/catchpoint.rb
124
+ - processor/command-ruby-debug/condition.rb
125
+ - processor/command-ruby-debug/control.rb
126
+ - processor/command-ruby-debug/display.rb
127
+ - processor/command-ruby-debug/enable.rb
128
+ - processor/command-ruby-debug/frame.rb
129
+ - processor/command-ruby-debug/help.rb
130
+ - processor/command-ruby-debug/info.rb
131
+ - processor/command-ruby-debug/method.rb
132
+ - processor/command-ruby-debug/reload.rb
133
+ - processor/command-ruby-debug/save.rb
134
+ - processor/command-ruby-debug/set.rb
135
+ - processor/command-ruby-debug/show.rb
136
+ - processor/command-ruby-debug/source.rb
137
+ - processor/command-ruby-debug/threads.rb
138
+ - processor/command-ruby-debug/trace.rb
139
+ - processor/command-ruby-debug/variables.rb
140
+ - processor/command.rb
141
+ - processor/command/.gitignore
142
+ - processor/command/alias.rb
143
+ - processor/command/backtrace.rb
144
+ - processor/command/base/cmd.rb
145
+ - processor/command/base/subcmd.rb
146
+ - processor/command/base/submgr.rb
147
+ - processor/command/base/subsubcmd.rb
148
+ - processor/command/base/subsubmgr.rb
149
+ - processor/command/break.rb
150
+ - processor/command/catch.rb
151
+ - processor/command/complete.rb
152
+ - processor/command/continue.rb
153
+ - processor/command/directory.rb
154
+ - processor/command/disable.rb
155
+ - processor/command/display.rb
156
+ - processor/command/down.rb
157
+ - processor/command/edit.rb
158
+ - processor/command/enable.rb
159
+ - processor/command/eval.rb
160
+ - processor/command/exit.rb
161
+ - processor/command/finish.rb
162
+ - processor/command/frame.rb
163
+ - processor/command/help.rb
164
+ - processor/command/help/.gitignore
165
+ - processor/command/help/README
166
+ - processor/command/help/command.txt
167
+ - processor/command/help/examples.txt
168
+ - processor/command/help/filename.txt
169
+ - processor/command/help/location.txt
170
+ - processor/command/help/suffixes.txt
171
+ - processor/command/info.rb
172
+ - processor/command/info_subcmd/.gitignore
173
+ - processor/command/info_subcmd/args.rb
174
+ - processor/command/info_subcmd/breakpoints.rb
175
+ - processor/command/info_subcmd/catch.rb
176
+ - processor/command/info_subcmd/files.rb
177
+ - processor/command/info_subcmd/globals.rb
178
+ - processor/command/info_subcmd/line.rb
179
+ - processor/command/info_subcmd/locals.rb
180
+ - processor/command/info_subcmd/macro.rb
181
+ - processor/command/info_subcmd/program.rb
182
+ - processor/command/info_subcmd/ruby.rb
183
+ - processor/command/info_subcmd/source.rb
184
+ - processor/command/info_subcmd/stack.rb
185
+ - processor/command/info_subcmd/threads.rb
186
+ - processor/command/kill.rb
187
+ - processor/command/list.rb
188
+ - processor/command/macro.rb
189
+ - processor/command/next.rb
190
+ - processor/command/parsetree.rb
191
+ - processor/command/pp.rb
192
+ - processor/command/pr.rb
193
+ - processor/command/ps.rb
194
+ - processor/command/restart.rb
195
+ - processor/command/save.rb
196
+ - processor/command/set.rb
197
+ - processor/command/set_subcmd/.gitignore
198
+ - processor/command/set_subcmd/abbrev.rb
199
+ - processor/command/set_subcmd/auto.rb
200
+ - processor/command/set_subcmd/auto_subcmd/.gitignore
201
+ - processor/command/set_subcmd/auto_subcmd/eval.rb
202
+ - processor/command/set_subcmd/auto_subcmd/irb.rb
203
+ - processor/command/set_subcmd/auto_subcmd/list.rb
204
+ - processor/command/set_subcmd/basename.rb
205
+ - processor/command/set_subcmd/callstyle.rb
206
+ - processor/command/set_subcmd/confirm.rb
207
+ - processor/command/set_subcmd/debug.rb
208
+ - processor/command/set_subcmd/different.rb
209
+ - processor/command/set_subcmd/highlight.rb
210
+ - processor/command/set_subcmd/max.rb
211
+ - processor/command/set_subcmd/max_subcmd/list.rb
212
+ - processor/command/set_subcmd/max_subcmd/stack.rb
213
+ - processor/command/set_subcmd/max_subcmd/string.rb
214
+ - processor/command/set_subcmd/max_subcmd/width.rb
215
+ - processor/command/set_subcmd/reload.rb
216
+ - processor/command/set_subcmd/timer.rb
217
+ - processor/command/set_subcmd/trace.rb
218
+ - processor/command/set_subcmd/trace_subcmd/buffer.rb
219
+ - processor/command/set_subcmd/trace_subcmd/print.rb
220
+ - processor/command/shell.rb
221
+ - processor/command/show.rb
222
+ - processor/command/show_subcmd/.gitignore
223
+ - processor/command/show_subcmd/abbrev.rb
224
+ - processor/command/show_subcmd/alias.rb
225
+ - processor/command/show_subcmd/args.rb
226
+ - processor/command/show_subcmd/auto.rb
227
+ - processor/command/show_subcmd/auto_subcmd/eval.rb
228
+ - processor/command/show_subcmd/auto_subcmd/irb.rb
229
+ - processor/command/show_subcmd/auto_subcmd/list.rb
230
+ - processor/command/show_subcmd/basename.rb
231
+ - processor/command/show_subcmd/callstyle.rb
232
+ - processor/command/show_subcmd/confirm.rb
233
+ - processor/command/show_subcmd/debug.rb
234
+ - processor/command/show_subcmd/debug_subcmd/dbgr.rb
235
+ - processor/command/show_subcmd/debug_subcmd/skip.rb
236
+ - processor/command/show_subcmd/debug_subcmd/step.rb
237
+ - processor/command/show_subcmd/different.rb
238
+ - processor/command/show_subcmd/directories.rb
239
+ - processor/command/show_subcmd/highlight.rb
240
+ - processor/command/show_subcmd/max.rb
241
+ - processor/command/show_subcmd/max_subcmd/list.rb
242
+ - processor/command/show_subcmd/max_subcmd/stack.rb
243
+ - processor/command/show_subcmd/max_subcmd/string.rb
244
+ - processor/command/show_subcmd/max_subcmd/width.rb
245
+ - processor/command/show_subcmd/reload.rb
246
+ - processor/command/show_subcmd/timer.rb
247
+ - processor/command/show_subcmd/trace.rb
248
+ - processor/command/show_subcmd/trace_subcmd/buffer.rb
249
+ - processor/command/show_subcmd/trace_subcmd/print.rb
250
+ - processor/command/show_subcmd/version.rb
251
+ - processor/command/source.rb
252
+ - processor/command/step.rb
253
+ - processor/command/tbreak.rb
254
+ - processor/command/unalias.rb
255
+ - processor/command/undisplay.rb
256
+ - processor/command/up.rb
257
+ - processor/default.rb
258
+ - processor/display.rb
259
+ - processor/eval.rb
260
+ - processor/eventbuf.rb
261
+ - processor/frame.rb
262
+ - processor/help.rb
263
+ - processor/helper.rb
264
+ - processor/hook.rb
265
+ - processor/load_cmds.rb
266
+ - processor/location.rb
267
+ - processor/main.rb
268
+ - processor/mock.rb
269
+ - processor/msg.rb
270
+ - processor/processor.rb
271
+ - processor/running.rb
272
+ - processor/stepping.rb
273
+ - processor/subcmd.rb
274
+ - processor/validate.rb
275
+ - processor/virtual.rb
276
+ - test/data/.gitignore
277
+ - test/data/break_bad.cmd
278
+ - test/data/break_bad.right
279
+ - test/data/break_loop_bug.cmd
280
+ - test/data/break_loop_bug.right
281
+ - test/data/dollar-0.right
282
+ - test/data/dollar-0a.right
283
+ - test/data/dollar-0b.right
284
+ - test/data/edit.cmd
285
+ - test/data/edit.right
286
+ - test/data/file-with-space.cmd
287
+ - test/data/file-with-space.right
288
+ - test/data/printvar.cmd
289
+ - test/data/printvar.right
290
+ - test/data/raise.cmd
291
+ - test/data/raise.right
292
+ - test/data/source.cmd
293
+ - test/data/source.right
294
+ - test/data/stepping-1.9.right
295
+ - test/data/stepping.cmd
296
+ - test/data/stepping.right
297
+ - test/data/trepan8-save.1
298
+ - test/example/bp_loop_issue.rb
299
+ - test/example/break-bug.rb
300
+ - test/example/brkpt-class-bug.rb
301
+ - test/example/classes.rb
302
+ - test/example/dollar-0.rb
303
+ - test/example/except-bug1.rb
304
+ - test/example/except-bug2.rb
305
+ - test/example/file with space.rb
306
+ - test/example/gcd.rb
307
+ - test/example/info-var-bug.rb
308
+ - test/example/info-var-bug2.rb
309
+ - test/example/null.rb
310
+ - test/example/pm-bug.rb
311
+ - test/example/pm.rb
312
+ - test/example/raise.rb
313
+ - test/integration/.gitignore
314
+ - test/integration/config.yaml
315
+ - test/integration/helper.rb
316
+ - test/integration/test-break_bad.rb
317
+ - test/integration/test-dollar-0.rb
318
+ - test/integration/test-edit.rb
319
+ - test/integration/test-file-with-space.rb
320
+ - test/integration/test-printvar.rb
321
+ - test/integration/test-raise.rb
322
+ - test/integration/test-source.rb
323
+ - test/integration/test-stepping.rb
324
+ - test/unit/.gitignore
325
+ - test/unit/cmd-helper.rb
326
+ - test/unit/mock-helper.rb
327
+ - test/unit/test-app-cmd_parse.rb
328
+ - test/unit/test-app-cmd_parser.rb
329
+ - test/unit/test-app-complete.rb
330
+ - test/unit/test-app-frame.rb
331
+ - test/unit/test-app-options.rb
332
+ - test/unit/test-app-run.rb
333
+ - test/unit/test-app-util.rb
334
+ - test/unit/test-base-cmd.rb
335
+ - test/unit/test-base-subcmd.rb
336
+ - test/unit/test-base-submgr.rb
337
+ - test/unit/test-base-subsubcmd.rb
338
+ - test/unit/test-cmd-alias.rb
339
+ - test/unit/test-cmd-exit.rb
340
+ - test/unit/test-cmd-help.rb
341
+ - test/unit/test-cmd-kill.rb
342
+ - test/unit/test-cmd-source.rb
343
+ - test/unit/test-completion.rb
344
+ - test/unit/test-intf-user.rb
345
+ - test/unit/test-io-input.rb
346
+ - test/unit/test-io-tcp.rb
347
+ - test/unit/test-io-tcpclient.rb
348
+ - test/unit/test-io-tcpfns.rb
349
+ - test/unit/test-io-tcpserver.rb
350
+ - test/unit/test-proc-eval.rb
351
+ - test/unit/test-proc-hook.rb
352
+ - test/unit/test-proc-load_cmds.rb
353
+ - test/unit/test-proc-location.rb
354
+ - test/unit/test-subcmd-help.rb
355
+ - trepan8.gemspec
356
+ homepage: http://wiki.github.com/rocky/rb8-trepanning
357
+ licenses:
358
+ - MIT
359
+ post_install_message:
360
+ rdoc_options:
361
+ - --title
362
+ - Trepan 0.1.3 Documentation
363
+ require_paths:
364
+ - lib
365
+ required_ruby_version: !ruby/object:Gem::Requirement
366
+ none: false
367
+ requirements:
368
+ - - ">="
369
+ - !ruby/object:Gem::Version
370
+ hash: 3
371
+ segments:
372
+ - 0
373
+ version: "0"
374
+ required_rubygems_version: !ruby/object:Gem::Requirement
375
+ none: false
376
+ requirements:
377
+ - - ">="
378
+ - !ruby/object:Gem::Version
379
+ hash: 3
380
+ segments:
381
+ - 0
382
+ version: "0"
383
+ requirements: []
384
+
385
+ rubyforge_project:
386
+ rubygems_version: 1.8.5
387
+ signing_key:
388
+ specification_version: 3
389
+ summary: Ruby MRI 1.8.7 and 1.9.2 Trepanning Debugger
390
+ test_files: []
391
+