needy_debugger 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (187) hide show
  1. data/.gitignore +14 -0
  2. data/.travis.yml +8 -0
  3. data/AUTHORS +10 -0
  4. data/CHANGELOG.md +68 -0
  5. data/CONTRIBUTING.md +1 -0
  6. data/Gemfile +3 -0
  7. data/LICENSE +23 -0
  8. data/OLDER_CHANGELOG +334 -0
  9. data/OLD_CHANGELOG +5655 -0
  10. data/OLD_README +122 -0
  11. data/README.md +141 -0
  12. data/Rakefile +78 -0
  13. data/bin/rdebug +397 -0
  14. data/doc/.cvsignore +42 -0
  15. data/doc/Makefile.am +63 -0
  16. data/doc/emacs-notes.txt +38 -0
  17. data/doc/hanoi.rb +35 -0
  18. data/doc/primes.rb +28 -0
  19. data/doc/rdebug-emacs.texi +1030 -0
  20. data/doc/ruby-debug.texi +3791 -0
  21. data/doc/test-tri2.rb +18 -0
  22. data/doc/tri3.rb +8 -0
  23. data/doc/triangle.rb +12 -0
  24. data/emacs/Makefile.am +130 -0
  25. data/emacs/rdebug-annotate.el +385 -0
  26. data/emacs/rdebug-breaks.el +407 -0
  27. data/emacs/rdebug-cmd.el +92 -0
  28. data/emacs/rdebug-core.el +502 -0
  29. data/emacs/rdebug-dbg.el +62 -0
  30. data/emacs/rdebug-error.el +79 -0
  31. data/emacs/rdebug-fns.el +111 -0
  32. data/emacs/rdebug-frames.el +230 -0
  33. data/emacs/rdebug-gud.el +242 -0
  34. data/emacs/rdebug-help.el +104 -0
  35. data/emacs/rdebug-info.el +83 -0
  36. data/emacs/rdebug-layouts.el +180 -0
  37. data/emacs/rdebug-locring.el +118 -0
  38. data/emacs/rdebug-output.el +106 -0
  39. data/emacs/rdebug-regexp.el +118 -0
  40. data/emacs/rdebug-secondary.el +260 -0
  41. data/emacs/rdebug-shortkey.el +175 -0
  42. data/emacs/rdebug-source.el +568 -0
  43. data/emacs/rdebug-track.el +392 -0
  44. data/emacs/rdebug-varbuf.el +150 -0
  45. data/emacs/rdebug-vars.el +125 -0
  46. data/emacs/rdebug-watch.el +132 -0
  47. data/emacs/rdebug.el +326 -0
  48. data/emacs/test/elk-test.el +242 -0
  49. data/emacs/test/test-annotate.el +103 -0
  50. data/emacs/test/test-cmd.el +116 -0
  51. data/emacs/test/test-core.el +104 -0
  52. data/emacs/test/test-fns.el +65 -0
  53. data/emacs/test/test-frames.el +62 -0
  54. data/emacs/test/test-gud.el +35 -0
  55. data/emacs/test/test-indent.el +58 -0
  56. data/emacs/test/test-regexp.el +144 -0
  57. data/emacs/test/test-shortkey.el +61 -0
  58. data/ext/ruby_debug/192/breakpoint.c +586 -0
  59. data/ext/ruby_debug/192/ruby_debug.c +2645 -0
  60. data/ext/ruby_debug/192/ruby_debug.h +148 -0
  61. data/ext/ruby_debug/193/breakpoint.c +586 -0
  62. data/ext/ruby_debug/193/ruby_debug.c +2626 -0
  63. data/ext/ruby_debug/193/ruby_debug.h +148 -0
  64. data/ext/ruby_debug/200/breakpoint.c +586 -0
  65. data/ext/ruby_debug/200/ruby_debug.c +2692 -0
  66. data/ext/ruby_debug/200/ruby_debug.h +148 -0
  67. data/ext/ruby_debug/extconf.rb +94 -0
  68. data/lib/debugger.rb +5 -0
  69. data/lib/debugger/version.rb +5 -0
  70. data/lib/ruby-debug-base.rb +305 -0
  71. data/lib/ruby-debug.rb +177 -0
  72. data/lib/ruby-debug/command.rb +227 -0
  73. data/lib/ruby-debug/commands/breakpoints.rb +153 -0
  74. data/lib/ruby-debug/commands/catchpoint.rb +55 -0
  75. data/lib/ruby-debug/commands/condition.rb +49 -0
  76. data/lib/ruby-debug/commands/continue.rb +38 -0
  77. data/lib/ruby-debug/commands/control.rb +107 -0
  78. data/lib/ruby-debug/commands/display.rb +120 -0
  79. data/lib/ruby-debug/commands/edit.rb +48 -0
  80. data/lib/ruby-debug/commands/enable.rb +202 -0
  81. data/lib/ruby-debug/commands/eval.rb +176 -0
  82. data/lib/ruby-debug/commands/finish.rb +42 -0
  83. data/lib/ruby-debug/commands/frame.rb +301 -0
  84. data/lib/ruby-debug/commands/help.rb +56 -0
  85. data/lib/ruby-debug/commands/info.rb +467 -0
  86. data/lib/ruby-debug/commands/irb.rb +123 -0
  87. data/lib/ruby-debug/commands/jump.rb +66 -0
  88. data/lib/ruby-debug/commands/kill.rb +51 -0
  89. data/lib/ruby-debug/commands/list.rb +94 -0
  90. data/lib/ruby-debug/commands/method.rb +84 -0
  91. data/lib/ruby-debug/commands/quit.rb +50 -0
  92. data/lib/ruby-debug/commands/reload.rb +40 -0
  93. data/lib/ruby-debug/commands/save.rb +90 -0
  94. data/lib/ruby-debug/commands/set.rb +223 -0
  95. data/lib/ruby-debug/commands/show.rb +247 -0
  96. data/lib/ruby-debug/commands/skip.rb +35 -0
  97. data/lib/ruby-debug/commands/source.rb +36 -0
  98. data/lib/ruby-debug/commands/stepping.rb +81 -0
  99. data/lib/ruby-debug/commands/threads.rb +189 -0
  100. data/lib/ruby-debug/commands/tmate.rb +36 -0
  101. data/lib/ruby-debug/commands/trace.rb +57 -0
  102. data/lib/ruby-debug/commands/variables.rb +199 -0
  103. data/lib/ruby-debug/debugger.rb +5 -0
  104. data/lib/ruby-debug/helper.rb +69 -0
  105. data/lib/ruby-debug/interface.rb +232 -0
  106. data/lib/ruby-debug/processor.rb +474 -0
  107. data/man/rdebug.1 +241 -0
  108. data/needy_debugger.gemspec +31 -0
  109. data/old_scripts/Makefile.am +14 -0
  110. data/old_scripts/README.md +2 -0
  111. data/old_scripts/autogen.sh +4 -0
  112. data/old_scripts/configure.ac +12 -0
  113. data/old_scripts/rdbg.rb +33 -0
  114. data/old_scripts/runner.sh +7 -0
  115. data/old_scripts/svn2cl_usermap +3 -0
  116. data/test/.cvsignore +1 -0
  117. data/test/breakpoints_test.rb +365 -0
  118. data/test/conditions_test.rb +76 -0
  119. data/test/continue_test.rb +28 -0
  120. data/test/display_test.rb +141 -0
  121. data/test/edit_test.rb +55 -0
  122. data/test/eval_test.rb +92 -0
  123. data/test/examples/breakpoint1.rb +15 -0
  124. data/test/examples/breakpoint2.rb +7 -0
  125. data/test/examples/conditions.rb +4 -0
  126. data/test/examples/continue.rb +4 -0
  127. data/test/examples/display.rb +5 -0
  128. data/test/examples/edit.rb +3 -0
  129. data/test/examples/edit2.rb +3 -0
  130. data/test/examples/eval.rb +4 -0
  131. data/test/examples/finish.rb +20 -0
  132. data/test/examples/frame.rb +31 -0
  133. data/test/examples/help.rb +2 -0
  134. data/test/examples/info.rb +48 -0
  135. data/test/examples/info2.rb +3 -0
  136. data/test/examples/irb.rb +6 -0
  137. data/test/examples/jump.rb +14 -0
  138. data/test/examples/kill.rb +2 -0
  139. data/test/examples/list.rb +12 -0
  140. data/test/examples/method.rb +15 -0
  141. data/test/examples/post_mortem.rb +19 -0
  142. data/test/examples/quit.rb +2 -0
  143. data/test/examples/reload.rb +6 -0
  144. data/test/examples/restart.rb +6 -0
  145. data/test/examples/save.rb +3 -0
  146. data/test/examples/set.rb +3 -0
  147. data/test/examples/set_annotate.rb +12 -0
  148. data/test/examples/settings.rb +1 -0
  149. data/test/examples/show.rb +2 -0
  150. data/test/examples/source.rb +3 -0
  151. data/test/examples/stepping.rb +21 -0
  152. data/test/examples/thread.rb +32 -0
  153. data/test/examples/tmate.rb +10 -0
  154. data/test/examples/trace.rb +7 -0
  155. data/test/examples/trace_threads.rb +20 -0
  156. data/test/examples/variables.rb +26 -0
  157. data/test/finish_test.rb +48 -0
  158. data/test/frame_test.rb +140 -0
  159. data/test/help_test.rb +50 -0
  160. data/test/info_test.rb +325 -0
  161. data/test/irb_test.rb +81 -0
  162. data/test/jump_test.rb +70 -0
  163. data/test/kill_test.rb +47 -0
  164. data/test/list_test.rb +145 -0
  165. data/test/method_test.rb +70 -0
  166. data/test/post_mortem_test.rb +25 -0
  167. data/test/quit_test.rb +55 -0
  168. data/test/reload_test.rb +43 -0
  169. data/test/restart_test.rb +143 -0
  170. data/test/save_test.rb +92 -0
  171. data/test/set_test.rb +177 -0
  172. data/test/show_test.rb +292 -0
  173. data/test/source_test.rb +44 -0
  174. data/test/stepping_test.rb +118 -0
  175. data/test/support/breakpoint.rb +12 -0
  176. data/test/support/context.rb +14 -0
  177. data/test/support/matchers.rb +67 -0
  178. data/test/support/mocha_extensions.rb +71 -0
  179. data/test/support/processor.rb +7 -0
  180. data/test/support/test_dsl.rb +205 -0
  181. data/test/support/test_interface.rb +66 -0
  182. data/test/test_helper.rb +8 -0
  183. data/test/thread_test.rb +122 -0
  184. data/test/tmate_test.rb +43 -0
  185. data/test/trace_test.rb +154 -0
  186. data/test/variables_test.rb +114 -0
  187. metadata +352 -0
metadata ADDED
@@ -0,0 +1,352 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: needy_debugger
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 1.4.0
6
+ platform: ruby
7
+ authors:
8
+ - Kent Sibilev
9
+ - Mark Moseley
10
+ - Gabriel Horner
11
+ - Mark Burns
12
+ autorequire:
13
+ bindir: bin
14
+ cert_chain: []
15
+ date: 2013-03-07 00:00:00.000000000 Z
16
+ dependencies:
17
+ - !ruby/object:Gem::Dependency
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: 0.3.1
23
+ none: false
24
+ name: columnize
25
+ type: :runtime
26
+ prerelease: false
27
+ requirement: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ! '>='
30
+ - !ruby/object:Gem::Version
31
+ version: 0.3.1
32
+ none: false
33
+ - !ruby/object:Gem::Dependency
34
+ version_requirements: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ~>
37
+ - !ruby/object:Gem::Version
38
+ version: 1.2.0
39
+ none: false
40
+ name: debugger-ruby_core_source
41
+ type: :runtime
42
+ prerelease: false
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: 1.2.0
48
+ none: false
49
+ - !ruby/object:Gem::Dependency
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: 1.1.1
55
+ none: false
56
+ name: debugger-linecache
57
+ type: :runtime
58
+ prerelease: false
59
+ requirement: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ~>
62
+ - !ruby/object:Gem::Version
63
+ version: 1.1.1
64
+ none: false
65
+ - !ruby/object:Gem::Dependency
66
+ version_requirements: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ~>
69
+ - !ruby/object:Gem::Version
70
+ version: 0.9.2.2
71
+ none: false
72
+ name: rake
73
+ type: :development
74
+ prerelease: false
75
+ requirement: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ~>
78
+ - !ruby/object:Gem::Version
79
+ version: 0.9.2.2
80
+ none: false
81
+ - !ruby/object:Gem::Dependency
82
+ version_requirements: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ~>
85
+ - !ruby/object:Gem::Version
86
+ version: 0.8.0
87
+ none: false
88
+ name: rake-compiler
89
+ type: :development
90
+ prerelease: false
91
+ requirement: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ~>
94
+ - !ruby/object:Gem::Version
95
+ version: 0.8.0
96
+ none: false
97
+ - !ruby/object:Gem::Dependency
98
+ version_requirements: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ~>
101
+ - !ruby/object:Gem::Version
102
+ version: 2.12.1
103
+ none: false
104
+ name: minitest
105
+ type: :development
106
+ prerelease: false
107
+ requirement: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ~>
110
+ - !ruby/object:Gem::Version
111
+ version: 2.12.1
112
+ none: false
113
+ - !ruby/object:Gem::Dependency
114
+ version_requirements: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ~>
117
+ - !ruby/object:Gem::Version
118
+ version: 0.13.0
119
+ none: false
120
+ name: mocha
121
+ type: :development
122
+ prerelease: false
123
+ requirement: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ~>
126
+ - !ruby/object:Gem::Version
127
+ version: 0.13.0
128
+ none: false
129
+ description: ! "needy_debugger is a less needy (or more if needs be), fast\n implementation
130
+ of the standard Ruby debugger debug.rb.\nIt is implemented by utilizing a new Ruby
131
+ C API hook. The core component\nprovides support that front-ends can build on. It
132
+ provides breakpoint\nhandling, bindings for stack frames among other things.\n"
133
+ email: markthedeveloper@gmail.com
134
+ executables:
135
+ - rdebug
136
+ extensions:
137
+ - ext/ruby_debug/extconf.rb
138
+ extra_rdoc_files:
139
+ - README.md
140
+ files:
141
+ - .gitignore
142
+ - .travis.yml
143
+ - AUTHORS
144
+ - CHANGELOG.md
145
+ - CONTRIBUTING.md
146
+ - Gemfile
147
+ - LICENSE
148
+ - OLDER_CHANGELOG
149
+ - OLD_CHANGELOG
150
+ - OLD_README
151
+ - README.md
152
+ - Rakefile
153
+ - bin/rdebug
154
+ - doc/.cvsignore
155
+ - doc/Makefile.am
156
+ - doc/emacs-notes.txt
157
+ - doc/hanoi.rb
158
+ - doc/primes.rb
159
+ - doc/rdebug-emacs.texi
160
+ - doc/ruby-debug.texi
161
+ - doc/test-tri2.rb
162
+ - doc/tri3.rb
163
+ - doc/triangle.rb
164
+ - emacs/Makefile.am
165
+ - emacs/rdebug-annotate.el
166
+ - emacs/rdebug-breaks.el
167
+ - emacs/rdebug-cmd.el
168
+ - emacs/rdebug-core.el
169
+ - emacs/rdebug-dbg.el
170
+ - emacs/rdebug-error.el
171
+ - emacs/rdebug-fns.el
172
+ - emacs/rdebug-frames.el
173
+ - emacs/rdebug-gud.el
174
+ - emacs/rdebug-help.el
175
+ - emacs/rdebug-info.el
176
+ - emacs/rdebug-layouts.el
177
+ - emacs/rdebug-locring.el
178
+ - emacs/rdebug-output.el
179
+ - emacs/rdebug-regexp.el
180
+ - emacs/rdebug-secondary.el
181
+ - emacs/rdebug-shortkey.el
182
+ - emacs/rdebug-source.el
183
+ - emacs/rdebug-track.el
184
+ - emacs/rdebug-varbuf.el
185
+ - emacs/rdebug-vars.el
186
+ - emacs/rdebug-watch.el
187
+ - emacs/rdebug.el
188
+ - emacs/test/elk-test.el
189
+ - emacs/test/test-annotate.el
190
+ - emacs/test/test-cmd.el
191
+ - emacs/test/test-core.el
192
+ - emacs/test/test-fns.el
193
+ - emacs/test/test-frames.el
194
+ - emacs/test/test-gud.el
195
+ - emacs/test/test-indent.el
196
+ - emacs/test/test-regexp.el
197
+ - emacs/test/test-shortkey.el
198
+ - ext/ruby_debug/192/breakpoint.c
199
+ - ext/ruby_debug/192/ruby_debug.c
200
+ - ext/ruby_debug/192/ruby_debug.h
201
+ - ext/ruby_debug/193/breakpoint.c
202
+ - ext/ruby_debug/193/ruby_debug.c
203
+ - ext/ruby_debug/193/ruby_debug.h
204
+ - ext/ruby_debug/200/breakpoint.c
205
+ - ext/ruby_debug/200/ruby_debug.c
206
+ - ext/ruby_debug/200/ruby_debug.h
207
+ - ext/ruby_debug/extconf.rb
208
+ - lib/debugger.rb
209
+ - lib/debugger/version.rb
210
+ - lib/ruby-debug-base.rb
211
+ - lib/ruby-debug.rb
212
+ - lib/ruby-debug/command.rb
213
+ - lib/ruby-debug/commands/breakpoints.rb
214
+ - lib/ruby-debug/commands/catchpoint.rb
215
+ - lib/ruby-debug/commands/condition.rb
216
+ - lib/ruby-debug/commands/continue.rb
217
+ - lib/ruby-debug/commands/control.rb
218
+ - lib/ruby-debug/commands/display.rb
219
+ - lib/ruby-debug/commands/edit.rb
220
+ - lib/ruby-debug/commands/enable.rb
221
+ - lib/ruby-debug/commands/eval.rb
222
+ - lib/ruby-debug/commands/finish.rb
223
+ - lib/ruby-debug/commands/frame.rb
224
+ - lib/ruby-debug/commands/help.rb
225
+ - lib/ruby-debug/commands/info.rb
226
+ - lib/ruby-debug/commands/irb.rb
227
+ - lib/ruby-debug/commands/jump.rb
228
+ - lib/ruby-debug/commands/kill.rb
229
+ - lib/ruby-debug/commands/list.rb
230
+ - lib/ruby-debug/commands/method.rb
231
+ - lib/ruby-debug/commands/quit.rb
232
+ - lib/ruby-debug/commands/reload.rb
233
+ - lib/ruby-debug/commands/save.rb
234
+ - lib/ruby-debug/commands/set.rb
235
+ - lib/ruby-debug/commands/show.rb
236
+ - lib/ruby-debug/commands/skip.rb
237
+ - lib/ruby-debug/commands/source.rb
238
+ - lib/ruby-debug/commands/stepping.rb
239
+ - lib/ruby-debug/commands/threads.rb
240
+ - lib/ruby-debug/commands/tmate.rb
241
+ - lib/ruby-debug/commands/trace.rb
242
+ - lib/ruby-debug/commands/variables.rb
243
+ - lib/ruby-debug/debugger.rb
244
+ - lib/ruby-debug/helper.rb
245
+ - lib/ruby-debug/interface.rb
246
+ - lib/ruby-debug/processor.rb
247
+ - man/rdebug.1
248
+ - needy_debugger.gemspec
249
+ - old_scripts/Makefile.am
250
+ - old_scripts/README.md
251
+ - old_scripts/autogen.sh
252
+ - old_scripts/configure.ac
253
+ - old_scripts/rdbg.rb
254
+ - old_scripts/runner.sh
255
+ - old_scripts/svn2cl_usermap
256
+ - test/.cvsignore
257
+ - test/breakpoints_test.rb
258
+ - test/conditions_test.rb
259
+ - test/continue_test.rb
260
+ - test/display_test.rb
261
+ - test/edit_test.rb
262
+ - test/eval_test.rb
263
+ - test/examples/breakpoint1.rb
264
+ - test/examples/breakpoint2.rb
265
+ - test/examples/conditions.rb
266
+ - test/examples/continue.rb
267
+ - test/examples/display.rb
268
+ - test/examples/edit.rb
269
+ - test/examples/edit2.rb
270
+ - test/examples/eval.rb
271
+ - test/examples/finish.rb
272
+ - test/examples/frame.rb
273
+ - test/examples/help.rb
274
+ - test/examples/info.rb
275
+ - test/examples/info2.rb
276
+ - test/examples/irb.rb
277
+ - test/examples/jump.rb
278
+ - test/examples/kill.rb
279
+ - test/examples/list.rb
280
+ - test/examples/method.rb
281
+ - test/examples/post_mortem.rb
282
+ - test/examples/quit.rb
283
+ - test/examples/reload.rb
284
+ - test/examples/restart.rb
285
+ - test/examples/save.rb
286
+ - test/examples/set.rb
287
+ - test/examples/set_annotate.rb
288
+ - test/examples/settings.rb
289
+ - test/examples/show.rb
290
+ - test/examples/source.rb
291
+ - test/examples/stepping.rb
292
+ - test/examples/thread.rb
293
+ - test/examples/tmate.rb
294
+ - test/examples/trace.rb
295
+ - test/examples/trace_threads.rb
296
+ - test/examples/variables.rb
297
+ - test/finish_test.rb
298
+ - test/frame_test.rb
299
+ - test/help_test.rb
300
+ - test/info_test.rb
301
+ - test/irb_test.rb
302
+ - test/jump_test.rb
303
+ - test/kill_test.rb
304
+ - test/list_test.rb
305
+ - test/method_test.rb
306
+ - test/post_mortem_test.rb
307
+ - test/quit_test.rb
308
+ - test/reload_test.rb
309
+ - test/restart_test.rb
310
+ - test/save_test.rb
311
+ - test/set_test.rb
312
+ - test/show_test.rb
313
+ - test/source_test.rb
314
+ - test/stepping_test.rb
315
+ - test/support/breakpoint.rb
316
+ - test/support/context.rb
317
+ - test/support/matchers.rb
318
+ - test/support/mocha_extensions.rb
319
+ - test/support/processor.rb
320
+ - test/support/test_dsl.rb
321
+ - test/support/test_interface.rb
322
+ - test/test_helper.rb
323
+ - test/thread_test.rb
324
+ - test/tmate_test.rb
325
+ - test/trace_test.rb
326
+ - test/variables_test.rb
327
+ homepage: http://github.com/markburns/needy_debugger
328
+ licenses:
329
+ - BSD
330
+ post_install_message:
331
+ rdoc_options: []
332
+ require_paths:
333
+ - lib
334
+ required_ruby_version: !ruby/object:Gem::Requirement
335
+ requirements:
336
+ - - ! '>='
337
+ - !ruby/object:Gem::Version
338
+ version: '0'
339
+ none: false
340
+ required_rubygems_version: !ruby/object:Gem::Requirement
341
+ requirements:
342
+ - - ! '>='
343
+ - !ruby/object:Gem::Version
344
+ version: 1.3.6
345
+ none: false
346
+ requirements: []
347
+ rubyforge_project:
348
+ rubygems_version: 1.8.23
349
+ signing_key:
350
+ specification_version: 3
351
+ summary: Fast Ruby debugger - base + cli
352
+ test_files: []