Aptana 3 ruby debugger - Exception in DebugThread loop: undefined method `is_binary_data?'

后端 未结 3 1241
情歌与酒
情歌与酒 2020-12-29 00:45

I\'m trying to debug simple ruby file in Aptana 3.

class HelloWorld
  
def initialize()
    
end
  
def greet()
  puts "hello world"
end
end

h=Hell         


        
3条回答
  •  太阳男子
    2020-12-29 01:27

    It worked for me, make sure the code is added outside of the "module Debugger" block in xml_printer.rb. I added the code inside the module block the first time and got the same exception, but placing it outside the module block got rid of the exception and allows variables to be inspected.

提交回复
热议问题