ruby-debug 0.10.2 → 0.10.3

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 (69) hide show
  1. data/CHANGES +13 -0
  2. data/ChangeLog +307 -0
  3. data/README +15 -7
  4. data/Rakefile +7 -3
  5. data/bin/rdebug +106 -28
  6. data/cli/ruby-debug.rb +31 -2
  7. data/cli/ruby-debug/commands/breakpoints.rb +4 -0
  8. data/cli/ruby-debug/commands/continue.RB.save +48 -0
  9. data/cli/ruby-debug/commands/disassemble.RB +38 -0
  10. data/cli/ruby-debug/commands/frame.rb +46 -0
  11. data/cli/ruby-debug/commands/source.RB +44 -0
  12. data/cli/ruby-debug/interface.rb +1 -1
  13. data/rdbg.rb +0 -0
  14. data/test/base/base.rb +0 -0
  15. data/test/base/binding.rb +0 -0
  16. data/test/base/catchpoint.rb +0 -0
  17. data/test/cli/commands/catchpoint_test.rb +9 -8
  18. data/test/cli/commands/unit/regexp.rb +31 -0
  19. data/test/data/annotate.right +2 -0
  20. data/test/data/breakpoints.right +11 -7
  21. data/test/data/emacs_basic.right +7 -2
  22. data/test/data/finish.right +0 -12
  23. data/test/data/pm-bug.cmd +7 -0
  24. data/test/data/pm-bug.right +12 -0
  25. data/test/data/post-mortem.right +4 -4
  26. data/test/data/raise.right +3 -3
  27. data/test/dollar-0.rb +0 -0
  28. data/test/except-bug2.rb +7 -0
  29. data/test/gcd-dbg.rb +0 -0
  30. data/test/helper.rb +5 -1
  31. data/test/pm-base.rb +0 -0
  32. data/test/pm-bug.rb +3 -0
  33. data/test/pm.rb +0 -0
  34. data/test/raise.rb +0 -0
  35. data/test/scope-test.rb +8 -0
  36. data/test/tdebug.rb +10 -1
  37. data/test/test-annotate.rb +0 -0
  38. data/test/test-break-bad.rb +0 -0
  39. data/test/test-breakpoints.rb +0 -0
  40. data/test/test-catch.rb +0 -0
  41. data/test/test-condition.rb +0 -0
  42. data/test/test-ctrl.rb +0 -0
  43. data/test/test-display.rb +0 -0
  44. data/test/test-dollar-0.rb +9 -3
  45. data/test/test-edit.rb +0 -0
  46. data/test/test-emacs-basic.rb +0 -0
  47. data/test/test-enable.rb +0 -0
  48. data/test/test-finish.rb +7 -7
  49. data/test/test-frame.rb +1 -1
  50. data/test/test-help.rb +0 -0
  51. data/test/test-hist.rb +0 -0
  52. data/test/test-info-thread.rb +0 -0
  53. data/test/test-info-var.rb +0 -0
  54. data/test/test-info.rb +0 -0
  55. data/test/test-init.rb +0 -0
  56. data/test/test-list.rb +0 -0
  57. data/test/test-method.rb +0 -0
  58. data/test/test-output.rb +0 -0
  59. data/test/test-pm.rb +13 -0
  60. data/test/test-quit.rb +0 -0
  61. data/test/test-raise.rb +0 -0
  62. data/test/test-save.rb +0 -0
  63. data/test/test-setshow.rb +0 -0
  64. data/test/test-source.rb +0 -0
  65. data/test/test-stepping.rb +0 -0
  66. data/test/test-trace.rb +0 -0
  67. data/test/trunc-call.rb +31 -0
  68. data/test/tvar.rb +3 -0
  69. metadata +179 -177
@@ -29,15 +29,3 @@ if a > b
29
29
  #2 Object.-(a#Fixnum, b#Fixnum) at line gcd.rb:15
30
30
  #3 at line gcd.rb:18
31
31
  # finish 0
32
- gcd.rb:13
33
- return a
34
- # where
35
- --> #0 Object.gcd(a#Fixnum, b#Fixnum) at line gcd.rb:13
36
- #1 Object.-(a#Fixnum, b#Fixnum) at line gcd.rb:15
37
- #2 Object.-(a#Fixnum, b#Fixnum) at line gcd.rb:15
38
- #3 at line gcd.rb:18
39
- # p a
40
- 1
41
- # p b
42
- 2
43
- # finish
@@ -0,0 +1,7 @@
1
+ # ********************************************************
2
+ # This tests the edit command
3
+ # ********************************************************
4
+ set debuggertesting on
5
+ # Tracker #22118
6
+ i v
7
+ quit
@@ -0,0 +1,12 @@
1
+ pm-bug.rb:1
2
+ a = 1
3
+ # # ********************************************************
4
+ # # This tests the edit command
5
+ # # ********************************************************
6
+ # set debuggertesting on
7
+ Currently testing the debugger is on.
8
+ # # Tracker #22118
9
+ # i v
10
+ a = nil
11
+ self = main
12
+ # quit
@@ -23,9 +23,9 @@ Exception: #<ZeroDivisionError: divided by 0>
23
23
  Type 'help <command-name>' for help on a specific command
24
24
 
25
25
  Available commands:
26
- backtrace delete edit frame list ps restart source up
27
- break disable enable help method putl save thread var
28
- catch display eval info p quit set trace where
29
- condition down exit irb pp reload show undisplay
26
+ backtrace continue down exit irb pp reload show undisplay
27
+ break delete edit frame list ps restart source up
28
+ catch disable enable help method putl save thread var
29
+ condition display eval info p quit set trace where
30
30
 
31
31
  # quit
@@ -17,9 +17,9 @@ Warning 5 is not known to be a Class
17
17
  Catch exception 5.
18
18
  # step
19
19
  ./raise.rb:3
20
- ./tdebug.rb:52:in `debug_load'
21
- ./tdebug.rb:52:in `debug_program'
22
- ./tdebug.rb:242
20
+ ./tdebug.rb:61:in `debug_load'
21
+ ./tdebug.rb:61:in `debug_program'
22
+ ./tdebug.rb:251
23
23
  ../rdbg.rb:23:in `load'
24
24
  ../rdbg.rb:23:in `runner'
25
25
  ../rdbg.rb:32
data/test/dollar-0.rb CHANGED
File without changes
@@ -0,0 +1,7 @@
1
+ begin
2
+ exit
3
+ sleep 20
4
+ rescue SystemExit
5
+ printf("Exception caught\n")
6
+ end
7
+ puts "You can't debug here"
data/test/gcd-dbg.rb CHANGED
File without changes
data/test/helper.rb CHANGED
@@ -42,7 +42,11 @@ module TestHelper
42
42
  end
43
43
 
44
44
  def cheap_diff(got_lines, correct_lines)
45
- puts got_lines if $DEBUG
45
+ if $DEBUG
46
+ got_lines.each_with_index do |line, i|
47
+ printf "%3d %s\n", i+1, line
48
+ end
49
+ end
46
50
  correct_lines.each_with_index do |line, i|
47
51
  correct_lines[i].chomp!
48
52
  if got_lines[i] != correct_lines[i]
data/test/pm-base.rb CHANGED
File without changes
data/test/pm-bug.rb ADDED
@@ -0,0 +1,3 @@
1
+ a = 1
2
+ @x = 2
3
+ raise
data/test/pm.rb CHANGED
File without changes
data/test/raise.rb CHANGED
File without changes
@@ -0,0 +1,8 @@
1
+ require 'rubygems'
2
+ require 'ruby-debug'
3
+ Debugger.start
4
+ 1.times do
5
+ a = 1
6
+ debugger(0)
7
+ end
8
+ y = 1
data/test/tdebug.rb CHANGED
@@ -47,8 +47,17 @@ def debug_program(options)
47
47
  else
48
48
  Debugger::PROG_SCRIPT
49
49
  end
50
- $0[0..-1] = d0
50
+ if $0.frozen?
51
+ $0 = d0
52
+ else
53
+ $0[0..-1] = d0
54
+ end
51
55
  end
56
+
57
+ # Record where we are we can know if the call stack has been
58
+ # truncated or not.
59
+ Debugger.start_sentinal=caller(0)[1]
60
+
52
61
  bt = Debugger.debug_load(Debugger::PROG_SCRIPT, !options.nostop, false)
53
62
  if bt
54
63
  if options.post_mortem
File without changes
File without changes
File without changes
data/test/test-catch.rb CHANGED
File without changes
File without changes
data/test/test-ctrl.rb CHANGED
File without changes
data/test/test-display.rb CHANGED
File without changes
@@ -18,21 +18,27 @@ class TestDollar0 < Test::Unit::TestCase
18
18
  Dir.chdir(@@SRC_DIR) do
19
19
  home_save = ENV['HOME']
20
20
  ENV['HOME'] = '.'
21
+ filter = Proc.new{|got_lines, correct_lines|
22
+ [got_lines, correct_lines].flatten.each do |s|
23
+ s.gsub!(/.*dollar-0.rb$/, 'dollar-0.rb')
24
+ end
25
+ }
26
+
21
27
  assert_equal(true,
22
28
  run_debugger('dollar-0',
23
29
  '-nx --no-stop ./dollar-0.rb',
24
- nil, nil, false, '../bin/rdebug'))
30
+ nil, filter, false, '../bin/rdebug'))
25
31
  # Ruby's __FILE__ seems to prepend ./ when no directory was added.
26
32
  assert_equal(true,
27
33
  run_debugger('dollar-0a',
28
34
  '-nx --no-stop dollar-0.rb',
29
- nil, nil, false, '../bin/rdebug'))
35
+ nil, filter, false, '../bin/rdebug'))
30
36
  # Ruby's __FILE__ seems to prepend ./ when no directory was added.
31
37
  assert_equal(true,
32
38
  run_debugger('dollar-0b',
33
39
  '-nx --no-stop ' +
34
40
  File.join('..', 'test', 'dollar-0.rb'),
35
- nil, nil, false, '../bin/rdebug'))
41
+ nil, filter, false, '../bin/rdebug'))
36
42
  ENV['HOME'] = home_save
37
43
  end
38
44
  end
data/test/test-edit.rb CHANGED
File without changes
File without changes
data/test/test-enable.rb CHANGED
File without changes
data/test/test-finish.rb CHANGED
@@ -17,18 +17,18 @@ class TestFinish < Test::Unit::TestCase
17
17
  testname='finish'
18
18
  # Ruby 1.8.6 and earlier have a trace-line number bug for return
19
19
  # statements.
20
- filter = Proc.new{|got_lines, correct_lines|
21
- [got_lines[31], got_lines[34]].flatten.each do |s|
22
- s.sub!(/gcd.rb:\d+/, 'gcd.rb:13')
23
- end
24
- got_lines[32] = 'return a'
25
- }
20
+ # filter = Proc.new{|got_lines, correct_lines|
21
+ # [got_lines[31], got_lines[34]].flatten.each do |s|
22
+ # s.sub!(/gcd.rb:\d+/, 'gcd.rb:13')
23
+ # end
24
+ # got_lines[32] = 'return a'
25
+ # }
26
26
  Dir.chdir(@@src_dir) do
27
27
  script = File.join('data', testname + '.cmd')
28
28
  assert_equal(true,
29
29
  run_debugger(testname,
30
30
  "--script #{script} -- gcd.rb 3 5",
31
- nil, filter))
31
+ nil, nil))
32
32
  end
33
33
  end
34
34
  end
data/test/test-frame.rb CHANGED
@@ -19,7 +19,7 @@ class TestFrame < Test::Unit::TestCase
19
19
  # Ruby 1.8.6 and earlier have a trace-line number bug for return
20
20
  # statements.
21
21
  filter = Proc.new{|got_lines, correct_lines|
22
- [got_lines[11], got_lines[11]].flatten.each do |s|
22
+ [got_lines[11], correct_lines[11]].flatten.each do |s|
23
23
  s.sub!(/in file ".*gcd.rb/, 'in file "gcd.rb')
24
24
  end
25
25
  }
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
File without changes
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
@@ -43,4 +43,17 @@ class TestPM < Test::Unit::TestCase
43
43
  "--script #{script} --post-mortem pm.rb"))
44
44
  end
45
45
  end
46
+
47
+ # Test Tracker #22118 post-mortem giving an error in show internal variables
48
+ def test_pm_iv_bug
49
+ Dir.chdir(@@SRC_DIR) do
50
+ ENV['COLUMNS'] = '80'
51
+ testname='pm-bug'
52
+ script = File.join('data', testname + '.cmd')
53
+ assert_equal(true,
54
+ run_debugger(testname,
55
+ "--script #{script} --post-mortem pm-bug.rb"))
56
+ end
57
+ end
58
+
46
59
  end
data/test/test-quit.rb CHANGED
File without changes
data/test/test-raise.rb CHANGED
File without changes
data/test/test-save.rb CHANGED
File without changes
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
@@ -0,0 +1,31 @@
1
+ #!/usr/bin/env ruby
2
+ # This program is used to test that 'restart' works when we didn't call
3
+ # the debugger initially.
4
+
5
+ TOP_SRC_DIR = File.join(File.expand_path(File.dirname(__FILE__), "..")) unless
6
+ defined?(TOP_SRC_DIR)
7
+
8
+ $:.unshift File.join(TOP_SRC_DIR, "ext")
9
+ $:.unshift File.join(TOP_SRC_DIR, "lib")
10
+ $:.unshift File.join(TOP_SRC_DIR, "cli")
11
+ require 'ruby-debug'
12
+
13
+ # GCD. We assume positive numbers
14
+ def gcd(a, b)
15
+ # Make: a <= b
16
+ if a > b
17
+ a, b = [b, a]
18
+ end
19
+ if a==3
20
+ Debugger.debugger
21
+ end
22
+
23
+ return nil if a <= 0
24
+
25
+ if a == 1 or b-a == 0
26
+ return a
27
+ end
28
+ return gcd(b-a, a)
29
+ end
30
+
31
+ gcd(13,8)
data/test/tvar.rb ADDED
@@ -0,0 +1,3 @@
1
+ puts $SAFE
2
+ $VERBOSE=true
3
+ $VERBOSE=false
metadata CHANGED
@@ -1,240 +1,242 @@
1
1
  --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.9.4
3
+ specification_version: 1
2
4
  name: ruby-debug
3
5
  version: !ruby/object:Gem::Version
4
- version: 0.10.2
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:
5
25
  platform: ruby
26
+ signing_key:
27
+ cert_chain:
28
+ post_install_message:
6
29
  authors:
7
30
  - 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
43
31
  files:
44
32
  - AUTHORS
45
33
  - CHANGES
46
34
  - LICENSE
47
35
  - README
48
36
  - Rakefile
37
+ - cli/ruby-debug.rb
49
38
  - cli/ruby-debug
39
+ - cli/ruby-debug/processor.rb
40
+ - cli/ruby-debug/helper.rb
50
41
  - cli/ruby-debug/command.rb
42
+ - cli/ruby-debug/debugger.rb
43
+ - cli/ruby-debug/interface.rb
51
44
  - cli/ruby-debug/commands
52
- - cli/ruby-debug/commands/breakpoints.rb
53
- - cli/ruby-debug/commands/catchpoint.rb
45
+ - cli/ruby-debug/commands/help.rb
46
+ - cli/ruby-debug/commands/set.rb
54
47
  - cli/ruby-debug/commands/condition.rb
55
- - cli/ruby-debug/commands/continue.rb
48
+ - cli/ruby-debug/commands/irb.rb
49
+ - cli/ruby-debug/commands/reload.rb
50
+ - cli/ruby-debug/commands/list.rb
56
51
  - cli/ruby-debug/commands/control.rb
57
52
  - cli/ruby-debug/commands/display.rb
58
- - cli/ruby-debug/commands/edit.rb
59
- - cli/ruby-debug/commands/enable.rb
60
53
  - cli/ruby-debug/commands/eval.rb
