rbx-trepanning 0.2.0-universal-rubinius-2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +7 -0
- data/ChangeLog +2967 -0
- data/LICENSE +25 -0
- data/Makefile +13 -0
- data/NEWS +105 -0
- data/README.textile +34 -0
- data/Rakefile +244 -0
- data/THANKS +14 -0
- data/app/.gitignore +2 -0
- data/app/breakpoint.rb +242 -0
- data/app/brkptmgr.rb +153 -0
- data/app/client.rb +71 -0
- data/app/cmd_parse.kpeg +242 -0
- data/app/cmd_parse.rb +209 -0
- data/app/cmd_parser.rb +2083 -0
- data/app/complete.rb +79 -0
- data/app/condition.rb +22 -0
- data/app/default.rb +71 -0
- data/app/display.rb +186 -0
- data/app/eventbuffer.rb +147 -0
- data/app/file.rb +24 -0
- data/app/frame.rb +120 -0
- data/app/irb.rb +113 -0
- data/app/iseq.rb +188 -0
- data/app/method.rb +178 -0
- data/app/mock.rb +13 -0
- data/app/options.rb +154 -0
- data/app/rbx-llvm.rb +163 -0
- data/app/run.rb +92 -0
- data/app/util.rb +99 -0
- data/app/validate.rb +30 -0
- data/bin/.gitignore +2 -0
- data/bin/trepanx +69 -0
- data/data/.gitignore +2 -0
- data/data/irbrc +41 -0
- data/interface/.gitignore +2 -0
- data/interface/client.rb +84 -0
- data/interface/comcodes.rb +20 -0
- data/interface/script.rb +112 -0
- data/interface/server.rb +147 -0
- data/interface/user.rb +158 -0
- data/interface.rb +109 -0
- data/io/.gitignore +3 -0
- data/io/input.rb +151 -0
- data/io/null_output.rb +46 -0
- data/io/string_array.rb +155 -0
- data/io/tcpclient.rb +129 -0
- data/io/tcpfns.rb +33 -0
- data/io/tcpserver.rb +141 -0
- data/io.rb +148 -0
- data/lib/.gitignore +2 -0
- data/lib/trepanning.rb +467 -0
- data/processor/.gitignore +3 -0
- data/processor/Makefile +7 -0
- data/processor/breakpoint.rb +167 -0
- data/processor/command/.gitignore +2 -0
- data/processor/command/alias.rb +65 -0
- data/processor/command/backtrace.rb +68 -0
- data/processor/command/base/.gitignore +2 -0
- data/processor/command/base/subcmd.rb +226 -0
- data/processor/command/base/submgr.rb +185 -0
- data/processor/command/base/subsubcmd.rb +125 -0
- data/processor/command/base/subsubmgr.rb +196 -0
- data/processor/command/break.rb +78 -0
- data/processor/command/complete.rb +39 -0
- data/processor/command/condition.rb +64 -0
- data/processor/command/continue.rb +61 -0
- data/processor/command/delete.rb +44 -0
- data/processor/command/directory.rb +51 -0
- data/processor/command/disable.rb +71 -0
- data/processor/command/disassemble.rb +180 -0
- data/processor/command/display.rb +84 -0
- data/processor/command/down.rb +54 -0
- data/processor/command/edit.rb +74 -0
- data/processor/command/enable.rb +43 -0
- data/processor/command/eval.rb +93 -0
- data/processor/command/exit.rb +83 -0
- data/processor/command/finish.rb +80 -0
- data/processor/command/frame.rb +93 -0
- data/processor/command/help/.gitignore +1 -0
- data/processor/command/help/README +10 -0
- data/processor/command/help/command.txt +58 -0
- data/processor/command/help/examples.txt +16 -0
- data/processor/command/help/filename.txt +40 -0
- data/processor/command/help/location.txt +37 -0
- data/processor/command/help/suffixes.txt +17 -0
- data/processor/command/help.rb +228 -0
- data/processor/command/info.rb +30 -0
- data/processor/command/info_subcmd/.gitignore +3 -0
- data/processor/command/info_subcmd/breakpoints.rb +103 -0
- data/processor/command/info_subcmd/files.rb +219 -0
- data/processor/command/info_subcmd/frame.rb +68 -0
- data/processor/command/info_subcmd/line.rb +75 -0
- data/processor/command/info_subcmd/locals.rb +22 -0
- data/processor/command/info_subcmd/macro.rb +62 -0
- data/processor/command/info_subcmd/method.rb +71 -0
- data/processor/command/info_subcmd/program.rb +51 -0
- data/processor/command/info_subcmd/ruby.rb +64 -0
- data/processor/command/info_subcmd/source.rb +75 -0
- data/processor/command/info_subcmd/stack.rb +25 -0
- data/processor/command/info_subcmd/variables.rb +35 -0
- data/processor/command/info_subcmd/variables_subcmd/.gitignore +2 -0
- data/processor/command/info_subcmd/variables_subcmd/class.rb +42 -0
- data/processor/command/info_subcmd/variables_subcmd/constant.rb +42 -0
- data/processor/command/info_subcmd/variables_subcmd/globals.rb +69 -0
- data/processor/command/info_subcmd/variables_subcmd/instance.rb +42 -0
- data/processor/command/info_subcmd/variables_subcmd/locals.rb +80 -0
- data/processor/command/kill.rb +79 -0
- data/processor/command/list.rb +234 -0
- data/processor/command/macro.rb +86 -0
- data/processor/command/next.rb +67 -0
- data/processor/command/nexti.rb +59 -0
- data/processor/command/parsetree.rb +51 -0
- data/processor/command/pr.rb +37 -0
- data/processor/command/ps.rb +40 -0
- data/processor/command/restart.rb +60 -0
- data/processor/command/save.rb +58 -0
- data/processor/command/server.rb +72 -0
- data/processor/command/set.rb +47 -0
- data/processor/command/set_subcmd/.gitignore +2 -0
- data/processor/command/set_subcmd/abbrev.rb +25 -0
- data/processor/command/set_subcmd/auto.rb +33 -0
- data/processor/command/set_subcmd/auto_subcmd/.gitignore +2 -0
- data/processor/command/set_subcmd/auto_subcmd/dis.rb +33 -0
- data/processor/command/set_subcmd/auto_subcmd/eval.rb +53 -0
- data/processor/command/set_subcmd/auto_subcmd/irb.rb +33 -0
- data/processor/command/set_subcmd/auto_subcmd/list.rb +33 -0
- data/processor/command/set_subcmd/basename.rb +25 -0
- data/processor/command/set_subcmd/confirm.rb +24 -0
- data/processor/command/set_subcmd/debug.rb +26 -0
- data/processor/command/set_subcmd/debug_subcmd/.gitignore +2 -0
- data/processor/command/set_subcmd/debug_subcmd/dbgr.rb +36 -0
- data/processor/command/set_subcmd/debug_subcmd/skip.rb +23 -0
- data/processor/command/set_subcmd/debug_subcmd/step.rb +23 -0
- data/processor/command/set_subcmd/different.rb +61 -0
- data/processor/command/set_subcmd/hidelevel.rb +62 -0
- data/processor/command/set_subcmd/highlight.rb +39 -0
- data/processor/command/set_subcmd/kernelstep.rb +60 -0
- data/processor/command/set_subcmd/max.rb +26 -0
- data/processor/command/set_subcmd/max_subcmd/.gitignore +2 -0
- data/processor/command/set_subcmd/max_subcmd/list.rb +49 -0
- data/processor/command/set_subcmd/max_subcmd/stack.rb +50 -0
- data/processor/command/set_subcmd/max_subcmd/string.rb +76 -0
- data/processor/command/set_subcmd/max_subcmd/width.rb +49 -0
- data/processor/command/set_subcmd/reload.rb +42 -0
- data/processor/command/set_subcmd/substitute.rb +24 -0
- data/processor/command/set_subcmd/substitute_subcmd/.gitignore +3 -0
- data/processor/command/set_subcmd/substitute_subcmd/path.rb +56 -0
- data/processor/command/set_subcmd/timer.rb +58 -0
- data/processor/command/set_subcmd/trace.rb +37 -0
- data/processor/command/set_subcmd/trace_subcmd/.gitignore +2 -0
- data/processor/command/set_subcmd/trace_subcmd/buffer.rb +42 -0
- data/processor/command/set_subcmd/trace_subcmd/print.rb +41 -0
- data/processor/command/shell.rb +131 -0
- data/processor/command/show.rb +39 -0
- data/processor/command/show_subcmd/.gitignore +3 -0
- data/processor/command/show_subcmd/abbrev.rb +20 -0
- data/processor/command/show_subcmd/aliases.rb +46 -0
- data/processor/command/show_subcmd/args.rb +25 -0
- data/processor/command/show_subcmd/auto.rb +28 -0
- data/processor/command/show_subcmd/auto_subcmd/.gitignore +3 -0
- data/processor/command/show_subcmd/auto_subcmd/dis.rb +37 -0
- data/processor/command/show_subcmd/auto_subcmd/eval.rb +24 -0
- data/processor/command/show_subcmd/auto_subcmd/irb.rb +23 -0
- data/processor/command/show_subcmd/auto_subcmd/list.rb +22 -0
- data/processor/command/show_subcmd/basename.rb +20 -0
- data/processor/command/show_subcmd/confirm.rb +18 -0
- data/processor/command/show_subcmd/debug.rb +26 -0
- data/processor/command/show_subcmd/debug_subcmd/.gitignore +3 -0
- data/processor/command/show_subcmd/debug_subcmd/dbgr.rb +21 -0
- data/processor/command/show_subcmd/debug_subcmd/skip.rb +22 -0
- data/processor/command/show_subcmd/debug_subcmd/step.rb +22 -0
- data/processor/command/show_subcmd/different.rb +26 -0
- data/processor/command/show_subcmd/directories.rb +22 -0
- data/processor/command/show_subcmd/hidelevel.rb +41 -0
- data/processor/command/show_subcmd/highlight.rb +25 -0
- data/processor/command/show_subcmd/kernelstep.rb +34 -0
- data/processor/command/show_subcmd/max.rb +27 -0
- data/processor/command/show_subcmd/max_subcmd/.gitignore +2 -0
- data/processor/command/show_subcmd/max_subcmd/list.rb +38 -0
- data/processor/command/show_subcmd/max_subcmd/stack.rb +36 -0
- data/processor/command/show_subcmd/max_subcmd/string.rb +42 -0
- data/processor/command/show_subcmd/max_subcmd/width.rb +37 -0
- data/processor/command/show_subcmd/reload.rb +18 -0
- data/processor/command/show_subcmd/timer.rb +18 -0
- data/processor/command/show_subcmd/trace.rb +27 -0
- data/processor/command/show_subcmd/trace_subcmd/.gitignore +2 -0
- data/processor/command/show_subcmd/trace_subcmd/buffer.rb +64 -0
- data/processor/command/show_subcmd/trace_subcmd/print.rb +23 -0
- data/processor/command/show_subcmd/version.rb +23 -0
- data/processor/command/source.rb +133 -0
- data/processor/command/step.rb +97 -0
- data/processor/command/tbreak.rb +20 -0
- data/processor/command/unalias.rb +49 -0
- data/processor/command/undisplay.rb +63 -0
- data/processor/command/up.rb +89 -0
- data/processor/command.rb +173 -0
- data/processor/default.rb +64 -0
- data/processor/disassemble.rb +59 -0
- data/processor/display.rb +53 -0
- data/processor/eval.rb +97 -0
- data/processor/eventbuf.rb +101 -0
- data/processor/frame.rb +265 -0
- data/processor/help.rb +94 -0
- data/processor/hook.rb +134 -0
- data/processor/list.rb +123 -0
- data/processor/load_cmds.rb +253 -0
- data/processor/location.rb +228 -0
- data/processor/mock.rb +138 -0
- data/processor/msg.rb +74 -0
- data/processor/running.rb +244 -0
- data/processor/stepping.rb +135 -0
- data/processor/subcmd.rb +136 -0
- data/processor/validate.rb +379 -0
- data/processor/virtual.rb +33 -0
- data/processor.rb +404 -0
- data/rbx-trepanning.gemspec +39 -0
- data/sample/.gitignore +2 -0
- data/sample/list-terminal-colors.rb +139 -0
- data/sample/rocky-dot-trepanxrc +14 -0
- data/sample/rocky-trepanx-colors.rb +46 -0
- data/test/data/.gitignore +1 -0
- data/test/data/enable.right +36 -0
- data/test/data/fname-with-blank.cmd +6 -0
- data/test/data/fname-with-blank.right +6 -0
- data/test/data/inline-call.cmd +6 -0
- data/test/data/inline-call.right +14 -0
- data/test/data/quit-Xdebug.right +3 -0
- data/test/data/quit.cmd +5 -0
- data/test/data/quit.right +3 -0
- data/test/data/quit2.cmd +6 -0
- data/test/data/quit2.right +3 -0
- data/test/example/.gitignore +2 -0
- data/test/example/debugger-stop.rb +16 -0
- data/test/example/factorial.rb +10 -0
- data/test/example/fname with blank.rb +1 -0
- data/test/example/gcd-server.rb +22 -0
- data/test/example/gcd.rb +19 -0
- data/test/example/goto2goto.rb +11 -0
- data/test/example/inline-call.rb +23 -0
- data/test/example/null.rb +1 -0
- data/test/example/thread1.rb +3 -0
- data/test/functional/.gitignore +3 -0
- data/test/functional/fn_helper.rb +112 -0
- data/test/functional/test-break-name.rb +52 -0
- data/test/functional/test-break.rb +85 -0
- data/test/functional/test-eval.rb +115 -0
- data/test/functional/test-finish.rb +70 -0
- data/test/functional/test-fn_helper.rb +43 -0
- data/test/functional/test-list.rb +56 -0
- data/test/functional/test-next-bug.rb +49 -0
- data/test/functional/test-next.rb +101 -0
- data/test/functional/test-recursive-bt.rb +94 -0
- data/test/functional/test-step.rb +272 -0
- data/test/functional/test-step2.rb +35 -0
- data/test/functional/test-tbreak.rb +41 -0
- data/test/integration/.gitignore +3 -0
- data/test/integration/file-diff.rb +89 -0
- data/test/integration/helper.rb +81 -0
- data/test/integration/test-fname-with-blank.rb +16 -0
- data/test/integration/test-inline-call.rb +20 -0
- data/test/integration/test-quit.rb +47 -0
- data/test/unit/.gitignore +3 -0
- data/test/unit/cmd-helper.rb +50 -0
- data/test/unit/mock-helper.rb +10 -0
- data/test/unit/test-app-brkpt.rb +31 -0
- data/test/unit/test-app-brkptmgr.rb +51 -0
- data/test/unit/test-app-cmd_parse.rb +97 -0
- data/test/unit/test-app-cmd_parser.rb +23 -0
- data/test/unit/test-app-complete.rb +39 -0
- data/test/unit/test-app-condition.rb +18 -0
- data/test/unit/test-app-display.rb +22 -0
- data/test/unit/test-app-iseq.rb +64 -0
- data/test/unit/test-app-method.rb +54 -0
- data/test/unit/test-app-options.rb +94 -0
- data/test/unit/test-app-run.rb +14 -0
- data/test/unit/test-app-util.rb +44 -0
- data/test/unit/test-app-validate.rb +18 -0
- data/test/unit/test-base-cmd.rb +45 -0
- data/test/unit/test-base-subcmd.rb +57 -0
- data/test/unit/test-base-submgr.rb +24 -0
- data/test/unit/test-base-subsubcmd.rb +17 -0
- data/test/unit/test-bin-trepanx.rb +48 -0
- data/test/unit/test-cmd-alias.rb +48 -0
- data/test/unit/test-cmd-break.rb +66 -0
- data/test/unit/test-cmd-edit.rb +34 -0
- data/test/unit/test-cmd-exit.rb +27 -0
- data/test/unit/test-cmd-finish.rb +31 -0
- data/test/unit/test-cmd-help.rb +104 -0
- data/test/unit/test-cmd-kill.rb +54 -0
- data/test/unit/test-cmd-parse_list_cmd.rb +36 -0
- data/test/unit/test-cmd-source.rb +34 -0
- data/test/unit/test-cmd-step.rb +29 -0
- data/test/unit/test-command.rb +45 -0
- data/test/unit/test-completion.rb +48 -0
- data/test/unit/test-intf-user.rb +46 -0
- data/test/unit/test-io-input.rb +27 -0
- data/test/unit/test-io-tcp.rb +33 -0
- data/test/unit/test-io-tcpclient.rb +54 -0
- data/test/unit/test-io-tcpfns.rb +17 -0
- data/test/unit/test-io-tcpserver.rb +50 -0
- data/test/unit/test-proc-eval.rb +35 -0
- data/test/unit/test-proc-frame.rb +81 -0
- data/test/unit/test-proc-help.rb +16 -0
- data/test/unit/test-proc-hook.rb +30 -0
- data/test/unit/test-proc-list.rb +55 -0
- data/test/unit/test-proc-load_cmds.rb +51 -0
- data/test/unit/test-proc-location.rb +67 -0
- data/test/unit/test-proc-main.rb +95 -0
- data/test/unit/test-proc-validate.rb +139 -0
- data/test/unit/test-subcmd-help.rb +43 -0
- metadata +545 -0
metadata
ADDED
@@ -0,0 +1,545 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rbx-trepanning
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 628640426
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 2
|
9
|
+
- 0
|
10
|
+
version: 0.2.0
|
11
|
+
platform: universal-rubinius-2.0
|
12
|
+
authors:
|
13
|
+
- R. Bernstein
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2013-07-14 00:00:00 Z
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: columnize
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
hash: 881230260
|
29
|
+
segments:
|
30
|
+
- 0
|
31
|
+
version: "0"
|
32
|
+
type: :runtime
|
33
|
+
version_requirements: *id001
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: diff-lcs
|
36
|
+
prerelease: false
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
38
|
+
none: false
|
39
|
+
requirements:
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
hash: 881230260
|
43
|
+
segments:
|
44
|
+
- 0
|
45
|
+
version: "0"
|
46
|
+
type: :development
|
47
|
+
version_requirements: *id002
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: rbx-require-relative
|
50
|
+
prerelease: false
|
51
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
hash: 246344429
|
57
|
+
segments:
|
58
|
+
- 0
|
59
|
+
- 0
|
60
|
+
- 4
|
61
|
+
version: 0.0.4
|
62
|
+
type: :runtime
|
63
|
+
version_requirements: *id003
|
64
|
+
- !ruby/object:Gem::Dependency
|
65
|
+
name: rbx-linecache
|
66
|
+
prerelease: false
|
67
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
68
|
+
none: false
|
69
|
+
requirements:
|
70
|
+
- - ~>
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
hash: 756206160
|
73
|
+
segments:
|
74
|
+
- 1
|
75
|
+
- 3
|
76
|
+
version: "1.3"
|
77
|
+
type: :runtime
|
78
|
+
version_requirements: *id004
|
79
|
+
- !ruby/object:Gem::Dependency
|
80
|
+
name: coderay
|
81
|
+
prerelease: false
|
82
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
83
|
+
none: false
|
84
|
+
requirements:
|
85
|
+
- - ">="
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
hash: 710581382
|
88
|
+
segments:
|
89
|
+
- 1
|
90
|
+
- 0
|
91
|
+
version: "1.0"
|
92
|
+
type: :runtime
|
93
|
+
version_requirements: *id005
|
94
|
+
description: |
|
95
|
+
A modular, testable, Ruby debugger using some of good ideas from
|
96
|
+
ruby-debug, other debuggers, and Ruby Rails.
|
97
|
+
|
98
|
+
Some of the core debugger concepts have been rethought. As a result,
|
99
|
+
some of this may be experimental.
|
100
|
+
|
101
|
+
This version works only on Rubinus 1.2.1 or higher.
|
102
|
+
|
103
|
+
email: rockyb@rubyforge.net
|
104
|
+
executables:
|
105
|
+
- trepanx
|
106
|
+
extensions: []
|
107
|
+
|
108
|
+
extra_rdoc_files: []
|
109
|
+
|
110
|
+
files:
|
111
|
+
- .gitignore
|
112
|
+
- ChangeLog
|
113
|
+
- LICENSE
|
114
|
+
- Makefile
|
115
|
+
- NEWS
|
116
|
+
- README.textile
|
117
|
+
- Rakefile
|
118
|
+
- THANKS
|
119
|
+
- app/.gitignore
|
120
|
+
- app/breakpoint.rb
|
121
|
+
- app/brkptmgr.rb
|
122
|
+
- app/client.rb
|
123
|
+
- app/cmd_parse.kpeg
|
124
|
+
- app/cmd_parse.rb
|
125
|
+
- app/cmd_parser.rb
|
126
|
+
- app/complete.rb
|
127
|
+
- app/condition.rb
|
128
|
+
- app/default.rb
|
129
|
+
- app/display.rb
|
130
|
+
- app/eventbuffer.rb
|
131
|
+
- app/file.rb
|
132
|
+
- app/frame.rb
|
133
|
+
- app/irb.rb
|
134
|
+
- app/iseq.rb
|
135
|
+
- app/method.rb
|
136
|
+
- app/mock.rb
|
137
|
+
- app/options.rb
|
138
|
+
- app/rbx-llvm.rb
|
139
|
+
- app/run.rb
|
140
|
+
- app/util.rb
|
141
|
+
- app/validate.rb
|
142
|
+
- bin/.gitignore
|
143
|
+
- bin/trepanx
|
144
|
+
- data/.gitignore
|
145
|
+
- data/irbrc
|
146
|
+
- interface.rb
|
147
|
+
- interface/.gitignore
|
148
|
+
- interface/client.rb
|
149
|
+
- interface/comcodes.rb
|
150
|
+
- interface/script.rb
|
151
|
+
- interface/server.rb
|
152
|
+
- interface/user.rb
|
153
|
+
- io.rb
|
154
|
+
- io/.gitignore
|
155
|
+
- io/input.rb
|
156
|
+
- io/null_output.rb
|
157
|
+
- io/string_array.rb
|
158
|
+
- io/tcpclient.rb
|
159
|
+
- io/tcpfns.rb
|
160
|
+
- io/tcpserver.rb
|
161
|
+
- lib/.gitignore
|
162
|
+
- lib/trepanning.rb
|
163
|
+
- processor.rb
|
164
|
+
- processor/.gitignore
|
165
|
+
- processor/Makefile
|
166
|
+
- processor/breakpoint.rb
|
167
|
+
- processor/command.rb
|
168
|
+
- processor/command/.gitignore
|
169
|
+
- processor/command/alias.rb
|
170
|
+
- processor/command/backtrace.rb
|
171
|
+
- processor/command/base/.gitignore
|
172
|
+
- processor/command/base/subcmd.rb
|
173
|
+
- processor/command/base/submgr.rb
|
174
|
+
- processor/command/base/subsubcmd.rb
|
175
|
+
- processor/command/base/subsubmgr.rb
|
176
|
+
- processor/command/break.rb
|
177
|
+
- processor/command/complete.rb
|
178
|
+
- processor/command/condition.rb
|
179
|
+
- processor/command/continue.rb
|
180
|
+
- processor/command/delete.rb
|
181
|
+
- processor/command/directory.rb
|
182
|
+
- processor/command/disable.rb
|
183
|
+
- processor/command/disassemble.rb
|
184
|
+
- processor/command/display.rb
|
185
|
+
- processor/command/down.rb
|
186
|
+
- processor/command/edit.rb
|
187
|
+
- processor/command/enable.rb
|
188
|
+
- processor/command/eval.rb
|
189
|
+
- processor/command/exit.rb
|
190
|
+
- processor/command/finish.rb
|
191
|
+
- processor/command/frame.rb
|
192
|
+
- processor/command/help.rb
|
193
|
+
- processor/command/help/.gitignore
|
194
|
+
- processor/command/help/README
|
195
|
+
- processor/command/help/command.txt
|
196
|
+
- processor/command/help/examples.txt
|
197
|
+
- processor/command/help/filename.txt
|
198
|
+
- processor/command/help/location.txt
|
199
|
+
- processor/command/help/suffixes.txt
|
200
|
+
- processor/command/info.rb
|
201
|
+
- processor/command/info_subcmd/.gitignore
|
202
|
+
- processor/command/info_subcmd/breakpoints.rb
|
203
|
+
- processor/command/info_subcmd/files.rb
|
204
|
+
- processor/command/info_subcmd/frame.rb
|
205
|
+
- processor/command/info_subcmd/line.rb
|
206
|
+
- processor/command/info_subcmd/locals.rb
|
207
|
+
- processor/command/info_subcmd/macro.rb
|
208
|
+
- processor/command/info_subcmd/method.rb
|
209
|
+
- processor/command/info_subcmd/program.rb
|
210
|
+
- processor/command/info_subcmd/ruby.rb
|
211
|
+
- processor/command/info_subcmd/source.rb
|
212
|
+
- processor/command/info_subcmd/stack.rb
|
213
|
+
- processor/command/info_subcmd/variables.rb
|
214
|
+
- processor/command/info_subcmd/variables_subcmd/.gitignore
|
215
|
+
- processor/command/info_subcmd/variables_subcmd/class.rb
|
216
|
+
- processor/command/info_subcmd/variables_subcmd/constant.rb
|
217
|
+
- processor/command/info_subcmd/variables_subcmd/globals.rb
|
218
|
+
- processor/command/info_subcmd/variables_subcmd/instance.rb
|
219
|
+
- processor/command/info_subcmd/variables_subcmd/locals.rb
|
220
|
+
- processor/command/kill.rb
|
221
|
+
- processor/command/list.rb
|
222
|
+
- processor/command/macro.rb
|
223
|
+
- processor/command/next.rb
|
224
|
+
- processor/command/nexti.rb
|
225
|
+
- processor/command/parsetree.rb
|
226
|
+
- processor/command/pr.rb
|
227
|
+
- processor/command/ps.rb
|
228
|
+
- processor/command/restart.rb
|
229
|
+
- processor/command/save.rb
|
230
|
+
- processor/command/server.rb
|
231
|
+
- processor/command/set.rb
|
232
|
+
- processor/command/set_subcmd/.gitignore
|
233
|
+
- processor/command/set_subcmd/abbrev.rb
|
234
|
+
- processor/command/set_subcmd/auto.rb
|
235
|
+
- processor/command/set_subcmd/auto_subcmd/.gitignore
|
236
|
+
- processor/command/set_subcmd/auto_subcmd/dis.rb
|
237
|
+
- processor/command/set_subcmd/auto_subcmd/eval.rb
|
238
|
+
- processor/command/set_subcmd/auto_subcmd/irb.rb
|
239
|
+
- processor/command/set_subcmd/auto_subcmd/list.rb
|
240
|
+
- processor/command/set_subcmd/basename.rb
|
241
|
+
- processor/command/set_subcmd/confirm.rb
|
242
|
+
- processor/command/set_subcmd/debug.rb
|
243
|
+
- processor/command/set_subcmd/debug_subcmd/.gitignore
|
244
|
+
- processor/command/set_subcmd/debug_subcmd/dbgr.rb
|
245
|
+
- processor/command/set_subcmd/debug_subcmd/skip.rb
|
246
|
+
- processor/command/set_subcmd/debug_subcmd/step.rb
|
247
|
+
- processor/command/set_subcmd/different.rb
|
248
|
+
- processor/command/set_subcmd/hidelevel.rb
|
249
|
+
- processor/command/set_subcmd/highlight.rb
|
250
|
+
- processor/command/set_subcmd/kernelstep.rb
|
251
|
+
- processor/command/set_subcmd/max.rb
|
252
|
+
- processor/command/set_subcmd/max_subcmd/.gitignore
|
253
|
+
- processor/command/set_subcmd/max_subcmd/list.rb
|
254
|
+
- processor/command/set_subcmd/max_subcmd/stack.rb
|
255
|
+
- processor/command/set_subcmd/max_subcmd/string.rb
|
256
|
+
- processor/command/set_subcmd/max_subcmd/width.rb
|
257
|
+
- processor/command/set_subcmd/reload.rb
|
258
|
+
- processor/command/set_subcmd/substitute.rb
|
259
|
+
- processor/command/set_subcmd/substitute_subcmd/.gitignore
|
260
|
+
- processor/command/set_subcmd/substitute_subcmd/path.rb
|
261
|
+
- processor/command/set_subcmd/timer.rb
|
262
|
+
- processor/command/set_subcmd/trace.rb
|
263
|
+
- processor/command/set_subcmd/trace_subcmd/.gitignore
|
264
|
+
- processor/command/set_subcmd/trace_subcmd/buffer.rb
|
265
|
+
- processor/command/set_subcmd/trace_subcmd/print.rb
|
266
|
+
- processor/command/shell.rb
|
267
|
+
- processor/command/show.rb
|
268
|
+
- processor/command/show_subcmd/.gitignore
|
269
|
+
- processor/command/show_subcmd/abbrev.rb
|
270
|
+
- processor/command/show_subcmd/aliases.rb
|
271
|
+
- processor/command/show_subcmd/args.rb
|
272
|
+
- processor/command/show_subcmd/auto.rb
|
273
|
+
- processor/command/show_subcmd/auto_subcmd/.gitignore
|
274
|
+
- processor/command/show_subcmd/auto_subcmd/dis.rb
|
275
|
+
- processor/command/show_subcmd/auto_subcmd/eval.rb
|
276
|
+
- processor/command/show_subcmd/auto_subcmd/irb.rb
|
277
|
+
- processor/command/show_subcmd/auto_subcmd/list.rb
|
278
|
+
- processor/command/show_subcmd/basename.rb
|
279
|
+
- processor/command/show_subcmd/confirm.rb
|
280
|
+
- processor/command/show_subcmd/debug.rb
|
281
|
+
- processor/command/show_subcmd/debug_subcmd/.gitignore
|
282
|
+
- processor/command/show_subcmd/debug_subcmd/dbgr.rb
|
283
|
+
- processor/command/show_subcmd/debug_subcmd/skip.rb
|
284
|
+
- processor/command/show_subcmd/debug_subcmd/step.rb
|
285
|
+
- processor/command/show_subcmd/different.rb
|
286
|
+
- processor/command/show_subcmd/directories.rb
|
287
|
+
- processor/command/show_subcmd/hidelevel.rb
|
288
|
+
- processor/command/show_subcmd/highlight.rb
|
289
|
+
- processor/command/show_subcmd/kernelstep.rb
|
290
|
+
- processor/command/show_subcmd/max.rb
|
291
|
+
- processor/command/show_subcmd/max_subcmd/.gitignore
|
292
|
+
- processor/command/show_subcmd/max_subcmd/list.rb
|
293
|
+
- processor/command/show_subcmd/max_subcmd/stack.rb
|
294
|
+
- processor/command/show_subcmd/max_subcmd/string.rb
|
295
|
+
- processor/command/show_subcmd/max_subcmd/width.rb
|
296
|
+
- processor/command/show_subcmd/reload.rb
|
297
|
+
- processor/command/show_subcmd/timer.rb
|
298
|
+
- processor/command/show_subcmd/trace.rb
|
299
|
+
- processor/command/show_subcmd/trace_subcmd/.gitignore
|
300
|
+
- processor/command/show_subcmd/trace_subcmd/buffer.rb
|
301
|
+
- processor/command/show_subcmd/trace_subcmd/print.rb
|
302
|
+
- processor/command/show_subcmd/version.rb
|
303
|
+
- processor/command/source.rb
|
304
|
+
- processor/command/step.rb
|
305
|
+
- processor/command/tbreak.rb
|
306
|
+
- processor/command/unalias.rb
|
307
|
+
- processor/command/undisplay.rb
|
308
|
+
- processor/command/up.rb
|
309
|
+
- processor/default.rb
|
310
|
+
- processor/disassemble.rb
|
311
|
+
- processor/display.rb
|
312
|
+
- processor/eval.rb
|
313
|
+
- processor/eventbuf.rb
|
314
|
+
- processor/frame.rb
|
315
|
+
- processor/help.rb
|
316
|
+
- processor/hook.rb
|
317
|
+
- processor/list.rb
|
318
|
+
- processor/load_cmds.rb
|
319
|
+
- processor/location.rb
|
320
|
+
- processor/mock.rb
|
321
|
+
- processor/msg.rb
|
322
|
+
- processor/running.rb
|
323
|
+
- processor/stepping.rb
|
324
|
+
- processor/subcmd.rb
|
325
|
+
- processor/validate.rb
|
326
|
+
- processor/virtual.rb
|
327
|
+
- rbx-trepanning.gemspec
|
328
|
+
- sample/.gitignore
|
329
|
+
- sample/list-terminal-colors.rb
|
330
|
+
- sample/rocky-dot-trepanxrc
|
331
|
+
- sample/rocky-trepanx-colors.rb
|
332
|
+
- test/data/.gitignore
|
333
|
+
- test/data/enable.right
|
334
|
+
- test/data/fname-with-blank.cmd
|
335
|
+
- test/data/fname-with-blank.right
|
336
|
+
- test/data/inline-call.cmd
|
337
|
+
- test/data/inline-call.right
|
338
|
+
- test/data/quit-Xdebug.right
|
339
|
+
- test/data/quit.cmd
|
340
|
+
- test/data/quit.right
|
341
|
+
- test/data/quit2.cmd
|
342
|
+
- test/data/quit2.right
|
343
|
+
- test/example/.gitignore
|
344
|
+
- test/example/debugger-stop.rb
|
345
|
+
- test/example/factorial.rb
|
346
|
+
- test/example/fname with blank.rb
|
347
|
+
- test/example/gcd-server.rb
|
348
|
+
- test/example/gcd.rb
|
349
|
+
- test/example/goto2goto.rb
|
350
|
+
- test/example/inline-call.rb
|
351
|
+
- test/example/null.rb
|
352
|
+
- test/example/thread1.rb
|
353
|
+
- test/functional/.gitignore
|
354
|
+
- test/functional/fn_helper.rb
|
355
|
+
- test/functional/test-break-name.rb
|
356
|
+
- test/functional/test-break.rb
|
357
|
+
- test/functional/test-eval.rb
|
358
|
+
- test/functional/test-finish.rb
|
359
|
+
- test/functional/test-fn_helper.rb
|
360
|
+
- test/functional/test-list.rb
|
361
|
+
- test/functional/test-next-bug.rb
|
362
|
+
- test/functional/test-next.rb
|
363
|
+
- test/functional/test-recursive-bt.rb
|
364
|
+
- test/functional/test-step.rb
|
365
|
+
- test/functional/test-step2.rb
|
366
|
+
- test/functional/test-tbreak.rb
|
367
|
+
- test/integration/.gitignore
|
368
|
+
- test/integration/file-diff.rb
|
369
|
+
- test/integration/helper.rb
|
370
|
+
- test/integration/test-fname-with-blank.rb
|
371
|
+
- test/integration/test-inline-call.rb
|
372
|
+
- test/integration/test-quit.rb
|
373
|
+
- test/unit/.gitignore
|
374
|
+
- test/unit/cmd-helper.rb
|
375
|
+
- test/unit/mock-helper.rb
|
376
|
+
- test/unit/test-app-brkpt.rb
|
377
|
+
- test/unit/test-app-brkptmgr.rb
|
378
|
+
- test/unit/test-app-cmd_parse.rb
|
379
|
+
- test/unit/test-app-cmd_parser.rb
|
380
|
+
- test/unit/test-app-complete.rb
|
381
|
+
- test/unit/test-app-condition.rb
|
382
|
+
- test/unit/test-app-display.rb
|
383
|
+
- test/unit/test-app-iseq.rb
|
384
|
+
- test/unit/test-app-method.rb
|
385
|
+
- test/unit/test-app-options.rb
|
386
|
+
- test/unit/test-app-run.rb
|
387
|
+
- test/unit/test-app-util.rb
|
388
|
+
- test/unit/test-app-validate.rb
|
389
|
+
- test/unit/test-base-cmd.rb
|
390
|
+
- test/unit/test-base-subcmd.rb
|
391
|
+
- test/unit/test-base-submgr.rb
|
392
|
+
- test/unit/test-base-subsubcmd.rb
|
393
|
+
- test/unit/test-bin-trepanx.rb
|
394
|
+
- test/unit/test-cmd-alias.rb
|
395
|
+
- test/unit/test-cmd-break.rb
|
396
|
+
- test/unit/test-cmd-edit.rb
|
397
|
+
- test/unit/test-cmd-exit.rb
|
398
|
+
- test/unit/test-cmd-finish.rb
|
399
|
+
- test/unit/test-cmd-help.rb
|
400
|
+
- test/unit/test-cmd-kill.rb
|
401
|
+
- test/unit/test-cmd-parse_list_cmd.rb
|
402
|
+
- test/unit/test-cmd-source.rb
|
403
|
+
- test/unit/test-cmd-step.rb
|
404
|
+
- test/unit/test-command.rb
|
405
|
+
- test/unit/test-completion.rb
|
406
|
+
- test/unit/test-intf-user.rb
|
407
|
+
- test/unit/test-io-input.rb
|
408
|
+
- test/unit/test-io-tcp.rb
|
409
|
+
- test/unit/test-io-tcpclient.rb
|
410
|
+
- test/unit/test-io-tcpfns.rb
|
411
|
+
- test/unit/test-io-tcpserver.rb
|
412
|
+
- test/unit/test-proc-eval.rb
|
413
|
+
- test/unit/test-proc-frame.rb
|
414
|
+
- test/unit/test-proc-help.rb
|
415
|
+
- test/unit/test-proc-hook.rb
|
416
|
+
- test/unit/test-proc-list.rb
|
417
|
+
- test/unit/test-proc-load_cmds.rb
|
418
|
+
- test/unit/test-proc-location.rb
|
419
|
+
- test/unit/test-proc-main.rb
|
420
|
+
- test/unit/test-proc-validate.rb
|
421
|
+
- test/unit/test-subcmd-help.rb
|
422
|
+
homepage: http://wiki.github.com/rocky/rbx-trepanning
|
423
|
+
licenses:
|
424
|
+
- MIT
|
425
|
+
post_install_message:
|
426
|
+
rdoc_options: []
|
427
|
+
|
428
|
+
require_paths:
|
429
|
+
- lib
|
430
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
431
|
+
none: false
|
432
|
+
requirements:
|
433
|
+
- - ">="
|
434
|
+
- !ruby/object:Gem::Version
|
435
|
+
hash: 881230260
|
436
|
+
segments:
|
437
|
+
- 0
|
438
|
+
version: "0"
|
439
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
440
|
+
none: false
|
441
|
+
requirements:
|
442
|
+
- - ">="
|
443
|
+
- !ruby/object:Gem::Version
|
444
|
+
hash: 881230260
|
445
|
+
segments:
|
446
|
+
- 0
|
447
|
+
version: "0"
|
448
|
+
requirements: []
|
449
|
+
|
450
|
+
rubyforge_project:
|
451
|
+
rubygems_version: 1.8.25
|
452
|
+
signing_key:
|
453
|
+
specification_version: 3
|
454
|
+
summary: Trepan Ruby Debugger for Rubinius 1.2.4 and higher
|
455
|
+
test_files:
|
456
|
+
- test/data/.gitignore
|
457
|
+
- test/data/enable.right
|
458
|
+
- test/data/fname-with-blank.cmd
|
459
|
+
- test/data/fname-with-blank.right
|
460
|
+
- test/data/inline-call.cmd
|
461
|
+
- test/data/inline-call.right
|
462
|
+
- test/data/quit-Xdebug.right
|
463
|
+
- test/data/quit.cmd
|
464
|
+
- test/data/quit.right
|
465
|
+
- test/data/quit2.cmd
|
466
|
+
- test/data/quit2.right
|
467
|
+
- test/example/.gitignore
|
468
|
+
- test/example/debugger-stop.rb
|
469
|
+
- test/example/factorial.rb
|
470
|
+
- test/example/fname with blank.rb
|
471
|
+
- test/example/gcd-server.rb
|
472
|
+
- test/example/gcd.rb
|
473
|
+
- test/example/goto2goto.rb
|
474
|
+
- test/example/inline-call.rb
|
475
|
+
- test/example/null.rb
|
476
|
+
- test/example/thread1.rb
|
477
|
+
- test/functional/.gitignore
|
478
|
+
- test/functional/fn_helper.rb
|
479
|
+
- test/functional/test-break-name.rb
|
480
|
+
- test/functional/test-break.rb
|
481
|
+
- test/functional/test-eval.rb
|
482
|
+
- test/functional/test-finish.rb
|
483
|
+
- test/functional/test-fn_helper.rb
|
484
|
+
- test/functional/test-list.rb
|
485
|
+
- test/functional/test-next-bug.rb
|
486
|
+
- test/functional/test-next.rb
|
487
|
+
- test/functional/test-recursive-bt.rb
|
488
|
+
- test/functional/test-step.rb
|
489
|
+
- test/functional/test-step2.rb
|
490
|
+
- test/functional/test-tbreak.rb
|
491
|
+
- test/integration/.gitignore
|
492
|
+
- test/integration/file-diff.rb
|
493
|
+
- test/integration/helper.rb
|
494
|
+
- test/integration/test-fname-with-blank.rb
|
495
|
+
- test/integration/test-inline-call.rb
|
496
|
+
- test/integration/test-quit.rb
|
497
|
+
- test/unit/.gitignore
|
498
|
+
- test/unit/cmd-helper.rb
|
499
|
+
- test/unit/mock-helper.rb
|
500
|
+
- test/unit/test-app-brkpt.rb
|
501
|
+
- test/unit/test-app-brkptmgr.rb
|
502
|
+
- test/unit/test-app-cmd_parse.rb
|
503
|
+
- test/unit/test-app-cmd_parser.rb
|
504
|
+
- test/unit/test-app-complete.rb
|
505
|
+
- test/unit/test-app-condition.rb
|
506
|
+
- test/unit/test-app-display.rb
|
507
|
+
- test/unit/test-app-iseq.rb
|
508
|
+
- test/unit/test-app-method.rb
|
509
|
+
- test/unit/test-app-options.rb
|
510
|
+
- test/unit/test-app-run.rb
|
511
|
+
- test/unit/test-app-util.rb
|
512
|
+
- test/unit/test-app-validate.rb
|
513
|
+
- test/unit/test-base-cmd.rb
|
514
|
+
- test/unit/test-base-subcmd.rb
|
515
|
+
- test/unit/test-base-submgr.rb
|
516
|
+
- test/unit/test-base-subsubcmd.rb
|
517
|
+
- test/unit/test-bin-trepanx.rb
|
518
|
+
- test/unit/test-cmd-alias.rb
|
519
|
+
- test/unit/test-cmd-break.rb
|
520
|
+
- test/unit/test-cmd-edit.rb
|
521
|
+
- test/unit/test-cmd-exit.rb
|
522
|
+
- test/unit/test-cmd-finish.rb
|
523
|
+
- test/unit/test-cmd-help.rb
|
524
|
+
- test/unit/test-cmd-kill.rb
|
525
|
+
- test/unit/test-cmd-parse_list_cmd.rb
|
526
|
+
- test/unit/test-cmd-source.rb
|
527
|
+
- test/unit/test-cmd-step.rb
|
528
|
+
- test/unit/test-command.rb
|
529
|
+
- test/unit/test-completion.rb
|
530
|
+
- test/unit/test-intf-user.rb
|
531
|
+
- test/unit/test-io-input.rb
|
532
|
+
- test/unit/test-io-tcp.rb
|
533
|
+
- test/unit/test-io-tcpclient.rb
|
534
|
+
- test/unit/test-io-tcpfns.rb
|
535
|
+
- test/unit/test-io-tcpserver.rb
|
536
|
+
- test/unit/test-proc-eval.rb
|
537
|
+
- test/unit/test-proc-frame.rb
|
538
|
+
- test/unit/test-proc-help.rb
|
539
|
+
- test/unit/test-proc-hook.rb
|
540
|
+
- test/unit/test-proc-list.rb
|
541
|
+
- test/unit/test-proc-load_cmds.rb
|
542
|
+
- test/unit/test-proc-location.rb
|
543
|
+
- test/unit/test-proc-main.rb
|
544
|
+
- test/unit/test-proc-validate.rb
|
545
|
+
- test/unit/test-subcmd-help.rb
|