ruby-debug 0.10.3 → 0.10.4

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 (108) hide show
  1. data/CHANGES +15 -0
  2. data/ChangeLog +461 -104
  3. data/Rakefile +69 -13
  4. data/VERSION +3 -0
  5. data/bin/rdebug +2 -1
  6. data/cli/ruby-debug.rb +8 -5
  7. data/cli/ruby-debug/command.rb +43 -4
  8. data/cli/ruby-debug/commands/breakpoints.rb +3 -1
  9. data/cli/ruby-debug/commands/catchpoint.rb +5 -3
  10. data/cli/ruby-debug/commands/{continue.RB.save → continue.RB} +0 -0
  11. data/cli/ruby-debug/commands/eval.rb +4 -1
  12. data/cli/ruby-debug/commands/frame.rb +11 -10
  13. data/cli/ruby-debug/commands/help.rb +5 -0
  14. data/cli/ruby-debug/commands/info.rb +6 -3
  15. data/cli/ruby-debug/commands/irb.rb +115 -12
  16. data/cli/ruby-debug/commands/kill.rb +50 -0
  17. data/cli/ruby-debug/commands/list.rb +3 -3
  18. data/cli/ruby-debug/commands/quit.rb +12 -6
  19. data/cli/ruby-debug/commands/raise.RB +41 -0
  20. data/cli/ruby-debug/commands/show.rb +26 -28
  21. data/cli/ruby-debug/helper.rb +5 -0
  22. data/cli/ruby-debug/interface.rb +53 -25
  23. data/cli/ruby-debug/processor.RB +484 -0
  24. data/cli/ruby-debug/processor.rb +140 -56
  25. data/rdbg.rb +0 -0
  26. data/runner.sh +7 -0
  27. data/test/base/base.rb +0 -0
  28. data/test/base/binding.rb +0 -0
  29. data/test/base/catchpoint.rb +0 -0
  30. data/test/base/reload_bug.rb +8 -0
  31. data/test/brkpt-class-bug.rb +8 -0
  32. data/test/cli/commands/unit/regexp.rb +11 -0
  33. data/test/config.yaml +8 -0
  34. data/test/data/annotate.cmd +1 -1
  35. data/test/data/annotate.right +3 -3
  36. data/test/data/break_bad.cmd +1 -1
  37. data/test/data/break_bad.right +1 -1
  38. data/test/data/break_loop_bug.right +1 -1
  39. data/test/data/breakpoints.cmd +1 -1
  40. data/test/data/breakpoints.right +3 -3
  41. data/test/data/brkpt-class-bug.cmd +9 -0
  42. data/test/data/brkpt-class-bug.right +18 -0
  43. data/test/data/catch.right +2 -0
  44. data/test/data/condition.cmd +1 -0
  45. data/test/data/condition.right +5 -3
  46. data/test/data/ctrl.right +2 -2
  47. data/test/data/display.right +1 -1
  48. data/test/data/emacs_basic.right +2 -2
  49. data/test/data/except-bug1.cmd +7 -0
  50. data/test/data/except-bug1.right +13 -0
  51. data/test/data/file-with-space.cmd +7 -0
  52. data/test/data/file-with-space.right +9 -0
  53. data/test/data/finish.right +1 -1
  54. data/test/data/frame.cmd +7 -1
  55. data/test/data/frame.right +12 -1
  56. data/test/data/info-var.right +1 -1
  57. data/test/data/info.cmd +1 -0
  58. data/test/data/info.right +21 -2
  59. data/test/data/list.right +1 -1
  60. data/test/data/method.right +1 -1
  61. data/test/data/post-mortem.right +5 -4
  62. data/test/data/save.right +1 -1
  63. data/test/data/setshow.cmd +0 -10
  64. data/test/data/setshow.right +0 -17
  65. data/test/dollar-0.rb +0 -0
  66. data/test/except-bug1.rb +4 -0
  67. data/test/file with space.rb +1 -0
  68. data/test/gcd-dbg.rb +0 -0
  69. data/test/helper.rb +7 -1
  70. data/test/pm-base.rb +0 -0
  71. data/test/pm.rb +1 -1
  72. data/test/raise.rb +0 -0
  73. data/test/rdebug-save.1 +7 -0
  74. data/test/tdebug.rb +2 -2
  75. data/test/test-annotate.rb +0 -0
  76. data/test/test-break-bad.rb +0 -0
  77. data/test/test-breakpoints.rb +0 -0
  78. data/test/test-brkpt-class-bug.rb +26 -0
  79. data/test/test-catch.rb +1 -1
  80. data/test/test-condition.rb +1 -1
  81. data/test/test-ctrl.rb +1 -0
  82. data/test/test-display.rb +0 -0
  83. data/test/test-dollar-0.rb +0 -0
  84. data/test/test-edit.rb +0 -0
  85. data/test/test-emacs-basic.rb +0 -0
  86. data/test/test-enable.rb +0 -0
  87. data/test/test-except-bug1.rb +31 -0
  88. data/test/test-file-with-space.rb +30 -0
  89. data/test/test-finish.rb +0 -0
  90. data/test/test-frame.rb +0 -0
  91. data/test/test-help.rb +0 -0
  92. data/test/test-hist.rb +0 -0
  93. data/test/test-info-thread.rb +0 -0
  94. data/test/test-info-var.rb +0 -0
  95. data/test/test-info.rb +0 -0
  96. data/test/test-init.rb +7 -1
  97. data/test/test-list.rb +0 -0
  98. data/test/test-method.rb +0 -0
  99. data/test/test-output.rb +0 -0
  100. data/test/test-pm.rb +0 -0
  101. data/test/test-quit.rb +0 -0
  102. data/test/test-raise.rb +1 -1
  103. data/test/test-save.rb +7 -1
  104. data/test/test-setshow.rb +0 -0
  105. data/test/test-source.rb +0 -0
  106. data/test/test-stepping.rb +0 -0
  107. data/test/test-trace.rb +0 -0
  108. metadata +211 -180