61
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
58
  - cli/ruby-debug/commands/frame.rb
63
- - cli/ruby-debug/commands/help.rb
59
+ - cli/ruby-debug/commands/catchpoint.rb
60
+ - cli/ruby-debug/commands/continue.rb
61
+ - cli/ruby-debug/commands/save.rb
62
+ - cli/ruby-debug/commands/variables.rb
63
+ - cli/ruby-debug/commands/edit.rb
64
64
  - cli/ruby-debug/commands/info.rb
65
- - cli/ruby-debug/commands/irb.rb
66
- - cli/ruby-debug/commands/list.rb
65
+ - cli/ruby-debug/commands/continue.RB.save
67
66
  - cli/ruby-debug/commands/method.rb
67
+ - cli/ruby-debug/commands/tmate.rb
68
+ - cli/ruby-debug/commands/disassemble.RB
68
69
  - cli/ruby-debug/commands/quit.rb
69
- - cli/ruby-debug/commands/reload.rb
70
- - cli/ruby-debug/commands/save.rb
71
- - cli/ruby-debug/commands/set.rb
70
+ - cli/ruby-debug/commands/breakpoints.rb
72
71
  - cli/ruby-debug/commands/show.rb
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
72
  - 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
+ - cli/ruby-debug/commands/enable.rb
74
+ - cli/ruby-debug/commands/source.rb
84
75
  - ChangeLog
85
76
  - bin/rdebug
86
77
  - doc/rdebug.1
87
- - test/data/annotate.cmd
88
- - test/data/break_bad.cmd
89
- - test/data/break_loop_bug.cmd
90
- - test/data/breakpoints.cmd
91
78
  - test/data/catch.cmd
92
- - test/data/condition.cmd
93
- - test/data/ctrl.cmd
94
- - test/data/display.cmd
95
- - test/data/edit.cmd
96
79
  - test/data/emacs_basic.cmd
97
- - test/data/enable.cmd
98
- - test/data/finish.cmd
99
- - test/data/frame.cmd
100
- - test/data/help.cmd
101
- - test/data/info-thread.cmd
102
- - test/data/info-var-bug2.cmd
103
- - test/data/info-var.cmd
80
+ - test/data/breakpoints.cmd
104
81
  - test/data/info.cmd
105
- - test/data/linetrace.cmd
106
- - test/data/linetracep.cmd
107
82
  - test/data/list.cmd
108
- - test/data/method.cmd
109
- - test/data/methodsig.cmd
110
- - test/data/output.cmd
111
- - test/data/post-mortem-next.cmd
112
- - test/data/post-mortem.cmd
83
+ - test/data/help.cmd
113
84
  - test/data/quit.cmd
85
+ - test/data/break_bad.cmd
86
+ - test/data/display.cmd
87
+ - test/data/linetrace.cmd
88
+ - test/data/info-var.cmd
89
+ - test/data/info-var-bug2.cmd
90
+ - test/data/output.cmd
91
+ - test/data/stepping.cmd
92
+ - test/data/ctrl.cmd
114
93
  - test/data/raise.cmd
94
+ - test/data/methodsig.cmd
95
+ - test/data/edit.cmd
96
+ - test/data/condition.cmd
97
+ - test/data/frame.cmd
98
+ - test/data/source.cmd
115
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
116
107
  - 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
108
+ - test/data/post-mortem-next.cmd
109
+ - 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
114
+ - test/data/method.right
115
+ - test/data/emacs_basic.right
125
116
  - test/data/ctrl.right
126
- - test/data/display.right
127
117
  - test/data/dollar-0.right
118
+ - test/data/trace.right
128
119
  - test/data/dollar-0a.right
129
- - test/data/dollar-0b.right
130
- - test/data/edit.right
131
- - test/data/emacs_basic.right
132
- - test/data/enable.right
133
- - test/data/finish.right
134
- - test/data/frame.right
120
+ - test/data/catch.right
121
+ - test/data/setshow.right
122
+ - test/data/linetracep.right
123
+ - test/data/test-init-cygwin.right
124
+ - test/data/raise.right
125
+ - test/data/break_loop_bug.right
126
+ - test/data/info-var.right
135
127
  - test/data/help.right
