ruby-debug 0.10.3 → 0.10.4
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +15 -0
- data/ChangeLog +461 -104
- data/Rakefile +69 -13
- data/VERSION +3 -0
- data/bin/rdebug +2 -1
- data/cli/ruby-debug.rb +8 -5
- data/cli/ruby-debug/command.rb +43 -4
- data/cli/ruby-debug/commands/breakpoints.rb +3 -1
- data/cli/ruby-debug/commands/catchpoint.rb +5 -3
- data/cli/ruby-debug/commands/{continue.RB.save → continue.RB} +0 -0
- data/cli/ruby-debug/commands/eval.rb +4 -1
- data/cli/ruby-debug/commands/frame.rb +11 -10
- data/cli/ruby-debug/commands/help.rb +5 -0
- data/cli/ruby-debug/commands/info.rb +6 -3
- data/cli/ruby-debug/commands/irb.rb +115 -12
- data/cli/ruby-debug/commands/kill.rb +50 -0
- data/cli/ruby-debug/commands/list.rb +3 -3
- data/cli/ruby-debug/commands/quit.rb +12 -6
- data/cli/ruby-debug/commands/raise.RB +41 -0
- data/cli/ruby-debug/commands/show.rb +26 -28
- data/cli/ruby-debug/helper.rb +5 -0
- data/cli/ruby-debug/interface.rb +53 -25
- data/cli/ruby-debug/processor.RB +484 -0
- data/cli/ruby-debug/processor.rb +140 -56
- data/rdbg.rb +0 -0
- data/runner.sh +7 -0
- data/test/base/base.rb +0 -0
- data/test/base/binding.rb +0 -0
- data/test/base/catchpoint.rb +0 -0
- data/test/base/reload_bug.rb +8 -0
- data/test/brkpt-class-bug.rb +8 -0
- data/test/cli/commands/unit/regexp.rb +11 -0
- data/test/config.yaml +8 -0
- data/test/data/annotate.cmd +1 -1
- data/test/data/annotate.right +3 -3
- data/test/data/break_bad.cmd +1 -1
- data/test/data/break_bad.right +1 -1
- data/test/data/break_loop_bug.right +1 -1
- data/test/data/breakpoints.cmd +1 -1
- data/test/data/breakpoints.right +3 -3
- data/test/data/brkpt-class-bug.cmd +9 -0
- data/test/data/brkpt-class-bug.right +18 -0
- data/test/data/catch.right +2 -0
- data/test/data/condition.cmd +1 -0
- data/test/data/condition.right +5 -3
- data/test/data/ctrl.right +2 -2
- data/test/data/display.right +1 -1
- data/test/data/emacs_basic.right +2 -2
- data/test/data/except-bug1.cmd +7 -0
- data/test/data/except-bug1.right +13 -0
- data/test/data/file-with-space.cmd +7 -0
- data/test/data/file-with-space.right +9 -0
- data/test/data/finish.right +1 -1
- data/test/data/frame.cmd +7 -1
- data/test/data/frame.right +12 -1
- data/test/data/info-var.right +1 -1
- data/test/data/info.cmd +1 -0
- data/test/data/info.right +21 -2
- data/test/data/list.right +1 -1
- data/test/data/method.right +1 -1
- data/test/data/post-mortem.right +5 -4
- data/test/data/save.right +1 -1
- data/test/data/setshow.cmd +0 -10
- data/test/data/setshow.right +0 -17
- data/test/dollar-0.rb +0 -0
- data/test/except-bug1.rb +4 -0
- data/test/file with space.rb +1 -0
- data/test/gcd-dbg.rb +0 -0
- data/test/helper.rb +7 -1
- data/test/pm-base.rb +0 -0
- data/test/pm.rb +1 -1
- data/test/raise.rb +0 -0
- data/test/rdebug-save.1 +7 -0
- data/test/tdebug.rb +2 -2
- 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-brkpt-class-bug.rb +26 -0
- data/test/test-catch.rb +1 -1
- data/test/test-condition.rb +1 -1
- data/test/test-ctrl.rb +1 -0
- data/test/test-display.rb +0 -0
- data/test/test-dollar-0.rb +0 -0
- 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-except-bug1.rb +31 -0
- data/test/test-file-with-space.rb +30 -0
- data/test/test-finish.rb +0 -0
- data/test/test-frame.rb +0 -0
- 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 +7 -1
- 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 +0 -0
- data/test/test-quit.rb +0 -0
- data/test/test-raise.rb +1 -1
- data/test/test-save.rb +7 -1
- 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
- metadata +211 -180
data/test/dollar-0.rb
CHANGED
File without changes
|
data/test/except-bug1.rb
ADDED
@@ -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
|
-
|
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
data/test/raise.rb
CHANGED
File without changes
|
data/test/rdebug-save.1
ADDED
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
|
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
|
@@ -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
data/test/test-condition.rb
CHANGED
data/test/test-ctrl.rb
CHANGED
data/test/test-display.rb
CHANGED
File without changes
|
data/test/test-dollar-0.rb
CHANGED
File without changes
|
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
|
@@ -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
|
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
@@ -1,7 +1,9 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
require 'test/unit'
|
3
3
|
require 'rbconfig'
|
4
|
-
|
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
|
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
|
data/test/test-stepping.rb
CHANGED
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.
|
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/
|
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/
|
48
|
-
- cli/ruby-debug/commands/
|
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/
|
54
|
-
- cli/ruby-debug/commands/
|
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/
|
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/
|
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/
|
71
|
-
- cli/ruby-debug/commands/
|
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/
|
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/
|
79
|
-
- test/data/
|
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/
|
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/
|
84
|
-
- test/data/
|
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/
|
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/
|
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/
|
111
|
-
- test/data/
|
112
|
-
- test/data/
|
113
|
-
- test/data/
|
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/
|
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/
|
120
|
-
- test/data/
|
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/
|
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/
|
130
|
-
- test/data/
|
131
|
-
- test/data/
|
132
|
-
- test/data/
|
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/
|
173
|
+
- test/data/setshow.right
|
174
|
+
- test/data/brkpt-class-bug.right
|
143
175
|
- test/data/list.right
|
144
|
-
- test/data/
|
145
|
-
- test/
|
146
|
-
- test/
|
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/
|
159
|
-
- test/test-
|
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/
|
165
|
-
- test/
|
166
|
-
- test/
|
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/
|
189
|
-
- test/
|
190
|
-
- test/
|
191
|
-
- test/
|
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/
|
195
|
-
- test/
|
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/
|
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/
|
209
|
-
- test/
|
210
|
-
- test/test-
|
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
|
-
|
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
|
-
|
217
|
-
-
|
218
|
-
|
219
|
-
|
220
|
-
|
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
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
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
|
+
|