data/test/dollar-0.rb CHANGED
File without changes
@@ -0,0 +1,4 @@
1
+ def foo(n)
2
+ 1/0
3
+ end
4
+ foo(5)
@@ -0,0 +1 @@
1
+ puts 'Ha!'
data/test/gcd-dbg.rb CHANGED
File without changes
data/test/helper.rb CHANGED
@@ -22,13 +22,19 @@ module TestHelper
22
22
  end
23
23
 
24
24
  ENV['RDEBUG'] = debug_pgm
25
+ ENV['TERM'] = ''
26
+
27
+ # The EMACS environment variable(s) cause output to
28
+ # get prefaced with null which will mess up file compares.
29
+ # So turn off EMACS output processing.
30
+ ENV['EMACS'] = ENV['INSIDE_EMACS'] = nil
25
31
 
26
32
  if old_code
27
33
  cmd = "/bin/sh #{File.join('..', 'runner.sh')} #{args} >#{outfile}"
28
34
  else
29
35
  cmd = "#{"#{load_ruby} #{load_params} "}../rdbg.rb #{args} > #{outfile}"
30
36
  end
31
- # puts "'#{cmd}'"
37
+ puts "'#{cmd}'" if $DEBUG
32
38
  output = `#{cmd}`
33
39
 
34
40
  got_lines = File.read(outfile).split(/\n/)
data/test/pm-base.rb CHANGED
File without changes
data/test/pm.rb CHANGED
@@ -1,4 +1,4 @@
1
- #!/ursr/bin/env ruby
1
+ #!/usr/bin/env ruby
2
2
  # Test Debugger.catchpoint and post-mortem handling
3
3
  def zero_div
4
4
  x = 5
data/test/raise.rb CHANGED
File without changes
@@ -0,0 +1,7 @@
1
+ break gcd.rb:10
2
+ break gcd.rb:12 if a > b
3
+ set autoeval on
4
+ set basename off
5
+ set debuggertesting off
6
+ set autolist off
7
+ set autoirb off
data/test/tdebug.rb CHANGED
@@ -19,7 +19,7 @@ def debug_program(options)
19
19
  # Make sure Ruby script syntax checks okay.