136
- - test/data/history.right
137
- - test/data/info-thread.right
128
+ - test/data/quit.right
129
+ - test/data/frame.right
130
+ - test/data/edit.right
138
131
  - 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
143
- - test/data/list.right
144
- - test/data/method.right
132
+ - test/data/save.right
145
133
  - test/data/methodsig.right
146
- - test/data/noquit.right
147
- - test/data/output.right
148
- - test/data/post-mortem-next.right
134
+ - test/data/finish.right
135
+ - test/data/breakpoints.right
136
+ - test/data/test-init.right
137
+ - test/data/display.right
149
138
  - test/data/post-mortem-osx.right
139
+ - test/data/info-thread.right
140
+ - test/data/enable.right
141
+ - test/data/break_bad.right
142
+ - test/data/test-init-osx.right
143
+ - test/data/list.right
150
144
  - 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
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
155
152
  - test/data/source.right
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
153
+ - test/data/dollar-0b.right
154
+ - test/test-help.rb
155
+ - test/test-list.rb
156
+ - test/test-stepping.rb
157
+ - 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
163
+ - test/test-emacs-basic.rb
164
+ - test/base/load.rb
162
165
  - test/base/binding.rb
163
166
  - test/base/catchpoint.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
167
+ - test/base/base.rb
168
+ - test/test-method.rb
172
169
  - test/helper.rb
173
- - test/info-var-bug.rb
174
- - test/info-var-bug2.rb
175
- - test/null.rb
176
- - test/output.rb
177
170
  - test/pm-base.rb
178
- - test/pm.rb
179
- - test/raise.rb
171
+ - test/test-info-thread.rb
172
+ - test/scope-test.rb
173
+ - test/test-dollar-0.rb
180
174
  - test/tdebug.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
175
+ - test/test-output.rb
186
176
  - test/test-ctrl.rb
177
+ - test/test-save.rb
178
+ - test/except-bug2.rb
179
+ - test/thread1.rb
180
+ - test/gcd.rb
187
181
  - test/test-display.rb
188
- - test/test-dollar-0.rb
189
- - test/test-edit.rb
190
- - test/test-emacs-basic.rb
182
+ - test/test-init.rb
183
+ - test/test-info.rb
191
184
  - test/test-enable.rb
192
- - test/test-finish.rb
185
+ - test/info-var-bug.rb
186
+ - test/trunc-call.rb
187
+ - test/pm.rb
193
188
  - test/test-frame.rb
194
- - test/test-help.rb
195
- - test/test-hist.rb
196
- - test/test-info-thread.rb
189
+ - test/test-annotate.rb
190
+ - test/test-catch.rb
191
+ - test/classes.rb
192
+ - test/pm-bug.rb
197
193
  - test/test-info-var.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
203
- - test/test-pm.rb
204
- - test/test-quit.rb
205
- - test/test-raise.rb
206
- - test/test-save.rb
194
+ - test/test-condition.rb
195
+ - test/dollar-0.rb
196
+ - test/gcd-dbg.rb
197
+ - test/output.rb
198
+ - test/test-finish.rb
199
+ - test/bp_loop_issue.rb
200
+ - test/test-breakpoints.rb
201
+ - test/raise.rb
202
+ - test/null.rb
207
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
+ - test/test-pm.rb
208
+ - test/tvar.rb
209
+ - test/gcd-dbg-nox.rb
208
210
  - test/test-source.rb
209
- - test/test-stepping.rb
210
- - test/test-trace.rb
211
- - test/thread1.rb
212
211
  - rdbg.rb
213
- has_rdoc: true
214
- homepage: http://rubyforge.org/projects/ruby-debug/
215
- post_install_message:
212
+ test_files: []
213
+
216
214
  rdoc_options: []
217
215
 
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:
232
- requirements: []
216
+ extra_rdoc_files:
217
+ - README
218
+ executables:
219
+ - rdebug
220
+ extensions: []
233
221
 
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: []
222
+ requirements: []
240
223
 
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: