ruby-debug 0.8 → 0.8.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/cli/ruby-debug.rb CHANGED
@@ -18,7 +18,7 @@ module Debugger
18
18
  attr_reader :thread, :control_thread
19
19
 
20
20
  def interface=(value) # :nodoc:
21
- processor.interface = value
21
+ handler.interface = value
22
22
  end
23
23
 
24
24
  #
@@ -108,7 +108,7 @@ module Debugger
108
108
  #
109
109
  # Runs a script file
110
110
  #
111
- def run_script(file, out = processor.interface)
111
+ def run_script(file, out = handler.interface)
112
112
  interface = ScriptInterface.new(file, out)
113
113
  processor = ControlCommandProcessor.new(interface)
114
114
  processor.process_commands
@@ -0,0 +1,5 @@
1
+ # Module/Package to do the most-common thing: get into the debugger with
2
+ # minimal fuss. Compare with: require "debug"
3
+ require "ruby-debug"
4
+ Debugger.start
5
+ debugger
metadata CHANGED
@@ -3,9 +3,9 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: ruby-debug
5
5
  version: !ruby/object:Gem::Version
6
- version: "0.8"
7
- date: 2007-03-14 22:59:58 -04:00
8
- summary: Command line interface (CLI) for ruby-debug
6
+ version: 0.8.1
7
+ date: 2007-03-19 03:56:11 -04:00
8
+ summary: Command line interface (CLI) for ruby-debug-base
9
9
  require_paths:
10
10
  - cli
11
11
  email: ksibilev@yahoo.com
@@ -54,6 +54,7 @@ files:
54
54
  - cli/ruby-debug/commands/tmate.rb
55
55
  - cli/ruby-debug/commands/trace.rb
56
56
  - cli/ruby-debug/commands/variables.rb
57
+ - cli/ruby-debug/debugger.rb
57
58
  - cli/ruby-debug/interface.rb
58
59
  - cli/ruby-debug/processor.rb
59
60
  - cli/ruby-debug.rb
@@ -77,5 +78,5 @@ dependencies:
77
78
  requirements:
78
79
  - - "="
79
80
  - !ruby/object:Gem::Version
80
- version: "0.8"
81
+ version: 0.8.1
81
82
  version: