ruby-debug 0.10.1 → 0.10.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. data/CHANGES +7 -0
  2. data/ChangeLog +315 -278
  3. data/Rakefile +6 -6
  4. data/bin/rdebug +7 -3
  5. data/cli/ruby-debug.rb +2 -2
  6. data/cli/ruby-debug/commands/breakpoints.rb +15 -15
  7. data/cli/ruby-debug/commands/catchpoint.rb +18 -6
  8. data/cli/ruby-debug/commands/continue.rb +12 -6
  9. data/cli/ruby-debug/commands/info.rb +3 -3
  10. data/cli/ruby-debug/commands/irb.rb +2 -2
  11. data/cli/ruby-debug/commands/list.rb +1 -1
  12. data/cli/ruby-debug/commands/method.rb +44 -2
  13. data/cli/ruby-debug/commands/save.rb +16 -6
  14. data/cli/ruby-debug/commands/set.rb +11 -8
  15. data/cli/ruby-debug/commands/show.rb +28 -24
  16. data/cli/ruby-debug/commands/trace.rb +35 -11
  17. data/cli/ruby-debug/commands/variables.rb +47 -4
  18. data/cli/ruby-debug/interface.rb +28 -8
  19. data/cli/ruby-debug/processor.rb +6 -4
  20. data/rdbg.rb +0 -0
  21. data/test/base/base.rb +0 -0
  22. data/test/base/binding.rb +0 -0
  23. data/test/base/catchpoint.rb +0 -0
  24. data/test/bp_loop_issue.rb +3 -0
  25. data/test/classes.rb +11 -0
  26. data/test/cli/commands/catchpoint_test.rb +35 -0
  27. data/test/data/break_loop_bug.cmd +5 -0
  28. data/test/data/break_loop_bug.right +15 -0
  29. data/test/data/breakpoints.cmd +1 -1
  30. data/test/data/breakpoints.right +8 -12
  31. data/test/data/catch.cmd +17 -0
  32. data/test/data/catch.right +37 -0
  33. data/test/data/emacs_basic.right +2 -7
  34. data/test/data/frame.cmd +3 -0
  35. data/test/data/frame.right +4 -0
  36. data/test/data/method.cmd +10 -0
  37. data/test/data/method.right +21 -0
  38. data/test/data/methodsig.cmd +10 -0
  39. data/test/data/methodsig.right +20 -0
  40. data/test/data/output.right +0 -10
  41. data/test/data/quit.right +0 -9
  42. data/test/data/raise.right +1 -1
  43. data/test/data/save.cmd +33 -0
  44. data/test/data/save.right +59 -0
  45. data/test/data/setshow.cmd +13 -0
  46. data/test/data/setshow.right +25 -0
  47. data/test/dollar-0.rb +0 -0
  48. data/test/gcd-dbg.rb +0 -0
  49. data/test/helper.rb +24 -2
  50. data/test/pm-base.rb +0 -0
  51. data/test/pm.rb +0 -0
  52. data/test/raise.rb +0 -0
  53. data/test/tdebug.rb +5 -6
  54. data/test/test-annotate.rb +0 -0
  55. data/test/test-break-bad.rb +11 -0
  56. data/test/test-breakpoints.rb +0 -0
  57. data/test/test-catch.rb +25 -0
  58. data/test/test-condition.rb +0 -0
  59. data/test/test-ctrl.rb +0 -0
  60. data/test/test-display.rb +0 -0
  61. data/test/test-dollar-0.rb +0 -0
  62. data/test/test-edit.rb +0 -0
  63. data/test/test-emacs-basic.rb +2 -2
  64. data/test/test-enable.rb +0 -0
  65. data/test/test-finish.rb +0 -0
  66. data/test/test-frame.rb +11 -3
  67. data/test/test-help.rb +0 -0
  68. data/test/test-hist.rb +0 -0
  69. data/test/test-info-thread.rb +0 -0
  70. data/test/test-info-var.rb +0 -0
  71. data/test/test-info.rb +0 -0
  72. data/test/test-init.rb +3 -1
  73. data/test/test-list.rb +0 -0
  74. data/test/test-method.rb +34 -0
  75. data/test/test-output.rb +0 -0
  76. data/test/test-pm.rb +0 -0
  77. data/test/test-quit.rb +0 -0
  78. data/test/test-raise.rb +0 -0
  79. data/test/test-save.rb +25 -0
  80. data/test/test-setshow.rb +0 -0
  81. data/test/test-source.rb +0 -0
  82. data/test/test-stepping.rb +0 -0
  83. data/test/test-trace.rb +0 -0
  84. metadata +178 -155
  85. data/cli/ruby-debug/commands/disassemble.RB +0 -38
  86. data/test/except-bug2.rb +0 -7
