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.
- data/CHANGES +13 -0
- data/ChangeLog +307 -0
- data/README +15 -7
- data/Rakefile +7 -3
- data/bin/rdebug +106 -28
- data/cli/ruby-debug.rb +31 -2
- data/cli/ruby-debug/commands/breakpoints.rb +4 -0
- data/cli/ruby-debug/commands/continue.RB.save +48 -0
- data/cli/ruby-debug/commands/disassemble.RB +38 -0
- data/cli/ruby-debug/commands/frame.rb +46 -0
- data/cli/ruby-debug/commands/source.RB +44 -0
- data/cli/ruby-debug/interface.rb +1 -1
- data/rdbg.rb +0 -0
- data/test/base/base.rb +0 -0
- data/test/base/binding.rb +0 -0
- data/test/base/catchpoint.rb +0 -0
- data/test/cli/commands/catchpoint_test.rb +9 -8
- data/test/cli/commands/unit/regexp.rb +31 -0
- data/test/data/annotate.right +2 -0
- data/test/data/breakpoints.right +11 -7
- data/test/data/emacs_basic.right +7 -2
- data/test/data/finish.right +0 -12
- data/test/data/pm-bug.cmd +7 -0
- data/test/data/pm-bug.right +12 -0
- data/test/data/post-mortem.right +4 -4
- data/test/data/raise.right +3 -3
- data/test/dollar-0.rb +0 -0
- data/test/except-bug2.rb +7 -0
- data/test/gcd-dbg.rb +0 -0
- data/test/helper.rb +5 -1
- data/test/pm-base.rb +0 -0
- data/test/pm-bug.rb +3 -0
- data/test/pm.rb +0 -0
- data/test/raise.rb +0 -0
- data/test/scope-test.rb +8 -0
- data/test/tdebug.rb +10 -1
- data/test/test-annotate.rb +0 -0
- data/test/test-break-bad.rb +0 -0
- data/test/test-breakpoints.rb +0 -0
- data/test/test-catch.rb +0 -0
- data/test/test-condition.rb +0 -0
- data/test/test-ctrl.rb +0 -0
- data/test/test-display.rb +0 -0
- data/test/test-dollar-0.rb +9 -3
- data/test/test-edit.rb +0 -0
- data/test/test-emacs-basic.rb +0 -0
- data/test/test-enable.rb +0 -0
- data/test/test-finish.rb +7 -7
- data/test/test-frame.rb +1 -1
- data/test/test-help.rb +0 -0
- data/test/test-hist.rb +0 -0
- data/test/test-info-thread.rb +0 -0
- data/test/test-info-var.rb +0 -0
- data/test/test-info.rb +0 -0
- data/test/test-init.rb +0 -0
- data/test/test-list.rb +0 -0
- data/test/test-method.rb +0 -0
- data/test/test-output.rb +0 -0
- data/test/test-pm.rb +13 -0
- data/test/test-quit.rb +0 -0
- data/test/test-raise.rb +0 -0
- data/test/test-save.rb +0 -0
- data/test/test-setshow.rb +0 -0
- data/test/test-source.rb +0 -0
- data/test/test-stepping.rb +0 -0
- data/test/test-trace.rb +0 -0
- data/test/trunc-call.rb +31 -0
- data/test/tvar.rb +3 -0
- metadata +179 -177
data/test/data/finish.right
CHANGED
@@ -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,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
|
data/test/data/post-mortem.right
CHANGED
@@ -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
|
27
|
-
break
|
28
|
-
catch
|
29
|
-
condition
|
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
|
data/test/data/raise.right
CHANGED
@@ -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:
|
21
|
-
./tdebug.rb:
|
22
|
-
./tdebug.rb:
|
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
|
data/test/except-bug2.rb
ADDED
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
|
-
|
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
data/test/pm.rb
CHANGED
File without changes
|
data/test/raise.rb
CHANGED
File without changes
|
data/test/scope-test.rb
ADDED
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
|
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
|
data/test/test-annotate.rb
CHANGED
File without changes
|
data/test/test-break-bad.rb
CHANGED
File without changes
|
data/test/test-breakpoints.rb
CHANGED
File without changes
|
data/test/test-catch.rb
CHANGED
File without changes
|
data/test/test-condition.rb
CHANGED
File without changes
|
data/test/test-ctrl.rb
CHANGED
File without changes
|
data/test/test-display.rb
CHANGED
File without changes
|
data/test/test-dollar-0.rb
CHANGED
@@ -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,
|
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,
|
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,
|
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
|
data/test/test-emacs-basic.rb
CHANGED
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
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
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,
|
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],
|
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
|
data/test/test-info-thread.rb
CHANGED
File without changes
|
data/test/test-info-var.rb
CHANGED
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
|
data/test/test-stepping.rb
CHANGED
File without changes
|
data/test/test-trace.rb
CHANGED
File without changes
|
data/test/trunc-call.rb
ADDED
@@ -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
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.
|
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/
|
53
|
-
- cli/ruby-debug/commands/
|
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/
|
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/
|
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/
|
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/
|
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/
|
79
|
-
- cli/ruby-debug/
|
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/
|
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/
|
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/
|
118
|
-
- test/data/
|
119
|
-
- test/data/
|
120
|
-
- test/data/
|
121
|
-
- test/data/
|
122
|
-
- test/data/
|
123
|
-
- test/data/
|
124
|
-
- test/data/
|
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/
|
130
|
-
- test/data/
|
131
|
-
- test/data/
|
132
|
-
- test/data/
|
133
|
-
- test/data/
|
134
|
-
- test/data/
|
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/
|
137
|
-
- test/data/
|
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/
|
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/
|
147
|
-
- test/data/
|
148
|
-
- test/data/
|
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/
|
152
|
-
- test/data/
|
153
|
-
- test/data/
|
154
|
-
- test/data/
|
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/
|
157
|
-
- test/
|
158
|
-
- test/
|
159
|
-
- test/
|
160
|
-
- test/
|
161
|
-
- test/
|
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/
|
165
|
-
- test/
|
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/
|
179
|
-
- test/
|
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-
|
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-
|
189
|
-
- test/test-
|
190
|
-
- test/test-emacs-basic.rb
|
182
|
+
- test/test-init.rb
|
183
|
+
- test/test-info.rb
|
191
184
|
- test/test-enable.rb
|
192
|
-
- test/
|
185
|
+
- test/info-var-bug.rb
|
186
|
+
- test/trunc-call.rb
|
187
|
+
- test/pm.rb
|
193
188
|
- test/test-frame.rb
|
194
|
-
- test/test-
|
195
|
-
- test/test-
|
196
|
-
- test/
|
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-
|
199
|
-
- test/
|
200
|
-
- test/
|
201
|
-
- test/
|
202
|
-
- test/test-
|
203
|
-
- test/
|
204
|
-
- test/test-
|
205
|
-
- test/
|
206
|
-
- test/
|
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
|
-
|
214
|
-
|
215
|
-
post_install_message:
|
212
|
+
test_files: []
|
213
|
+
|
216
214
|
rdoc_options: []
|
217
215
|
|
218
|
-
|
219
|
-
-
|
220
|
-
|
221
|
-
|
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
|
-
|
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:
|