We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5430f5f commit 474d360Copy full SHA for 474d360
lib/ruby-debug/interface.rb
@@ -12,8 +12,10 @@ def non_blocking_gets
12
end
13
14
module Debugger
15
+ class Interface
16
+ end
17
- class RemoteInterface # :nodoc:
18
+ class RemoteInterface < Interface # :nodoc:
19
attr_accessor :command_queue
20
21
def initialize(socket)
lib/ruby-debug/processor.rb
@@ -7,10 +7,8 @@
7
8
9
10
- # this class is added to resolve problems, with ruby-debug gem incompatibility see
11
- # http://rubyforge.org/tracker/index.php?func=detail&aid=27055&group_id=3085&atid=11903
class CommandProcessor
- def initialize(interface)
+ def initialize(interface = nil)
@interface = interface
@printer = XmlPrinter.new(@interface)
0 commit comments