File without changes
@@ -22,4 +22,15 @@ class TestBadBreak < Test::Unit::TestCase
22
22
  "--script #{script} -- gcd.rb 3 5"))
23
23
  end
24
24
  end
25
+
26
+ def test_break_loop
27
+ testname='break_loop_bug'
28
+ Dir.chdir(@@SRC_DIR) do
29
+ script = File.join('data', testname + '.cmd')
30
+ assert_equal(true,
31
+ run_debugger(testname,
32
+ "--script #{script} -- bp_loop_issue.rb"))
33
+ end
34
+ end
35
+
25
36
  end
File without changes
@@ -0,0 +1,25 @@
1
+ #!/usr/bin/env ruby
2
+ require 'test/unit'
3
+
4
+ # begin require 'rubygems' rescue LoadError end
5
+ # require 'ruby-debug'; Debugger.start
6
+
7
+ # Test condition command
8
+ class TestBreakpoints < Test::Unit::TestCase
9
+
10
+ @@SRC_DIR = File.dirname(__FILE__) unless
11
+ defined?(@@SRC_DIR)
12
+
13
+ require File.join(@@SRC_DIR, 'helper')
14
+ include TestHelper
15
+
16
+ def test_basic
17
+ testname='catch'
18
+ Dir.chdir(@@SRC_DIR) do
19
+ script = File.join('data', testname + '.cmd')
20
+ assert_equal(true,
21
+ run_debugger(testname,
22
+ "--script #{script} -- pm.rb"))
23
+ end
24
+ end
25
+ end
File without changes
data/test/test-ctrl.rb CHANGED
File without changes
data/test/test-display.rb CHANGED
File without changes
File without changes
data/test/test-edit.rb CHANGED
File without changes
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'test/unit'
3
3
 
4
- # begin require 'rubygems' rescue LoadError end
5
- # require 'ruby-debug'; Debugger.start
4
+ # require 'rubygems'
5
+ # require 'ruby-debug'; Debugger.start(:post_mortem => true)
6
6
 
7
7
  # Test the --emacs-basic option.
8
8
  class TestEmacsBasic < Test::Unit::TestCase
data/test/test-enable.rb CHANGED
File without changes
data/test/test-finish.rb CHANGED
File without changes
data/test/test-frame.rb CHANGED
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'test/unit'
3
3
 
4
- # begin require 'rubygems' rescue LoadError end
5
- # require 'ruby-debug'; Debugger.start
4
+ # require 'rubygems'
5
+ # require 'ruby-debug'; Debugger.start(:post_mortem => true)
6
6
 
7
7
  # Test frame commands
8
8
  class TestFrame < Test::Unit::TestCase
@@ -16,11 +16,19 @@ class TestFrame < Test::Unit::TestCase
16
16
  # Test commands in frame.rb
17
17
  def test_basic
18
18
  testname='frame'
