We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83d75a9 commit 21e6da4Copy full SHA for 21e6da4
1 file changed
lib/ruby-debug-ide/interface.rb
@@ -23,10 +23,17 @@ class LocalInterface < Interface
23
24
class RemoteInterface < Interface # :nodoc:
25
attr_accessor :command_queue
26
- attr_accessor :socket
+ #attr_accessor :socket
27
28
def initialize(socket)
29
@socket = socket
30
+ class <<@socket
31
+ alias close_without_logging close
32
+ def close
33
+ close_without_logging
34
+ $stderr.puts "medvedko is " + ::Kernel.caller(1).join("\n")
35
+ end
36
37
@command_queue = Queue.new
38
end
39
0 commit comments