20
20
  # Otherwise we get a load message that looks like rdebug has
21
21
  # a problem.
22
- output = `ruby -c #{Debugger::PROG_SCRIPT} 2>&1`
22
+ output = `ruby -c #{Debugger::PROG_SCRIPT.inspect} 2>&1`
23
23
  if $?.exitstatus != 0 and RUBY_PLATFORM !~ /mswin/
24
24
  puts output
25
25
  exit $?.exitstatus
@@ -217,7 +217,7 @@ Debugger.tracing = options.tracing
217
217
  # Make sure Ruby script syntax checks okay.
218
218
  # Otherwise we get a load message that looks like rdebug has
219
219
  # a problem.
220
- output = `ruby -c #{Debugger::PROG_SCRIPT} 2>&1`
220
+ output = `ruby -c #{Debugger::PROG_SCRIPT.inspect} 2>&1`
221
221
  if $?.exitstatus != 0 and RUBY_PLATFORM !~ /mswin/
222
222
  puts output
223
223
  exit $?.exitstatus
File without changes
File without changes
File without changes
@@ -0,0 +1,26 @@
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 (mostly) invalid breakpoint commands
8
+ class TestBrkptClassBug < 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='brkpt-class-bug'
18
+ Dir.chdir(@@SRC_DIR) do
19
+ script = File.join('data', testname + '.cmd')
20
+ assert_equal(true,
21
+ run_debugger(testname,
22
+ "--script #{script} -- brkpt-class-bug.rb"))
23
+ end
24
+ end
25
+
26
+ end
data/test/test-catch.rb CHANGED
@@ -5,7 +5,7 @@ require 'test/unit'
5
5
  # require 'ruby-debug'; Debugger.start
6
6
 
7
7
  # Test condition command
8
- class TestBreakpoints < Test::Unit::TestCase
8
+ class TestCatch < Test::Unit::TestCase
9
9
 
10
10
  @@SRC_DIR = File.dirname(__FILE__) unless
11
11
  defined?(@@SRC_DIR)
@@ -5,7 +5,7 @@ require 'test/unit'
5
5
  # require 'ruby-debug'; Debugger.start
6
6
 
7
7
  # Test condition command
8
- class TestBreakpoints < Test::Unit::TestCase
8
+ class TestCondition < Test::Unit::TestCase
9
9
 
10
10
  @@SRC_DIR = File.dirname(__FILE__) unless
11
11
  defined?(@@SRC_DIR)
data/test/test-ctrl.rb CHANGED
@@ -27,6 +27,7 @@ class TestCtrl < Test::Unit::TestCase
27
27
  puts "difference found at line #{i+1}"
28
28
  puts "got : #{got_lines[i]}"
29
29
  puts "need: #{correct_lines[i]}"
30
+ File.open(outfile, 'w') {|f| f.puts got_lines}
30
31
  return false
31
32
  end
32
33
  end
