debugger 1.0.0 → 1.0.1
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/CHANGELOG.md +3 -0
 - data/README.md +2 -1
 - data/Rakefile +4 -5
 - data/bin/rdebug +29 -30
 - data/lib/debugger.rb +0 -2
 - data/lib/debugger/version.rb +1 -1
 - data/lib/ruby-debug-base.rb +26 -27
 - data/{cli → lib}/ruby-debug.rb +0 -0
 - data/{cli → lib}/ruby-debug/command.rb +19 -20
 - data/{cli → lib}/ruby-debug/commands/breakpoints.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/catchpoint.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/condition.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/continue.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/control.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/display.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/edit.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/enable.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/eval.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/finish.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/frame.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/help.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/info.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/irb.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/jump.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/kill.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/list.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/method.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/quit.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/reload.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/save.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/set.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/show.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/skip.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/source.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/stepping.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/threads.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/tmate.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/trace.rb +0 -0
 - data/{cli → lib}/ruby-debug/commands/variables.rb +0 -0
 - data/{cli → lib}/ruby-debug/debugger.rb +0 -0
 - data/{cli → lib}/ruby-debug/helper.rb +0 -0
 - data/{cli → lib}/ruby-debug/interface.rb +0 -0
 - data/{cli → lib}/ruby-debug/processor.rb +0 -0
 - data/test/helper.rb +14 -16
 - data/test/{cli → lib}/commands/catchpoint_test.rb +4 -12
 - data/test/{cli → lib}/commands/unit/regexp.rb +3 -7
 - data/test/tdebug.rb +17 -18
 - data/test/test-annotate.rb +2 -3
 - data/test/test-break-bad.rb +4 -5
 - data/test/test-breakpoints.rb +2 -3
 - data/test/test-catch.rb +1 -2
 - data/test/test-catch2.rb +1 -2
 - data/test/test-catch3.rb +1 -2
 - data/test/test-condition.rb +2 -3
 - data/test/test-ctrl.rb +1 -2
 - data/test/test-display.rb +3 -4
 - data/test/test-dollar-0.rb +7 -8
 - data/test/test-edit.rb +2 -3
 - data/test/test-emacs-basic.rb +4 -5
 - data/test/test-enable.rb +2 -3
 - data/test/test-finish.rb +3 -4
 - data/test/test-frame.rb +2 -3
 - data/test/test-help.rb +6 -7
 - data/test/test-hist.rb +4 -7
 - data/test/test-info-thread.rb +2 -3
 - data/test/test-info-var.rb +3 -4
 - data/test/test-info.rb +2 -3
 - data/test/test-init.rb +1 -2
 - data/test/test-jump.rb +4 -5
 - data/test/test-list.rb +3 -4
 - data/test/test-method.rb +4 -5
 - data/test/test-next.rb +2 -3
 - data/test/test-output.rb +2 -3
 - data/test/test-quit.rb +2 -3
 - data/test/test-raise.rb +1 -2
 - data/test/test-save.rb +2 -3
 - data/test/test-scope-var.rb +2 -3
 - data/test/test-setshow.rb +2 -3
 - data/test/test-source.rb +2 -3
 - data/test/test-stepping.rb +2 -3
 - data/test/test-trace.rb +4 -5
 - data/test/thread1.rb +1 -2
 - metadata +76 -51
 
    
        data/test/test-list.rb
    CHANGED
    
    | 
         @@ -1,7 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            #!/usr/bin/env ruby
         
     | 
| 
       2 
2 
     | 
    
         
             
            require 'test/unit'
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            # begin require 'rubygems' rescue LoadError end
         
     | 
| 
       5 
4 
     | 
    
         
             
            # require 'ruby-debug'; Debugger.start
         
     | 
| 
       6 
5 
     | 
    
         | 
| 
       7 
6 
     | 
    
         
             
            # Test List commands
         
     | 
| 
         @@ -15,10 +14,10 @@ class TestList < Test::Unit::TestCase 
     | 
|
| 
       15 
14 
     | 
    
         
             
              # Test commands in list.rb
         
     | 
| 
       16 
15 
     | 
    
         
             
              def test_basic
         
     | 
| 
       17 
16 
     | 
    
         
             
                testname='list'
         
     | 
| 
       18 
     | 
    
         
            -
                Dir.chdir(@@src_dir) do 
     | 
| 
      
 17 
     | 
    
         
            +
                Dir.chdir(@@src_dir) do
         
     | 
| 
       19 
18 
     | 
    
         
             
                  script = File.join('data', testname + '.cmd')
         
     | 