19
+ # Ruby 1.8.6 and earlier have a trace-line number bug for return
20
+ # statements.
21
+ filter = Proc.new{|got_lines, correct_lines|
22
+ [got_lines[11], got_lines[11]].flatten.each do |s|
23
+ s.sub!(/in file ".*gcd.rb/, 'in file "gcd.rb')
24
+ end
25
+ }
19
26
  Dir.chdir(@@SRC_DIR) do
20
27
  script = File.join('data', testname + '.cmd')
21
28
  assert_equal(true,
22
29
  run_debugger(testname,
23
- "--script #{script} -- gcd.rb 3 5"))
30
+ "--script #{script} -- gcd.rb 3 5",
31
+ nil, filter))
24
32
  end
25
33
  end
26
34
  end
data/test/test-help.rb CHANGED
File without changes
data/test/test-hist.rb CHANGED
File without changes
File without changes
File without changes
data/test/test-info.rb CHANGED
File without changes
data/test/test-init.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'test/unit'
3
3
  require 'rbconfig'
4
+ require File.join(File.dirname(__FILE__), 'helper.rb')
4
5
 
5
6
  # begin require 'rubygems' rescue LoadError end
6
7
  # require 'ruby-debug'; Debugger.start
@@ -16,7 +17,8 @@ class TestDebuggerInit < Test::Unit::TestCase
16
17
  old_columns = ENV['COLUMNS']
17
18
  ENV['EMACS'] = nil
18
19
  ENV['COLUMNS'] = '120'
19
- IO.popen("./gcd-dbg.rb 5 >#{debugger_output}", 'w') do |pipe|
20
+ ruby = "#{TestHelper.load_ruby} #{TestHelper.load_params}"
21
+ IO.popen("#{ruby} ./gcd-dbg.rb 5 >#{debugger_output}", 'w') do |pipe|
20
22
  pipe.puts 'p Debugger::PROG_SCRIPT'
21
23
  pipe.puts 'show args'
22
24
  pipe.puts 'quit unconditionally'
data/test/test-list.rb CHANGED
File without changes
@@ -0,0 +1,34 @@
1
+ #!/usr/bin/env ruby
2
+ require 'test/unit'
3
+
4
+ # require 'rubygems'
5
+ # require 'ruby-debug'; Debugger.start(:post_mortem => true)
6
+
7
+ class TestMethod < Test::Unit::TestCase
8
+
9
+ @@SRC_DIR = File.dirname(__FILE__) unless
10
+ defined?(@@SRC_DIR)
11
+
12
+ require File.join(@@SRC_DIR, 'helper')
13
+ include TestHelper
14
+
15
+ def test_basic
16
+ testname='method'
17
+ Dir.chdir(@@SRC_DIR) do
18
+ script = File.join('data', testname + '.cmd')
19
+ assert_equal(true,
20
+ run_debugger(testname,
21
+ "--script #{script} -- classes.rb"))
22
+ begin
23
+ require 'methodsig'
24
+ testname='methodsig'
25
+ script = File.join('data', testname + '.cmd')
26
+ assert_equal(true,
27
+ run_debugger(testname,
28
+ "--script #{script} -- classes.rb"))
29
+ rescue LoadError
30
+ puts "Skipping method sig test"
31
+ end
32
+ end
33
+ end
34
+ end
data/test/test-output.rb CHANGED
File without changes
data/test/test-pm.rb CHANGED
File without changes
data/test/test-quit.rb CHANGED
File without changes
data/test/test-raise.rb CHANGED
File without changes
data/test/test-save.rb ADDED
@@ -0,0 +1,25 @@
1
+ #!/usr/bin/env ruby
2
+ require 'test/unit'
3
+
4
+ # require 'rubygems'
5
+ # require 'ruby-debug'; Debugger.start(:post_mortem =>true)
6
+
7
+ class TestSave < Test::Unit::TestCase
8
+
9
+ @@SRC_DIR = File.dirname(__FILE__) unless
10
+ defined?(@@SRC_DIR)
11
+
12
+ require File.join(@@SRC_DIR, 'helper')
13
+ include TestHelper
14
+
15
+ # Test initial variables and setting/getting state.
16
+ def test_basic
17
+ testname='save'
18
+ Dir.chdir(@@SRC_DIR) do
19
+ script = File.join('data', testname + '.cmd')
20
+ assert_equal(true,
21
+ run_debugger(testname,
22
+ "--script #{script} -- gcd.rb 3 5"))
23
+ end
24
+ end
25
+ end
data/test/test-setshow.rb CHANGED
File without changes
data/test/test-source.rb CHANGED
File without changes
File without changes
data/test/test-trace.rb CHANGED
File without changes
metadata CHANGED
@@ -1,217 +1,240 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.4
3
- specification_version: 1
4
2
  name: ruby-debug
5
3
  version: !ruby/object:Gem::Version
6
- version: 0.10.1
7
- date: 2008-04-10 00:00:00 -04:00
8
- summary: Command line interface (CLI) for ruby-debug-base
9
- require_paths:
10
- - cli
11
- email: ksibilev@yahoo.com
12
- homepage: http://rubyforge.org/projects/ruby-debug/
13
- rubyforge_project: ruby-debug
14
- description: A generic command line interface for ruby-debug.
15
- autorequire:
16
- default_executable:
17
- bindir: bin
18
- has_rdoc: true
19
- required_ruby_version: !ruby/object:Gem::Version::Requirement
20
- requirements:
21
- - - ">="
22
- - !ruby/object:Gem::Version
23
- version: 1.8.2
24
- version:
4
+ version: 0.10.2
25
5
  platform: ruby
26
- signing_key:
27
- cert_chain:
28
- post_install_message:
29
6
  authors:
30
7
  - Kent Sibilev
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-08-28 00:00:00 -04:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: columnize
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0.1"
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: ruby-debug-base
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "="
32
+ - !ruby/object:Gem::Version
33
+ version: 0.10.2
34
+ version:
35
+ description: A generic command line interface for ruby-debug.
36
+ email: ksibilev@yahoo.com
37
+ executables:
38
+ - rdebug
39
+ extensions: []
40
+
41
+ extra_rdoc_files:
42
+ - README
31
43
  files:
32
44
  - AUTHORS
33
45
  - CHANGES
34
46
  - LICENSE
35
47
  - README
36
48
  - Rakefile
37
- - cli/ruby-debug.rb
38
49
  - cli/ruby-debug
39
- - cli/ruby-debug/processor.rb
40
- - cli/ruby-debug/helper.rb
41
50
  - cli/ruby-debug/command.rb
42
- - cli/ruby-debug/debugger.rb
43
- - cli/ruby-debug/interface.rb
44
51
  - cli/ruby-debug/commands
45
- - cli/ruby-debug/commands/help.rb
46
- - cli/ruby-debug/commands/set.rb
52
+ - cli/ruby-debug/commands/breakpoints.rb
53
+ - cli/ruby-debug/commands/catchpoint.rb
47
54
  - cli/ruby-debug/commands/condition.rb
48
- - cli/ruby-debug/commands/irb.rb
49
- - cli/ruby-debug/commands/reload.rb
50
- - cli/ruby-debug/commands/list.rb
55
+ - cli/ruby-debug/commands/continue.rb
51
56
  - cli/ruby-debug/commands/control.rb
52
57
  - cli/ruby-debug/commands/display.rb
58
+ - cli/ruby-debug/commands/edit.rb
59
+ - cli/ruby-debug/commands/enable.rb
53
60
  - cli/ruby-debug/commands/eval.rb
54
61
  - cli/ruby-debug/commands/finish.rb
55
- - cli/ruby-debug/commands/stepping.rb
56
- - cli/ruby-debug/commands/threads.rb
57
62
  - cli/ruby-debug/commands/frame.rb
58
- - cli/ruby-debug/commands/catchpoint.rb
59
- - cli/ruby-debug/commands/continue.rb
60
- - cli/ruby-debug/commands/save.rb
61
- - cli/ruby-debug/commands/variables.rb
62
- - cli/ruby-debug/commands/edit.rb
63
+ - cli/ruby-debug/commands/help.rb
63
64
  - cli/ruby-debug/commands/info.rb
65
+ - cli/ruby-debug/commands/irb.rb
66
+ - cli/ruby-debug/commands/list.rb
64
67
  - cli/ruby-debug/commands/method.rb
65
- - cli/ruby-debug/commands/tmate.rb
66
- - cli/ruby-debug/commands/disassemble.RB
67
68
  - cli/ruby-debug/commands/quit.rb
68
- - cli/ruby-debug/commands/breakpoints.rb
69
+ - cli/ruby-debug/commands/reload.rb
70
+ - cli/ruby-debug/commands/save.rb
71
+ - cli/ruby-debug/commands/set.rb
69
72
  - cli/ruby-debug/commands/show.rb
70
- - cli/ruby-debug/commands/trace.rb
71
- - cli/ruby-debug/commands/enable.rb
72
73
  - cli/ruby-debug/commands/source.rb
74
+ - cli/ruby-debug/commands/stepping.rb
75
+ - cli/ruby-debug/commands/threads.rb
76
+ - cli/ruby-debug/commands/tmate.rb
77
+ - cli/ruby-debug/commands/trace.rb
78
+ - cli/ruby-debug/commands/variables.rb
79
+ - cli/ruby-debug/debugger.rb
80
+ - cli/ruby-debug/helper.rb
81
+ - cli/ruby-debug/interface.rb
82
+ - cli/ruby-debug/processor.rb
83
+ - cli/ruby-debug.rb
73
84
  - ChangeLog
74
85
  - bin/rdebug
75
86
  - doc/rdebug.1
76
- - test/data/emacs_basic.cmd
77
- - test/data/breakpoints.cmd
78
- - test/data/info.cmd
79
- - test/data/list.cmd
80
- - test/data/help.cmd
81
- - test/data/quit.cmd
87
+ - test/data/annotate.cmd
82
88
  - test/data/break_bad.cmd
83
- - test/data/display.cmd
84
- - test/data/linetrace.cmd
85
- - test/data/info-var.cmd
86
- - test/data/info-var-bug2.cmd
87
- - test/data/output.cmd
88
- - test/data/stepping.cmd
89
+ - test/data/break_loop_bug.cmd
90
+ - test/data/breakpoints.cmd
91
+ - test/data/catch.cmd
92
+ - test/data/condition.cmd
89
93
  - test/data/ctrl.cmd
90
- - test/data/raise.cmd
94
+ - test/data/display.cmd
91
95
  - test/data/edit.cmd
92
- - test/data/condition.cmd
96
+ - test/data/emacs_basic.cmd
97
+ - test/data/enable.cmd
98
+ - test/data/finish.cmd
93
99
  - test/data/frame.cmd
94
- - test/data/source.cmd
95
- - test/data/annotate.cmd
100
+ - test/data/help.cmd
96
101
  - test/data/info-thread.cmd
97
- - test/data/finish.cmd
98
- - test/data/enable.cmd
99
- - test/data/setshow.cmd
102
+ - test/data/info-var-bug2.cmd
103
+ - test/data/info-var.cmd
104
+ - test/data/info.cmd
105
+ - test/data/linetrace.cmd
106
+ - test/data/linetracep.cmd
107
+ - test/data/list.cmd
108
+ - test/data/method.cmd
109
+ - test/data/methodsig.cmd
110
+ - test/data/output.cmd
100
111
  - test/data/post-mortem-next.cmd
101
112
  - test/data/post-mortem.cmd
102
- - test/data/linetracep.cmd
103
- - test/data/stepping.right
104
- - test/data/post-mortem-next.right
105
- - test/data/info.right
106
- - test/data/emacs_basic.right
113
+ - test/data/quit.cmd
114
+ - test/data/raise.cmd
115
+ - test/data/save.cmd
116
+ - test/data/setshow.cmd
117
+ - test/data/source.cmd
118
+ - test/data/stepping.cmd
119
+ - test/data/annotate.right
120
+ - test/data/break_bad.right
121
+ - test/data/break_loop_bug.right
122
+ - test/data/breakpoints.right
123
+ - test/data/catch.right
124
+ - test/data/condition.right
107
125
  - test/data/ctrl.right
126
+ - test/data/display.right
108
127
  - test/data/dollar-0.right
109
- - test/data/trace.right
110
128
  - test/data/dollar-0a.right
111
- - test/data/setshow.right
112
- - test/data/linetracep.right
113
- - test/data/test-init-cygwin.right
114
- - test/data/raise.right
115
- - test/data/info-var.right
116
- - test/data/help.right
117
- - test/data/quit.right
118
- - test/data/frame.right
129
+ - test/data/dollar-0b.right
119
130
  - test/data/edit.right
120
- - test/data/info-var-bug2.right
131
+ - test/data/emacs_basic.right
132
+ - test/data/enable.right
121
133
  - test/data/finish.right
122
- - test/data/breakpoints.right
123
- - test/data/test-init.right
124
- - test/data/display.right
125
- - test/data/post-mortem-osx.right
134
+ - test/data/frame.right
135
+ - test/data/help.right
136
+ - test/data/history.right
126
137
  - test/data/info-thread.right
127
- - test/data/enable.right
128
- - test/data/break_bad.right
129
- - test/data/test-init-osx.right
138
+ - test/data/info-var-bug2.right
139
+ - test/data/info-var.right
140
+ - test/data/info.right
141
+ - test/data/linetrace.right
142
+ - test/data/linetracep.right
130
143
  - test/data/list.right
131
- - test/data/post-mortem.right
132
- - test/data/output.right
133
- - test/data/history.right
144
+ - test/data/method.right
145
+ - test/data/methodsig.right
134
146
  - test/data/noquit.right
135
- - test/data/linetrace.right
136
- - test/data/condition.right
137
- - test/data/annotate.right
147
+ - test/data/output.right
148
+ - test/data/post-mortem-next.right
149
+ - test/data/post-mortem-osx.right
150
+ - test/data/post-mortem.right
151
+ - test/data/quit.right
152
+ - test/data/raise.right
153
+ - test/data/save.right
154
+ - test/data/setshow.right
138
155
  - test/data/source.right
139
- - test/data/dollar-0b.right
140
- - test/test-help.rb
141
- - test/test-list.rb
142
- - test/test-stepping.rb
143
- - test/test-trace.rb
144
- - test/test-break-bad.rb
145
- - test/test-quit.rb
146
- - test/test-hist.rb
147
- - test/test-raise.rb
148
- - test/test-edit.rb
149
- - test/test-emacs-basic.rb
150
- - test/base/load.rb
156
+ - test/data/stepping.right
157
+ - test/data/test-init-cygwin.right
158
+ - test/data/test-init-osx.right
159
+ - test/data/test-init.right
160
+ - test/data/trace.right
161
+ - test/base/base.rb
151
162
  - test/base/binding.rb
152
163
  - test/base/catchpoint.rb
153
- - test/base/base.rb
164
+ - test/base/load.rb
165
+ - test/bp_loop_issue.rb
166
+ - test/classes.rb
167
+ - test/cli/commands/catchpoint_test.rb
168
+ - test/dollar-0.rb
169
+ - test/gcd-dbg-nox.rb
170
+ - test/gcd-dbg.rb
171
+ - test/gcd.rb
154
172
  - test/helper.rb
173
+ - test/info-var-bug.rb
174
+ - test/info-var-bug2.rb
175
+ - test/null.rb
176
+ - test/output.rb
155
177
  - test/pm-base.rb
156
- - test/test-info-thread.rb
157
- - test/test-dollar-0.rb
178
+ - test/pm.rb
179
+ - test/raise.rb
158
180
  - test/tdebug.rb
159
- - test/test-output.rb
181
+ - test/test-annotate.rb
182
+ - test/test-break-bad.rb
183
+ - test/test-breakpoints.rb
184
+ - test/test-catch.rb
185
+ - test/test-condition.rb
160
186
  - test/test-ctrl.rb
161
- - test/except-bug2.rb
162
- - test/thread1.rb
163
- - test/gcd.rb
164
187
  - test/test-display.rb
165
- - test/test-init.rb
166
- - test/test-info.rb
188
+ - test/test-dollar-0.rb
189
+ - test/test-edit.rb
190
+ - test/test-emacs-basic.rb
167
191
  - test/test-enable.rb
168
- - test/info-var-bug.rb
169
- - test/pm.rb
192
+ - test/test-finish.rb
170
193
  - test/test-frame.rb
171
- - test/test-annotate.rb
194
+ - test/test-help.rb
195
+ - test/test-hist.rb
196
+ - test/test-info-thread.rb
172
197
  - test/test-info-var.rb
173
- - test/test-condition.rb
174
- - test/dollar-0.rb
175
- - test/gcd-dbg.rb
176
- - test/output.rb
177
- - test/test-finish.rb
178
- - test/test-breakpoints.rb
179
- - test/raise.rb
180
- - test/null.rb
181
- - test/test-setshow.rb
182
- - test/info-var-bug2.rb
198
+ - test/test-info.rb
199
+ - test/test-init.rb
200
+ - test/test-list.rb
201
+ - test/test-method.rb
202
+ - test/test-output.rb
183
203
  - test/test-pm.rb
184
- - test/gcd-dbg-nox.rb
204
+ - test/test-quit.rb
205
+ - test/test-raise.rb
206
+ - test/test-save.rb
207
+ - test/test-setshow.rb
185
208
  - test/test-source.rb
209
+ - test/test-stepping.rb
210
+ - test/test-trace.rb
211
+ - test/thread1.rb
186
212
  - rdbg.rb
187
- test_files: []
188
-
213
+ has_rdoc: true
214
+ homepage: http://rubyforge.org/projects/ruby-debug/
215
+ post_install_message:
189
216
  rdoc_options: []
190
217
 
191
- extra_rdoc_files:
192
- - README
193
- executables:
194
- - rdebug
195
- extensions: []
196
-
218
+ require_paths:
219
+ - cli
220
+ required_ruby_version: !ruby/object:Gem::Requirement
221
+ requirements:
222
+ - - ">="
223
+ - !ruby/object:Gem::Version
224
+ version: 1.8.2
225
+ version:
226
+ required_rubygems_version: !ruby/object:Gem::Requirement
227
+ requirements:
228
+ - - ">="
229
+ - !ruby/object:Gem::Version
230
+ version: "0"
231
+ version:
197
232
  requirements: []
198
233
 
199
- dependencies:
200
- - !ruby/object:Gem::Dependency
201
- name: columnize
202
- version_requirement:
203
- version_requirements: !ruby/object:Gem::Version::Requirement
204
- requirements:
205
- - - ">="
206
- - !ruby/object:Gem::Version
207
- version: "0.1"
208
- version:
209
- - !ruby/object:Gem::Dependency
210
- name: ruby-debug-base
211
- version_requirement:
212
- version_requirements: !ruby/object:Gem::Version::Requirement
213
- requirements:
214
- - - "="
215
- - !ruby/object:Gem::Version
216
- version: 0.10.1
217
- version:
234
+ rubyforge_project: ruby-debug
235
+ rubygems_version: 1.2.0
236
+ signing_key:
237
+ specification_version: 2
238
+ summary: Command line interface (CLI) for ruby-debug-base
239
+ test_files: []
240
+