data/test/test-display.rb CHANGED
File without changes
File without changes
data/test/test-edit.rb CHANGED
File without changes
File without changes
data/test/test-enable.rb CHANGED
File without changes
@@ -0,0 +1,31 @@
1
+ #!/usr/bin/env ruby
2
+ require 'test/unit'
3
+ require 'rbconfig'
4
+
5
+ # begin require 'rubygems' rescue LoadError end
6
+ # require 'ruby-debug'; Debugger.start
7
+
8
+ # Bug in Post-mortem command was not being able to show
9
+ # variables on stack when stack stopped in a FIXNUM from 1/0.
10
+ class TestExceptBug1 < Test::Unit::TestCase
11
+
12
+ @@SRC_DIR = File.dirname(__FILE__) unless
13
+ defined?(@@SRC_DIR)
14
+
15
+ require File.join(@@SRC_DIR, 'helper')
16
+ include TestHelper
17
+
18
+ # Test post-mortem handling
19
+ def test_pm_except_bug
20
+ Dir.chdir(@@SRC_DIR) do
21
+ ENV['COLUMNS'] = '80'
22
+ testname='except-bug1'
23
+ script = File.join('data', testname + '.cmd')
24
+ assert_equal(true,
25
+ run_debugger(testname,
26
+ "--script #{script} --post-mortem " +
27
+ "#{testname}.rb"))
28
+ end
29
+ end
30
+
31
+ end
@@ -0,0 +1,30 @@
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 Running a program wiht an embedded space
8
+ class TestFileWithSpace < 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='file-with-space'
18
+ Dir.chdir(@@SRC_DIR) do
19
+ script = File.join('data', testname + '.cmd')
20
+ # filter = Proc.new{|got_lines, correct_lines|
21
+ # [got_lines[0], correct_lines[0]].each do |s|
22
+ # s.sub!(/tdebug.rb:\d+/, 'rdebug:999')
23
+ # end
24
+ # }
25
+ assert_equal(true,
26
+ run_debugger(testname,
27
+ "--script #{script} -- 'file with space.rb'"))
28
+ end
29
+ end
30
+ end
data/test/test-finish.rb CHANGED
File without changes
data/test/test-frame.rb CHANGED
File without changes
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,7 +1,9 @@
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
+ ROOT_DIR=File.dirname(__FILE__)
6
+ require File.join(ROOT_DIR, 'helper.rb')
5
7
 
6
8
  # begin require 'rubygems' rescue LoadError end
7
9
  # require 'ruby-debug'; Debugger.start
@@ -11,6 +13,10 @@ class TestDebuggerInit < Test::Unit::TestCase
11
13
  @@SRC_DIR = File.dirname(__FILE__) unless
12
14
  defined?(@@SRC_DIR)
13
15
  def test_basic
16
+ unless File.exist?(File.join(ROOT_DIR, 'ext'))
17
+ puts "Skipping test #{__FILE__}"
18
+ return
19
+ end
14
20
  debugger_output = 'test-init.out'
15
21
  Dir.chdir(@@SRC_DIR) do
16
22
  old_emacs = ENV['EMACS']
data/test/test-list.rb CHANGED
File without changes
data/test/test-method.rb CHANGED
File without changes
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
@@ -5,7 +5,7 @@ require 'test/unit'
5
5
  # require 'ruby-debug'; Debugger.start
6
6
 
7
7
  # Test Debugger.load handles uncaught exceptions in the debugged program.
8
- class TestBreakpoints < Test::Unit::TestCase
8
+ class TestRaise < Test::Unit::TestCase
9
9
 
10
10
  @@SRC_DIR = File.dirname(__FILE__) unless
11
11
  defined?(@@SRC_DIR)
data/test/test-save.rb CHANGED
@@ -15,11 +15,17 @@ class TestSave < Test::Unit::TestCase
15
15
  # Test initial variables and setting/getting state.
16
16
  def test_basic
17
17
  testname='save'
18
+ filter = Proc.new{|got_lines, correct_lines|
19
+ got_lines.each do |s|
20
+ s.sub!(/2 file .*gcd.rb/, '2 file gcd.rb')
21
+ end
22
+ }
18
23
  Dir.chdir(@@SRC_DIR) do
19
24
  script = File.join('data', testname + '.cmd')
20
25
  assert_equal(true,
21
26
  run_debugger(testname,
22
- "--script #{script} -- gcd.rb 3 5"))
27
+ "--script #{script} -- gcd.rb 3 5",
28
+ nil, filter))
23
29
  end
24
30
  end
25
31
  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,242 +1,273 @@
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.3
7
- date: 2008-11-17 00:00:00 -05: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.4
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: 2010-10-27 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.4.0
34
+ version:
35
+ description: |
36
+ A generic command line interface for ruby-debug.
37
+
38
+ email: ksibilev@yahoo.com
39
+ executables:
40
+ - rdebug
41
+ extensions: []
42
+
43
+ extra_rdoc_files:
44
+ - README
31
45
  files:
32
46
  - AUTHORS
33
47
  - CHANGES
34
48
  - LICENSE
35
49
  - README
50
+ - VERSION
36
51
  - Rakefile
37
52
  - cli/ruby-debug.rb
38
- - cli/ruby-debug
39
- - cli/ruby-debug/processor.rb
53
+ - cli/ruby-debug/processor.RB
40
54
  - cli/ruby-debug/helper.rb
41
- - cli/ruby-debug/command.rb
42
55
  - cli/ruby-debug/debugger.rb
43
- - cli/ruby-debug/interface.rb
44
- - cli/ruby-debug/commands
45
- - cli/ruby-debug/commands/help.rb
56
+ - cli/ruby-debug/commands/source.rb
46
57
  - cli/ruby-debug/commands/set.rb
47
- - cli/ruby-debug/commands/condition.rb
48
- - cli/ruby-debug/commands/irb.rb
49
- - cli/ruby-debug/commands/reload.rb
58
+ - cli/ruby-debug/commands/raise.RB
59
+ - cli/ruby-debug/commands/breakpoints.rb
50
60
  - cli/ruby-debug/commands/list.rb
51
- - cli/ruby-debug/commands/control.rb
52
61
  - cli/ruby-debug/commands/display.rb
53
- - cli/ruby-debug/commands/eval.rb
54
- - cli/ruby-debug/commands/finish.rb
55
- - cli/ruby-debug/commands/source.RB
56
- - cli/ruby-debug/commands/stepping.rb
57
- - cli/ruby-debug/commands/threads.rb
62
+ - cli/ruby-debug/commands/continue.RB
63
+ - cli/ruby-debug/commands/trace.rb
58
64
  - cli/ruby-debug/commands/frame.rb
59
- - cli/ruby-debug/commands/catchpoint.rb
60
- - cli/ruby-debug/commands/continue.rb
65
+ - cli/ruby-debug/commands/show.rb
61
66
  - cli/ruby-debug/commands/save.rb
62
67
  - cli/ruby-debug/commands/variables.rb
63
- - cli/ruby-debug/commands/edit.rb
64
- - cli/ruby-debug/commands/info.rb
65
- - cli/ruby-debug/commands/continue.RB.save
66
- - cli/ruby-debug/commands/method.rb
67
- - cli/ruby-debug/commands/tmate.rb
68
+ - cli/ruby-debug/commands/threads.rb
68
69
  - cli/ruby-debug/commands/disassemble.RB
70
+ - cli/ruby-debug/commands/irb.rb
71
+ - cli/ruby-debug/commands/tmate.rb
72
+ - cli/ruby-debug/commands/kill.rb
73
+ - cli/ruby-debug/commands/catchpoint.rb
69
74
  - cli/ruby-debug/commands/quit.rb
70
- - cli/ruby-debug/commands/breakpoints.rb
71
- - cli/ruby-debug/commands/show.rb
72
- - cli/ruby-debug/commands/trace.rb
75
+ - cli/ruby-debug/commands/method.rb
76
+ - cli/ruby-debug/commands/finish.rb
73
77
  - cli/ruby-debug/commands/enable.rb
74
- - cli/ruby-debug/commands/source.rb
78
+ - cli/ruby-debug/commands/stepping.rb
79
+ - cli/ruby-debug/commands/edit.rb
80
+ - cli/ruby-debug/commands/help.rb
81
+ - cli/ruby-debug/commands/reload.rb
82
+ - cli/ruby-debug/commands/eval.rb
83
+ - cli/ruby-debug/commands/info.rb
84
+ - cli/ruby-debug/commands/continue.rb
85
+ - cli/ruby-debug/commands/source.RB
86
+ - cli/ruby-debug/commands/control.rb
87
+ - cli/ruby-debug/commands/condition.rb
88
+ - cli/ruby-debug/interface.rb
89
+ - cli/ruby-debug/command.rb
90
+ - cli/ruby-debug/processor.rb
75
91
  - ChangeLog
76
92
  - bin/rdebug
77
93
  - doc/rdebug.1
78
- - test/data/catch.cmd
79
- - test/data/emacs_basic.cmd
94
+ - test/rdebug-save.1
95
+ - test/data/finish.cmd
96
+ - test/data/source.cmd
97
+ - test/data/enable.cmd
98
+ - test/data/ctrl.cmd
99
+ - test/data/annotate.cmd
100
+ - test/data/methodsig.cmd
80
101
  - test/data/breakpoints.cmd
81
- - test/data/info.cmd
102
+ - test/data/linetracep.cmd
103
+ - test/data/stepping.cmd
104
+ - test/data/display.cmd
105
+ - test/data/except-bug1.cmd
106
+ - test/data/info-var.cmd
107
+ - test/data/info-thread.cmd
108
+ - test/data/emacs_basic.cmd
109
+ - test/data/post-mortem-next.cmd
82
110
  - test/data/list.cmd
83
- - test/data/help.cmd
84
- - test/data/quit.cmd
111
+ - test/data/info.cmd
112
+ - test/data/setshow.cmd
113
+ - test/data/catch.cmd
85
114
  - test/data/break_bad.cmd
86
- - test/data/display.cmd
115
+ - test/data/quit.cmd
116
+ - test/data/method.cmd
117
+ - test/data/frame.cmd
118
+ - test/data/save.cmd
119
+ - test/data/raise.cmd
120
+ - test/data/break_loop_bug.cmd
87
121
  - test/data/linetrace.cmd
88
- - test/data/info-var.cmd
122
+ - test/data/edit.cmd
89
123
  - test/data/info-var-bug2.cmd
90
124
  - test/data/output.cmd
91
- - test/data/stepping.cmd
92
- - test/data/ctrl.cmd
93
- - test/data/raise.cmd
94
- - test/data/methodsig.cmd
95
- - test/data/edit.cmd
96
125
  - test/data/condition.cmd
97
- - test/data/frame.cmd
98
- - test/data/source.cmd
99
- - test/data/save.cmd
100
- - test/data/annotate.cmd
101
- - test/data/break_loop_bug.cmd
102
- - test/data/pm-bug.cmd
103
- - test/data/info-thread.cmd
104
- - test/data/finish.cmd
105
- - test/data/enable.cmd
106
- - test/data/method.cmd
107
- - test/data/setshow.cmd
108
- - test/data/post-mortem-next.cmd
109
126
  - test/data/post-mortem.cmd
110
- - test/data/linetracep.cmd
111
- - test/data/stepping.right
112
- - test/data/post-mortem-next.right
113
- - test/data/info.right
127
+ - test/data/help.cmd
128
+ - test/data/file-with-space.cmd
129
+ - test/data/pm-bug.cmd
130
+ - test/data/brkpt-class-bug.cmd
131
+ - test/data/dollar-0b.right
132
+ - test/data/catch.right
133
+ - test/data/dollar-0.right
134
+ - test/data/linetracep.right
135
+ - test/data/enable.right
114
136
  - test/data/method.right
115
- - test/data/emacs_basic.right
137
+ - test/data/save.right
138
+ - test/data/post-mortem-osx.right
139
+ - test/data/condition.right
140
+ - test/data/frame.right
141
+ - test/data/info.right
142
+ - test/data/linetrace.right
143
+ - test/data/post-mortem-next.right
144
+ - test/data/edit.right
145
+ - test/data/test-init-osx.right
146
+ - test/data/annotate.right
147
+ - test/data/test-init.right
148
+ - test/data/help.right
149
+ - test/data/post-mortem.right
150
+ - test/data/pm-bug.right
116
151
  - test/data/ctrl.right
117
- - test/data/dollar-0.right
118
152
  - test/data/trace.right
119
- - test/data/dollar-0a.right
120
- - test/data/catch.right
121
- - test/data/setshow.right
122
- - test/data/linetracep.right
153
+ - test/data/output.right
154
+ - test/data/noquit.right
123
155
  - test/data/test-init-cygwin.right