| 
       20 
     | 
    
         
            -
                  assert_equal(true, 
     | 
| 
       21 
     | 
    
         
            -
                               run_debugger(testname, 
     | 
| 
      
 19 
     | 
    
         
            +
                  assert_equal(true,
         
     | 
| 
      
 20 
     | 
    
         
            +
                               run_debugger(testname,
         
     | 
| 
       22 
21 
     | 
    
         
             
                                            "--script #{script} -- ./gcd.rb 3 5"))
         
     | 
| 
       23 
22 
     | 
    
         
             
                end
         
     | 
| 
       24 
23 
     | 
    
         
             
              end
         
     | 
    
        data/test/test-method.rb
    CHANGED
    
    | 
         @@ -1,7 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            #!/usr/bin/env ruby
         
     | 
| 
       2 
2 
     | 
    
         
             
            require 'test/unit'
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            # require 'rubygems'
         
     | 
| 
       5 
4 
     | 
    
         
             
            # require 'ruby-debug'; Debugger.start(:post_mortem => true)
         
     | 
| 
       6 
5 
     | 
    
         | 
| 
       7 
6 
     | 
    
         
             
            class TestMethod < Test::Unit::TestCase
         
     | 
| 
         @@ -14,16 +13,16 @@ class TestMethod < Test::Unit::TestCase 
     | 
|
| 
       14 
13 
     | 
    
         | 
| 
       15 
14 
     | 
    
         
             
              def test_basic
         
     | 
| 
       16 
15 
     | 
    
         
             
                testname='method'
         
     | 
| 
       17 
     | 
    
         
            -
                Dir.chdir(@@SRC_DIR) do 
     | 
| 
      
 16 
     | 
    
         
            +
                Dir.chdir(@@SRC_DIR) do
         
     | 
| 
       18 
17 
     | 
    
         
             
                  script = File.join('data', testname + '.cmd')
         
     | 
| 
       19 
     | 
    
         
            -
                  assert_equal(true, 
     | 
| 
      
 18 
     | 
    
         
            +
                  assert_equal(true,
         
     | 
| 
       20 
19 
     | 
    
         
             
                               run_debugger(testname,
         
     | 
| 
       21 
20 
     | 
    
         
             
                                            "--script #{script} -- ./classes.rb"))
         
     | 
| 
       22 
     | 
    
         
            -
                  begin 
     | 
| 
      
 21 
     | 
    
         
            +
                  begin
         
     | 
| 
       23 
22 
     | 
    
         
             
                    require 'methodsig'
         
     | 
| 
       24 
23 
     | 
    
         
             
                    testname='methodsig'
         
     | 
| 
       25 
24 
     | 
    
         
             
                    script = File.join('data', testname + '.cmd')
         
     | 
| 
       26 
     | 
    
         
            -
                    assert_equal(true, 
     | 
| 
      
 25 
     | 
    
         
            +
                    assert_equal(true,
         
     | 
| 
       27 
26 
     | 
    
         
             
                                 run_debugger(testname,
         
     | 
| 
       28 
27 
     | 
    
         
             
                                              "--script #{script} -- ./classes.rb"))
         
     | 
| 
       29 
28 
     | 
    
         
             
                  rescue LoadError
         
     | 
    
        data/test/test-next.rb
    CHANGED
    
    | 
         @@ -1,7 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            #!/usr/bin/env ruby
         
     | 
| 
       2 
2 
     | 
    
         
             
            require 'test/unit'
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            # begin require 'rubygems' rescue LoadError end
         
     | 
| 
       5 
4 
     | 
    
         
             
            # require 'ruby-debug'; Debugger.start
         
     | 
| 
       6 
5 
     | 
    
         | 
| 
       7 
6 
     | 
    
         
             
            # Test next command
         
     | 
| 
         @@ -15,9 +14,9 @@ class TestNextCommand < Test::Unit::TestCase 
     | 
|
| 
       15 
14 
     | 
    
         | 
| 
       16 
15 
     | 
    
         
             
              def test_basic
         
     | 
| 
       17 
16 
     | 
    
         
             
                testname='next'
         
     | 
| 
       18 
     | 
    
         
            -
                Dir.chdir(@@SRC_DIR) do 
     | 
| 
      
 17 
     | 
    
         
            +
                Dir.chdir(@@SRC_DIR) do
         
     | 
| 
       19 
18 
     | 
    
         
             
                  script = File.join('data', testname + '.cmd')
         
     | 
| 
       20 
     | 
    
         
            -
                  assert_equal(true, 
     | 
| 
      
 19 
     | 
    
         
            +
                  assert_equal(true,
         
     | 
| 
       21 
20 
     | 
    
         
             
                               run_debugger(testname,
         
     | 
| 
       22 
21 
     | 
    
         
             
                                            "--script #{script} -- ./#{testname}.rb"))
         
     | 
| 
       23 
22 
     | 
    
         
             
                end
         
     | 
    
        data/test/test-output.rb
    CHANGED
    
    | 
         @@ -1,7 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            #!/usr/bin/env ruby
         
     | 
| 
       2 
2 
     | 
    
         
             
            require 'test/unit'
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            # begin require 'rubygems' rescue LoadError end
         
     | 
| 
       5 
4 
     | 
    
         
             
            # require 'ruby-debug'; Debugger.start
         
     | 
| 
       6 
5 
     | 
    
         | 
| 
       7 
6 
     | 
    
         
             
            # Test 'starting' annotation.
         
     | 
| 
         @@ -15,9 +14,9 @@ class TestStartingAnnotate < Test::Unit::TestCase 
     | 
|
| 
       15 
14 
     | 
    
         | 
| 
       16 
15 
     | 
    
         
             
              def test_basic
         
     | 
| 
       17 
16 
     | 
    
         
             
                testname='output'
         
     | 
| 
       18 
     | 
    
         
            -
                Dir.chdir(@@SRC_DIR) do 
     | 
| 
      
 17 
     | 
    
         
            +
                Dir.chdir(@@SRC_DIR) do
         
     | 
| 
       19 
18 
     | 
    
         
             
                  script = File.join('data', testname + '.cmd')
         
     | 
| 
       20 
     | 
    
         
            -
                  assert_equal(true, 
     | 
| 
      
 19 
     | 
    
         
            +
                  assert_equal(true,
         
     | 
| 
       21 
20 
     | 
    
         
             
                               run_debugger(testname,
         
     | 
| 
       22 
21 
     | 
    
         
             
                                            "-A 3 --script #{script} -- ./output.rb",
         
     | 
| 
       23 
22 
     | 
    
         
             
                                            nil, nil, true))
         
     | 
    
        data/test/test-quit.rb
    CHANGED
    
    | 
         @@ -1,7 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            #!/usr/bin/env ruby
         
     | 
| 
       2 
2 
     | 
    
         
             
            require 'test/unit'
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            # begin require 'rubygems' rescue LoadError end
         
     | 
| 
       5 
4 
     | 
    
         
             
            # require 'ruby-debug'; Debugger.start
         
     | 
| 
       6 
5 
     | 
    
         | 
| 
       7 
6 
     | 
    
         
             
            # Test Quit command
         
     | 
| 
         @@ -15,14 +14,14 @@ class TestQuit < Test::Unit::TestCase 
     | 
|
| 
       15 
14 
     | 
    
         | 
| 
       16 
15 
     | 
    
         
             
              def test_basic
         
     | 
| 
       17 
16 
     | 
    
         
             
                testname='quit'
         
     | 
| 
       18 
     | 
    
         
            -
                Dir.chdir(@@SRC_DIR) do 
     | 
| 
      
 17 
     | 
    
         
            +
                Dir.chdir(@@SRC_DIR) do
         
     | 
| 
       19 
18 
     | 
    
         
             
                  script = File.join('data', testname + '.cmd')
         
     | 
| 
       20 
19 
     | 
    
         
             
            #       filter = Proc.new{|got_lines, correct_lines|
         
     | 
| 
       21 
20 
     | 
    
         
             
            #         [got_lines[0], correct_lines[0]].each do |s|
         
     | 
| 
       22 
21 
     | 
    
         
             
            #           s.sub!(/tdebug.rb:\d+/, 'rdebug:999')
         
     | 
| 
       23 
22 
     | 
    
         
             
            #         end
         
     | 
| 
       24 
23 
     | 
    
         
             
            #       }
         
     | 
| 
       25 
     | 
    
         
            -
                  assert_equal(true, 
     | 
| 
      
 24 
     | 
    
         
            +
                  assert_equal(true,
         
     | 
| 
       26 
25 
     | 
    
         
             
                               run_debugger(testname,
         
     | 
| 
       27 
26 
     | 
    
         
             
                                            "--script #{script} -- ./null.rb"))
         
     | 
| 
       28 
27 
     | 
    
         
             
                end
         
     | 
    
        data/test/test-raise.rb
    CHANGED
    
    | 
         @@ -1,7 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            #!/usr/bin/env ruby
         
     | 
| 
       2 
2 
     | 
    
         
             
            require 'test/unit'
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            # begin require 'rubygems' rescue LoadError end
         
     | 
| 
       5 
4 
     | 
    
         
             
            # require 'ruby-debug'; Debugger.start
         
     | 
| 
       6 
5 
     | 
    
         | 
| 
       7 
6 
     | 
    
         
             
            # Test Debugger.load handles uncaught exceptions in the debugged program.
         
     | 
| 
         @@ -15,7 +14,7 @@ class TestRaise < Test::Unit::TestCase 
     | 
|
| 
       15 
14 
     | 
    
         | 
| 
       16 
15 
     | 
    
         
             
              def test_basic
         
     | 
| 
       17 
16 
     | 
    
         
             
                testname='raise'
         
     | 
| 
       18 
     | 
    
         
            -
                Dir.chdir(@@SRC_DIR) do 
     | 
| 
      
 17 
     | 
    
         
            +
                Dir.chdir(@@SRC_DIR) do
         
     | 
| 
       19 
18 
     | 
    
         
             
                  script = File.join('data', testname + '.cmd')
         
     | 
| 
       20 
19 
     | 
    
         
             
                  assert_equal(true,
         
     | 
| 
       21 
20 
     | 
    
         
             
                               run_debugger(testname,
         
     | 
    
        data/test/test-save.rb
    CHANGED
    
    | 
         @@ -1,7 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            #!/usr/bin/env ruby
         
     | 
| 
       2 
2 
     | 
    
         
             
            require 'test/unit'
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            # require 'rubygems' 
         
     | 
| 
       5 
4 
     | 
    
         
             
            # require 'ruby-debug'; Debugger.start(:post_mortem =>true)
         
     | 
| 
       6 
5 
     | 
    
         | 
| 
       7 
6 
     | 
    
         
             
            class TestSave < Test::Unit::TestCase
         
     | 
| 
         @@ -20,9 +19,9 @@ class TestSave < Test::Unit::TestCase 
     | 
|
| 
       20 
19 
     | 
    
         
             
                     s.sub!(/2 file .*gcd.rb/, '2 file gcd.rb')
         
     | 
| 
       21 
20 
     | 
    
         
             
                   end
         
     | 
| 
       22 
21 
     | 
    
         
             
                 }
         
     | 
| 
       23 
     | 
    
         
            -
                Dir.chdir(@@SRC_DIR) do 
     | 
| 
      
 22 
     | 
    
         
            +
                Dir.chdir(@@SRC_DIR) do
         
     | 
| 
       24 
23 
     | 
    
         
             
                  script = File.join('data', testname + '.cmd')
         
     | 
| 
       25 
     | 
    
         
            -
                  assert_equal(true, 
     | 
| 
      
 24 
     | 
    
         
            +
                  assert_equal(true,
         
     | 
| 
       26 
25 
     | 
    
         
             
                               run_debugger(testname,
         
     | 
| 
       27 
26 
     | 
    
         
             
                                            "--script #{script} -- ./gcd.rb 3 5",
         
     | 
| 
       28 
27 
     | 
    
         
             
                                            nil, filter))
         
     | 
    
        data/test/test-scope-var.rb
    CHANGED
    
    | 
         @@ -1,7 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            #!/usr/bin/env ruby
         
     | 
| 
       2 
2 
     | 
    
         
             
            require 'test/unit'
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            # begin require 'rubygems' rescue LoadError end
         
     | 
| 
       5 
4 
     | 
    
         
             
            # require 'ruby-debug'; Debugger.start
         
     | 
| 
       6 
5 
     | 
    
         | 
| 
       7 
6 
     | 
    
         
             
            # Test variable scope
         
     | 
| 
         @@ -15,9 +14,9 @@ class TestScopeVar < Test::Unit::TestCase 
     | 
|
| 
       15 
14 
     | 
    
         | 
| 
       16 
15 
     | 
    
         
             
              def test_basic
         
     | 
| 
       17 
16 
     | 
    
         
             
                testname='scope-var'
         
     | 
| 
       18 
     | 
    
         
            -
                Dir.chdir(@@SRC_DIR) do 
     | 
| 
      
 17 
     | 
    
         
            +
                Dir.chdir(@@SRC_DIR) do
         
     | 
| 
       19 
18 
     | 
    
         
             
                  script = File.join('data', testname + '.cmd')
         
     | 
| 
       20 
     | 
    
         
            -
                  assert_equal(true, 
     | 
| 
      
 19 
     | 
    
         
            +
                  assert_equal(true,
         
     | 
| 
       21 
20 
     | 
    
         
             
                               run_debugger(testname,
         
     | 
| 
       22 
21 
     | 
    
         
             
                                            "--script #{script} -- ./#{testname}.rb"))
         
     | 
| 
       23 
22 
     | 
    
         
             
                end
         
     | 
    
        data/test/test-setshow.rb
    CHANGED
    
    | 
         @@ -1,7 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            #!/usr/bin/env ruby
         
     | 
| 
       2 
2 
     | 
    
         
             
            require 'test/unit'
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            # begin require 'rubygems' rescue LoadError end
         
     | 
| 
       5 
4 
     | 
    
         
             
            # require 'ruby-debug'; Debugger.start
         
     | 
| 
       6 
5 
     | 
    
         | 
| 
       7 
6 
     | 
    
         
             
            class TestSetShow < Test::Unit::TestCase
         
     | 
| 
         @@ -15,9 +14,9 @@ class TestSetShow < Test::Unit::TestCase 
     | 
|
| 
       15 
14 
     | 
    
         
             
              # Test initial variables and setting/getting state.
         
     | 
| 
       16 
15 
     | 
    
         
             
              def test_basic
         
     | 
| 
       17 
16 
     | 
    
         
             
                testname='setshow'
         
     | 
| 
       18 
     | 
    
         
            -
                Dir.chdir(@@SRC_DIR) do 
     | 
| 
      
 17 
     | 
    
         
            +
                Dir.chdir(@@SRC_DIR) do
         
     | 
| 
       19 
18 
     | 
    
         
             
                  script = File.join('data', testname + '.cmd')
         
     | 
| 
       20 
     | 
    
         
            -
                  assert_equal(true, 
     | 
| 
      
 19 
     | 
    
         
            +
                  assert_equal(true,
         
     | 
| 
       21 
20 
     | 
    
         
             
                               run_debugger(testname,
         
     | 
| 
       22 
21 
     | 
    
         
             
                                            "--script #{script} -- ./gcd.rb 3 5"))
         
     | 
| 
       23 
22 
     | 
    
         
             
                end
         
     | 
    
        data/test/test-source.rb
    CHANGED
    
    | 
         @@ -1,7 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            #!/usr/bin/env ruby
         
     | 
| 
       2 
2 
     | 
    
         
             
            require 'test/unit'
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            # begin require 'rubygems' rescue LoadError end
         
     | 
| 
       5 
4 
     | 
    
         
             
            # require 'ruby-debug'; Debugger.start
         
     | 
| 
       6 
5 
     | 
    
         | 
| 
       7 
6 
     | 
    
         
             
            # Test 'source' command handling.
         
     | 
| 
         @@ -15,9 +14,9 @@ class TestSource < Test::Unit::TestCase 
     | 
|
| 
       15 
14 
     | 
    
         | 
| 
       16 
15 
     | 
    
         
             
              def test_basic
         
     | 
| 
       17 
16 
     | 
    
         
             
                testname='source'
         
     | 
| 
       18 
     | 
    
         
            -
                Dir.chdir(@@SRC_DIR) do 
     | 
| 
      
 17 
     | 
    
         
            +
                Dir.chdir(@@SRC_DIR) do
         
     | 
| 
       19 
18 
     | 
    
         
             
                  script = File.join('data', testname + '.cmd')
         
     | 
| 
       20 
     | 
    
         
            -
                  assert_equal(true, 
     | 
| 
      
 19 
     | 
    
         
            +
                  assert_equal(true,
         
     | 
| 
       21 
20 
     | 
    
         
             
                               run_debugger(testname,
         
     | 
| 
       22 
21 
     | 
    
         
             
                                            "--script #{script} -- ./gcd.rb 3 5"))
         
     | 
| 
       23 
22 
     | 
    
         
             
                end
         
     | 
    
        data/test/test-stepping.rb
    CHANGED
    
    | 
         @@ -1,7 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            #!/usr/bin/env ruby
         
     | 
| 
       2 
2 
     | 
    
         
             
            require 'test/unit'
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            # begin require 'rubygems' rescue LoadError end
         
     | 
| 
       5 
4 
     | 
    
         
             
            # require 'ruby-debug'; Debugger.start
         
     | 
| 
       6 
5 
     | 
    
         | 
| 
       7 
6 
     | 
    
         
             
            # Test that linetracing does something.
         
     | 
| 
         @@ -16,9 +15,9 @@ class TestStepping < Test::Unit::TestCase 
     | 
|
| 
       16 
15 
     | 
    
         
             
              # Test commands in stepping.rb
         
     | 
| 
       17 
16 
     | 
    
         
             
              def test_basic
         
     | 
| 
       18 
17 
     | 
    
         
             
                testname='stepping'
         
     | 
| 
       19 
     | 
    
         
            -
                Dir.chdir(@@SRC_DIR) do 
     | 
| 
      
 18 
     | 
    
         
            +
                Dir.chdir(@@SRC_DIR) do
         
     | 
| 
       20 
19 
     | 
    
         
             
                  script = File.join('data', testname + '.cmd')
         
     | 
| 
       21 
     | 
    
         
            -
                  assert_equal(true, 
     | 
| 
      
 20 
     | 
    
         
            +
                  assert_equal(true,
         
     | 
| 
       22 
21 
     | 
    
         
             
                               run_debugger(testname,
         
     | 
| 
       23 
22 
     | 
    
         
             
                                            "--script #{script} -- ./gcd.rb 3 5"))
         
     | 
| 
       24 
23 
     | 
    
         
             
                end
         
     | 
    
        data/test/test-trace.rb
    CHANGED
    
    | 
         @@ -1,7 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            #!/usr/bin/env ruby
         
     | 
| 
       2 
2 
     | 
    
         
             
            require 'test/unit'
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            # begin require 'rubygems' rescue LoadError end
         
     | 
| 
       5 
4 
     | 
    
         
             
            # require 'ruby-debug'; Debugger.start
         
     | 
| 
       6 
5 
     | 
    
         | 
| 
       7 
6 
     | 
    
         
             
            # Test tracing
         
     | 
| 
         @@ -20,7 +19,7 @@ class TestTrace < Test::Unit::TestCase 
     | 
|
| 
       20 
19 
     | 
    
         
             
                  }
         
     | 
| 
       21 
20 
     | 
    
         | 
| 
       22 
21 
     | 
    
         
             
                testname='trace'
         
     | 
| 
       23 
     | 
    
         
            -
                Dir.chdir(@@SRC_DIR) do 
     | 
| 
      
 22 
     | 
    
         
            +
                Dir.chdir(@@SRC_DIR) do
         
     | 
| 
       24 
23 
     | 
    
         
             
                  assert_equal(true,
         
     | 
| 
       25 
24 
     | 
    
         
             
                               run_debugger(testname,
         
     | 
| 
       26 
25 
     | 
    
         
             
                                            "-nx --trace ./gcd.rb 3 5", nil, filter))
         
     | 
| 
         @@ -34,11 +33,11 @@ class TestTrace < Test::Unit::TestCase 
     | 
|
| 
       34 
33 
     | 
    
         
             
                  }
         
     | 
| 
       35 
34 
     | 
    
         | 
| 
       36 
35 
     | 
    
         
             
                testname='linetrace'
         
     | 
| 
       37 
     | 
    
         
            -
                Dir.chdir(@@SRC_DIR) do 
     | 
| 
      
 36 
     | 
    
         
            +
                Dir.chdir(@@SRC_DIR) do
         
     | 
| 
       38 
37 
     | 
    
         
             
                  script = File.join('data', testname + '.cmd')
         
     | 
| 
       39 
     | 
    
         
            -
                  assert_equal(true, 
     | 
| 
      
 38 
     | 
    
         
            +
                  assert_equal(true,
         
     | 
| 
       40 
39 
     | 
    
         
             
                               run_debugger(testname,
         
     | 
| 
       41 
     | 
    
         
            -
                                            "--script #{script} -- ./gcd.rb 3 5", nil, 
     | 
| 
      
 40 
     | 
    
         
            +
                                            "--script #{script} -- ./gcd.rb 3 5", nil,
         
     | 
| 
       42 
41 
     | 
    
         
             
                                            filter))
         
     | 
| 
       43 
42 
     | 
    
         | 
| 
       44 
43 
     | 
    
         
             
                end
         
     | 
    
        data/test/thread1.rb
    CHANGED
    
    | 
         @@ -1,6 +1,5 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            #!/usr/bin/env ruby
         
     | 
| 
       2 
2 
     | 
    
         
             
            # Adapted from Programming Ruby 2nd Ed. p. 138
         
     | 
| 
       3 
     | 
    
         
            -
            require 'rubygems'
         
     | 
| 
       4 
3 
     | 
    
         | 
| 
       5 
4 
     | 
    
         
             
            unless defined?(Debugger)
         
     | 
| 
       6 
5 
     | 
    
         
             
              puts "This program has to be called from the debugger"
         
     | 
| 
         @@ -10,7 +9,7 @@ end 
     | 
|
| 
       10 
9 
     | 
    
         
             
            def fn(count, i)
         
     | 
| 
       11 
10 
     | 
    
         
             
              sleep(rand(0.1))
         
     | 
| 
       12 
11 
     | 
    
         
             
              if 4 == i
         
     | 
| 
       13 
     | 
    
         
            -
                debugger 
     | 
| 
      
 12 
     | 
    
         
            +
                debugger
         
     | 
| 
       14 
13 
     | 
    
         
             
              end
         
     | 
| 
       15 
14 
     | 
    
         
             
              Thread.current['mycount'] = count
         
     | 
| 
       16 
15 
     | 
    
         
             
            end
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: debugger
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 1.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.0.1
         
     | 
| 
       5 
5 
     | 
    
         
             
              prerelease: 
         
     | 
| 
       6 
6 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       7 
7 
     | 
    
         
             
            authors:
         
     | 
| 
         @@ -11,11 +11,11 @@ authors: 
     | 
|
| 
       11 
11 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       12 
12 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       13 
13 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       14 
     | 
    
         
            -
            date: 2012-04- 
     | 
| 
      
 14 
     | 
    
         
            +
            date: 2012-04-06 00:00:00.000000000Z
         
     | 
| 
       15 
15 
     | 
    
         
             
            dependencies:
         
     | 
| 
       16 
16 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       17 
17 
     | 
    
         
             
              name: columnize
         
     | 
| 
       18 
     | 
    
         
            -
              requirement:  
     | 
| 
      
 18 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       19 
19 
     | 
    
         
             
                none: false
         
     | 
| 
       20 
20 
     | 
    
         
             
                requirements:
         
     | 
| 
       21 
21 
     | 
    
         
             
                - - ! '>='
         
     | 
| 
         @@ -23,10 +23,15 @@ dependencies: 
     | 
|
| 
       23 
23 
     | 
    
         
             
                    version: 0.3.1
         
     | 
| 
       24 
24 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       25 
25 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       26 
     | 
    
         
            -
              version_requirements:  
     | 
| 
      
 26 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 27 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 28 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 29 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 30 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 31 
     | 
    
         
            +
                    version: 0.3.1
         
     | 
| 
       27 
32 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       28 
33 
     | 
    
         
             
              name: debugger-ruby_core_source
         
     | 
| 
       29 
     | 
    
         
            -
              requirement:  
     | 
| 
      
 34 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       30 
35 
     | 
    
         
             
                none: false
         
     | 
| 
       31 
36 
     | 
    
         
             
                requirements:
         
     | 
| 
       32 
37 
     | 
    
         
             
                - - ! '>='
         
     | 
| 
         @@ -34,10 +39,15 @@ dependencies: 
     | 
|
| 
       34 
39 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       35 
40 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       36 
41 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       37 
     | 
    
         
            -
              version_requirements:  
     | 
| 
      
 42 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 43 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 44 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 45 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 46 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 47 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
       38 
48 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       39 
49 
     | 
    
         
             
              name: debugger-linecache
         
     | 
| 
       40 
     | 
    
         
            -
              requirement:  
     | 
| 
      
 50 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       41 
51 
     | 
    
         
             
                none: false
         
     | 
| 
       42 
52 
     | 
    
         
             
                requirements:
         
     | 
| 
       43 
53 
     | 
    
         
             
                - - ! '>='
         
     | 
| 
         @@ -45,10 +55,15 @@ dependencies: 
     | 
|
| 
       45 
55 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       46 
56 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       47 
57 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       48 
     | 
    
         
            -
              version_requirements:  
     | 
| 
      
 58 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 59 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 60 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 61 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 62 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 63 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
       49 
64 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       50 
65 
     | 
    
         
             
              name: rake
         
     | 
| 
       51 
     | 
    
         
            -
              requirement:  
     | 
| 
      
 66 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       52 
67 
     | 
    
         
             
                none: false
         
     | 
| 
       53 
68 
     | 
    
         
             
                requirements:
         
     | 
| 
       54 
69 
     | 
    
         
             
                - - ~>
         
     | 
| 
         @@ -56,10 +71,15 @@ dependencies: 
     | 
|
| 
       56 
71 
     | 
    
         
             
                    version: 0.9.2.2
         
     | 
| 
       57 
72 
     | 
    
         
             
              type: :development
         
     | 
| 
       58 
73 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       59 
     | 
    
         
            -
              version_requirements:  
     | 
| 
      
 74 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 75 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 76 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 77 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 78 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 79 
     | 
    
         
            +
                    version: 0.9.2.2
         
     | 
| 
       60 
80 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       61 
81 
     | 
    
         
             
              name: rake-compiler
         
     | 
| 
       62 
     | 
    
         
            -
              requirement:  
     | 
| 
      
 82 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       63 
83 
     | 
    
         
             
                none: false
         
     | 
| 
       64 
84 
     | 
    
         
             
                requirements:
         
     | 
| 
       65 
85 
     | 
    
         
             
                - - ~>
         
     | 
| 
         @@ -67,7 +87,12 @@ dependencies: 
     | 
|
| 
       67 
87 
     | 
    
         
             
                    version: 0.8.0
         
     | 
| 
       68 
88 
     | 
    
         
             
              type: :development
         
     | 
| 
       69 
89 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       70 
     | 
    
         
            -
              version_requirements:  
     | 
| 
      
 90 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 91 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 92 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 93 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 94 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 95 
     | 
    
         
            +
                    version: 0.8.0
         
     | 
| 
       71 
96 
     | 
    
         
             
            description: ! 'debugger is a fast implementation of the standard Ruby debugger debug.rb.
         
     | 
| 
       72 
97 
     | 
    
         | 
| 
       73 
98 
     | 
    
         
             
              It is implemented by utilizing a new Ruby C API hook. The core component
         
     | 
| 
         @@ -97,42 +122,6 @@ files: 
     | 
|
| 
       97 
122 
     | 
    
         
             
            - Rakefile
         
     | 
| 
       98 
123 
     | 
    
         
             
            - autogen.sh
         
     | 
| 
       99 
124 
     | 
    
         
             
            - bin/rdebug
         
     | 
| 
       100 
     | 
    
         
            -
            - cli/ruby-debug.rb
         
     | 
| 
       101 
     | 
    
         
            -
            - cli/ruby-debug/command.rb
         
     | 
| 
       102 
     | 
    
         
            -
            - cli/ruby-debug/commands/breakpoints.rb
         
     | 
| 
       103 
     | 
    
         
            -
            - cli/ruby-debug/commands/catchpoint.rb
         
     | 
| 
       104 
     | 
    
         
            -
            - cli/ruby-debug/commands/condition.rb
         
     | 
| 
       105 
     | 
    
         
            -
            - cli/ruby-debug/commands/continue.rb
         
     | 
| 
       106 
     | 
    
         
            -
            - cli/ruby-debug/commands/control.rb
         
     | 
| 
       107 
     | 
    
         
            -
            - cli/ruby-debug/commands/display.rb
         
     | 
| 
       108 
     | 
    
         
            -
            - cli/ruby-debug/commands/edit.rb
         
     | 
| 
       109 
     | 
    
         
            -
            - cli/ruby-debug/commands/enable.rb
         
     | 
| 
       110 
     | 
    
         
            -
            - cli/ruby-debug/commands/eval.rb
         
     | 
| 
       111 
     | 
    
         
            -
            - cli/ruby-debug/commands/finish.rb
         
     | 
| 
       112 
     | 
    
         
            -
            - cli/ruby-debug/commands/frame.rb
         
     | 
| 
       113 
     | 
    
         
            -
            - cli/ruby-debug/commands/help.rb
         
     | 
| 
       114 
     | 
    
         
            -
            - cli/ruby-debug/commands/info.rb
         
     | 
| 
       115 
     | 
    
         
            -
            - cli/ruby-debug/commands/irb.rb
         
     | 
| 
       116 
     | 
    
         
            -
            - cli/ruby-debug/commands/jump.rb
         
     | 
| 
       117 
     | 
    
         
            -
            - cli/ruby-debug/commands/kill.rb
         
     | 
| 
       118 
     | 
    
         
            -
            - cli/ruby-debug/commands/list.rb
         
     | 
| 
       119 
     | 
    
         
            -
            - cli/ruby-debug/commands/method.rb
         
     | 
| 
       120 
     | 
    
         
            -
            - cli/ruby-debug/commands/quit.rb
         
     | 
| 
       121 
     | 
    
         
            -
            - cli/ruby-debug/commands/reload.rb
         
     | 
| 
       122 
     | 
    
         
            -
            - cli/ruby-debug/commands/save.rb
         
     | 
| 
       123 
     | 
    
         
            -
            - cli/ruby-debug/commands/set.rb
         
     | 
| 
       124 
     | 
    
         
            -
            - cli/ruby-debug/commands/show.rb
         
     | 
| 
       125 
     | 
    
         
            -
            - cli/ruby-debug/commands/skip.rb
         
     | 
| 
       126 
     | 
    
         
            -
            - cli/ruby-debug/commands/source.rb
         
     | 
| 
       127 
     | 
    
         
            -
            - cli/ruby-debug/commands/stepping.rb
         
     | 
| 
       128 
     | 
    
         
            -
            - cli/ruby-debug/commands/threads.rb
         
     | 
| 
       129 
     | 
    
         
            -
            - cli/ruby-debug/commands/tmate.rb
         
     | 
| 
       130 
     | 
    
         
            -
            - cli/ruby-debug/commands/trace.rb
         
     | 
| 
       131 
     | 
    
         
            -
            - cli/ruby-debug/commands/variables.rb
         
     | 
| 
       132 
     | 
    
         
            -
            - cli/ruby-debug/debugger.rb
         
     | 
| 
       133 
     | 
    
         
            -
            - cli/ruby-debug/helper.rb
         
     | 
| 
       134 
     | 
    
         
            -
            - cli/ruby-debug/interface.rb
         
     | 
| 
       135 
     | 
    
         
            -
            - cli/ruby-debug/processor.rb
         
     | 
| 
       136 
125 
     | 
    
         
             
            - configure.ac
         
     | 
| 
       137 
126 
     | 
    
         
             
            - debugger.gemspec
         
     | 
| 
       138 
127 
     | 
    
         
             
            - doc/.cvsignore
         
     | 
| 
         @@ -191,6 +180,42 @@ files: 
     | 
|
| 
       191 
180 
     | 
    
         
             
            - lib/debugger.rb
         
     | 
| 
       192 
181 
     | 
    
         
             
            - lib/debugger/version.rb
         
     | 
| 
       193 
182 
     | 
    
         
             
            - lib/ruby-debug-base.rb
         
     | 
| 
      
 183 
     | 
    
         
            +
            - lib/ruby-debug.rb
         
     | 
| 
      
 184 
     | 
    
         
            +
            - lib/ruby-debug/command.rb
         
     | 
| 
      
 185 
     | 
    
         
            +
            - lib/ruby-debug/commands/breakpoints.rb
         
     | 
| 
      
 186 
     | 
    
         
            +
            - lib/ruby-debug/commands/catchpoint.rb
         
     | 
| 
      
 187 
     | 
    
         
            +
            - lib/ruby-debug/commands/condition.rb
         
     | 
| 
      
 188 
     | 
    
         
            +
            - lib/ruby-debug/commands/continue.rb
         
     | 
| 
      
 189 
     | 
    
         
            +
            - lib/ruby-debug/commands/control.rb
         
     | 
| 
      
 190 
     | 
    
         
            +
            - lib/ruby-debug/commands/display.rb
         
     | 
| 
      
 191 
     | 
    
         
            +
            - lib/ruby-debug/commands/edit.rb
         
     | 
| 
      
 192 
     | 
    
         
            +
            - lib/ruby-debug/commands/enable.rb
         
     | 
| 
      
 193 
     | 
    
         
            +
            - lib/ruby-debug/commands/eval.rb
         
     | 
| 
      
 194 
     | 
    
         
            +
            - lib/ruby-debug/commands/finish.rb
         
     | 
| 
      
 195 
     | 
    
         
            +
            - lib/ruby-debug/commands/frame.rb
         
     | 
| 
      
 196 
     | 
    
         
            +
            - lib/ruby-debug/commands/help.rb
         
     | 
| 
      
 197 
     | 
    
         
            +
            - lib/ruby-debug/commands/info.rb
         
     | 
| 
      
 198 
     | 
    
         
            +
            - lib/ruby-debug/commands/irb.rb
         
     | 
| 
      
 199 
     | 
    
         
            +
            - lib/ruby-debug/commands/jump.rb
         
     | 
| 
      
 200 
     | 
    
         
            +
            - lib/ruby-debug/commands/kill.rb
         
     | 
| 
      
 201 
     | 
    
         
            +
            - lib/ruby-debug/commands/list.rb
         
     | 
| 
      
 202 
     | 
    
         
            +
            - lib/ruby-debug/commands/method.rb
         
     | 
| 
      
 203 
     | 
    
         
            +
            - lib/ruby-debug/commands/quit.rb
         
     | 
| 
      
 204 
     | 
    
         
            +
            - lib/ruby-debug/commands/reload.rb
         
     | 
| 
      
 205 
     | 
    
         
            +
            - lib/ruby-debug/commands/save.rb
         
     | 
| 
      
 206 
     | 
    
         
            +
            - lib/ruby-debug/commands/set.rb
         
     | 
| 
      
 207 
     | 
    
         
            +
            - lib/ruby-debug/commands/show.rb
         
     | 
| 
      
 208 
     | 
    
         
            +
            - lib/ruby-debug/commands/skip.rb
         
     | 
| 
      
 209 
     | 
    
         
            +
            - lib/ruby-debug/commands/source.rb
         
     | 
| 
      
 210 
     | 
    
         
            +
            - lib/ruby-debug/commands/stepping.rb
         
     | 
| 
      
 211 
     | 
    
         
            +
            - lib/ruby-debug/commands/threads.rb
         
     | 
| 
      
 212 
     | 
    
         
            +
            - lib/ruby-debug/commands/tmate.rb
         
     | 
| 
      
 213 
     | 
    
         
            +
            - lib/ruby-debug/commands/trace.rb
         
     | 
| 
      
 214 
     | 
    
         
            +
            - lib/ruby-debug/commands/variables.rb
         
     | 
| 
      
 215 
     | 
    
         
            +
            - lib/ruby-debug/debugger.rb
         
     | 
| 
      
 216 
     | 
    
         
            +
            - lib/ruby-debug/helper.rb
         
     | 
| 
      
 217 
     | 
    
         
            +
            - lib/ruby-debug/interface.rb
         
     | 
| 
      
 218 
     | 
    
         
            +
            - lib/ruby-debug/processor.rb
         
     | 
| 
       194 
219 
     | 
    
         
             
            - rdbg.rb
         
     | 
| 
       195 
220 
     | 
    
         
             
            - runner.sh
         
     | 
| 
       196 
221 
     | 
    
         
             
            - svn2cl_usermap
         
     | 
| 
         @@ -201,8 +226,6 @@ files: 
     | 
|
| 
       201 
226 
     | 
    
         
             
            - test/base/load.rb
         
     | 
| 
       202 
227 
     | 
    
         
             
            - test/bp_loop_issue.rb
         
     | 
| 
       203 
228 
     | 
    
         
             
            - test/classes.rb
         
     | 
| 
       204 
     | 
    
         
            -
            - test/cli/commands/catchpoint_test.rb
         
     | 
| 
       205 
     | 
    
         
            -
            - test/cli/commands/unit/regexp.rb
         
     | 
| 
       206 
229 
     | 
    
         
             
            - test/config.yaml
         
     | 
| 
       207 
230 
     | 
    
         
             
            - test/data/annotate.cmd
         
     | 
| 
       208 
231 
     | 
    
         
             
            - test/data/annotate.right
         
     | 
| 
         @@ -299,6 +322,8 @@ files: 
     | 
|
| 
       299 
322 
     | 
    
         
             
            - test/info-var-bug2.rb
         
     | 
| 
       300 
323 
     | 
    
         
             
            - test/jump.rb
         
     | 
| 
       301 
324 
     | 
    
         
             
            - test/jump2.rb
         
     | 
| 
      
 325 
     | 
    
         
            +
            - test/lib/commands/catchpoint_test.rb
         
     | 
| 
      
 326 
     | 
    
         
            +
            - test/lib/commands/unit/regexp.rb
         
     | 
| 
       302 
327 
     | 
    
         
             
            - test/next.rb
         
     | 
| 
       303 
328 
     | 
    
         
             
            - test/null.rb
         
     | 
| 
       304 
329 
     | 
    
         
             
            - test/output.rb
         
     | 
| 
         @@ -369,7 +394,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       369 
394 
     | 
    
         
             
                  version: 1.3.6
         
     | 
| 
       370 
395 
     | 
    
         
             
            requirements: []
         
     | 
| 
       371 
396 
     | 
    
         
             
            rubyforge_project: 
         
     | 
| 
       372 
     | 
    
         
            -
            rubygems_version: 1.8. 
     | 
| 
      
 397 
     | 
    
         
            +
            rubygems_version: 1.8.19
         
     | 
| 
       373 
398 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       374 
399 
     | 
    
         
             
            specification_version: 3
         
     | 
| 
       375 
400 
     | 
    
         
             
            summary: Fast Ruby debugger - base + cli
         
     |