124
- - test/data/raise.right
125
- - test/data/break_loop_bug.right
126
- - test/data/info-var.right
127
- - test/data/help.right
156
+ - test/data/file-with-space.right
128
157
  - test/data/quit.right
129
- - test/data/frame.right
130
- - test/data/edit.right
131
- - test/data/info-var-bug2.right
132
- - test/data/save.right
158
+ - test/data/source.right
159
+ - test/data/info-var.right
160
+ - test/data/except-bug1.right
161
+ - test/data/info-thread.right
162
+ - test/data/emacs_basic.right
163
+ - test/data/break_loop_bug.right
164
+ - test/data/stepping.right
133
165
  - test/data/methodsig.right
166
+ - test/data/dollar-0a.right
167
+ - test/data/raise.right
168
+ - test/data/history.right
134
169
  - test/data/finish.right
170
+ - test/data/info-var-bug2.right
135
171
  - test/data/breakpoints.right
136
- - test/data/test-init.right
137
- - test/data/display.right
138
- - test/data/post-mortem-osx.right
139
- - test/data/info-thread.right
140
- - test/data/enable.right
141
172
  - test/data/break_bad.right
142
- - test/data/test-init-osx.right
173
+ - test/data/setshow.right
174
+ - test/data/brkpt-class-bug.right
143
175
  - test/data/list.right
144
- - test/data/post-mortem.right
145
- - test/data/output.right
146
- - test/data/history.right
147
- - test/data/noquit.right
148
- - test/data/linetrace.right
149
- - test/data/condition.right
150
- - test/data/annotate.right
151
- - test/data/pm-bug.right
152
- - test/data/source.right
153
- - test/data/dollar-0b.right
154
- - test/test-help.rb
155
- - test/test-list.rb
156
- - test/test-stepping.rb
176
+ - test/data/display.right
177
+ - test/config.yaml
178
+ - test/test-condition.rb
157
179
  - test/test-trace.rb
158
- - test/test-break-bad.rb
159
- - test/test-quit.rb
160
- - test/test-hist.rb
161
- - test/test-raise.rb
162
- - test/test-edit.rb
180
+ - test/null.rb
181
+ - test/test-enable.rb
163
182
  - test/test-emacs-basic.rb
164
- - test/base/load.rb
165
- - test/base/binding.rb
166
- - test/base/catchpoint.rb
167
- - test/base/base.rb
168
- - test/test-method.rb
169
- - test/helper.rb
170
- - test/pm-base.rb
171
- - test/test-info-thread.rb
172
- - test/scope-test.rb
173
- - test/test-dollar-0.rb
183
+ - test/classes.rb
184
+ - test/test-edit.rb
185
+ - test/info-var-bug.rb
174
186
  - test/tdebug.rb
175
- - test/test-output.rb
176
- - test/test-ctrl.rb
177
187
  - test/test-save.rb
178
- - test/except-bug2.rb
179
- - test/thread1.rb
180
- - test/gcd.rb
181
- - test/test-display.rb
182
- - test/test-init.rb
183
- - test/test-info.rb
184
- - test/test-enable.rb
185
- - test/info-var-bug.rb
186
- - test/trunc-call.rb
187
188
  - test/pm.rb
188
- - test/test-frame.rb
189
- - test/test-annotate.rb
190
- - test/test-catch.rb
191
- - test/classes.rb
189
+ - test/base/binding.rb
190
+ - test/base/reload_bug.rb
191
+ - test/base/catchpoint.rb
192
+ - test/base/base.rb
193
+ - test/base/load.rb
194
+ - test/cli/commands/catchpoint_test.rb
195
+ - test/cli/commands/unit/regexp.rb
192
196
  - test/pm-bug.rb
197
+ - test/raise.rb
198
+ - test/thread1.rb
199
+ - test/test-source.rb
200
+ - test/test-raise.rb
201
+ - test/brkpt-class-bug.rb
193
202
  - test/test-info-var.rb
194
- - test/test-condition.rb
195
- - test/dollar-0.rb
203
+ - test/except-bug2.rb
204
+ - test/gcd-dbg-nox.rb
205
+ - test/test-ctrl.rb
206
+ - test/helper.rb
207
+ - test/test-frame.rb
208
+ - test/test-setshow.rb
209
+ - test/trunc-call.rb
210
+ - test/test-break-bad.rb
211
+ - test/bp_loop_issue.rb
212
+ - test/test-stepping.rb
213
+ - test/gcd.rb
214
+ - test/test-output.rb
196
215
  - test/gcd-dbg.rb
197
- - test/output.rb
216
+ - test/test-dollar-0.rb
217
+ - test/test-except-bug1.rb
218
+ - test/file with space.rb
219
+ - test/info-var-bug2.rb
220
+ - test/test-file-with-space.rb
221
+ - test/test-quit.rb
222
+ - test/except-bug1.rb
223
+ - test/tvar.rb
224
+ - test/dollar-0.rb
225
+ - test/pm-base.rb
226
+ - test/test-list.rb
227
+ - test/test-info-thread.rb
198
228
  - test/test-finish.rb
199
- - test/bp_loop_issue.rb
200
229
  - test/test-breakpoints.rb
201
- - test/raise.rb
202
- - test/null.rb
203
- - test/test-setshow.rb
204
- - test/cli/commands/catchpoint_test.rb
205
- - test/cli/commands/unit/regexp.rb
206
- - test/info-var-bug2.rb
207
230
  - test/test-pm.rb
208
- - test/tvar.rb
209
- - test/gcd-dbg-nox.rb
210
- - test/test-source.rb
231
+ - test/test-help.rb
232
+ - test/test-init.rb
233
+ - test/test-method.rb
234
+ - test/test-hist.rb
235
+ - test/test-catch.rb
236
+ - test/scope-test.rb
237
+ - test/test-annotate.rb
238
+ - test/output.rb
239
+ - test/test-brkpt-class-bug.rb
240
+ - test/test-display.rb
241
+ - test/test-info.rb
211
242
  - rdbg.rb
212
- test_files: []
243
+ - runner.sh
244
+ has_rdoc: true
245
+ homepage: http://rubyforge.org/projects/ruby-debug/
246
+ licenses: []
213
247
 
248
+ post_install_message:
214
249
  rdoc_options: []
215
250
 
216
- extra_rdoc_files:
217
- - README
218
- executables:
219
- - rdebug
220
- extensions: []
221
-
251
+ require_paths:
252
+ - cli
253
+ required_ruby_version: !ruby/object:Gem::Requirement
254
+ requirements:
255
+ - - ">="
256
+ - !ruby/object:Gem::Version
257
+ version: 1.8.2
258
+ version:
259
+ required_rubygems_version: !ruby/object:Gem::Requirement
260
+ requirements:
261
+ - - ">="
262
+ - !ruby/object:Gem::Version
263
+ version: "0"
264
+ version:
222
265
  requirements: []
223
266
 
224
- dependencies:
225
- - !ruby/object:Gem::Dependency
226
- name: columnize
227
- version_requirement:
228
- version_requirements: !ruby/object:Gem::Version::Requirement
229
- requirements:
230
- - - ">="
231
- - !ruby/object:Gem::Version
232
- version: "0.1"
233
- version:
234
- - !ruby/object:Gem::Dependency
235
- name: ruby-debug-base
236
- version_requirement:
237
- version_requirements: !ruby/object:Gem::Version::Requirement
238
- requirements:
239
- - - ~>
240
- - !ruby/object:Gem::Version
241
- version: 0.10.3.0
242
- version:
267
+ rubyforge_project: ruby-debug
268
+ rubygems_version: 1.3.5
269
+ signing_key:
270
+ specification_version: 3
271
+ summary: Command line interface (CLI) for ruby-debug-base
272
+ test_files: []
273
+