The superficies problem is: rubymine can run ruby program, but can't debug them, neither remote debug, I got:
>> DIALOG: Connecting to debugger using 10 seconds
After a period about 10 seconds
>> DIALOG: Cannot connect to the debugged process at port 57000 [a random port]
>>> Dumping and destroying...
>>> Error Output:
>>> Fast Debugger(ruby-debug-ide 0.4.17.beta14, ruby-debug-base19 0.11.30.pre10) listens on 127.0.0.1:57000
>> Please try increase timeout settings...(a long bullshit)
I try to find the root cause by reading ruby-debug-ide and ruby-debug-base19 code, found:
- ruby-debug-ide has started a DebugThread(@control_thread) which will start a TCPServer bind on 127.0.0.1 and listen on port 57000.
- ruby-debug-ide is waiting a client connect to the tcp server and send him a 'start' command to
run_prog_script - I can
telnet 127.0.0.1 57000, then the Debug Thread said: Connected from 127.0.0.1 ... If I puts a word 'start\n' in telnet, the rdebug-ide will start my real program. - Rubymine hasn't connect to it and send a 'start' command. (because I haven't find any output in the idea.log)
I dig into idea.log:
Fast Debugger (ruby-debug-ide 0.4.17.beta14, ruby-debug-base 0.11.30.pre10) listens on 127.0.0.1:59598
at org.rubyforge.debugcommons.RubyDebuggerProxy.a(RubyDebuggerProxy.java:647)
at org.rubyforge.debugcommons.RubyDebuggerProxy.d(RubyDebuggerProxy.java:619)
at org.rubyforge.debugcommons.RubyDebuggerProxy.getCommandSocket(RubyDebuggerProxy.java:381)
at org.rubyforge.debugcommons.RubyDebuggerProxy.b(RubyDebuggerProxy.java:151)
at org.rubyforge.debugcommons.RubyDebuggerProxy.attach(RubyDebuggerProxy.java:112)
at org.jetbrains.plugins.ruby.ruby.debugger.impl.RubyDebugProcess.attachToProxy(RubyDebugProcess.java:190)
Then I read debug-commons code(not accurate as rubymine, I refer to https://github.com/ruby-debug/debug-commons-java/blob/master/src/org/rubyforge/debugcommons/RubyDebuggerProxy.java
private Socket attach() throws RubyDebuggerException {
int port = debugTarget.getPort();
String host = debugTarget.getHost();
Socket socket = null;
for (int tryCount = (timeout*2), i = 0; i < tryCount && socket == null; i++) {
try {
socket = new Socket(host, port);
...
}
}
}
It seems rubymine can't use the debug-commons lib to open a socket connection at localhost, I can't dig more :(
BTW, Even we start a ruby debug session in shell by command below:
rdebug-ide --port 51202 -- path/to/my/script
rubymine can't connect to the socket also.
*Don't tell me I should use another ruby-debug-xxx gem or remove some other gems like ruby-debug, I'v tried those solutions. *
I'v tried with below groups:
Group1:
- rubymine 4.0.3
- ruby-debug-base19-0.11.29
- ruby-debug-ide-0.4.16
Group2:
- rubymine 4.5.x
- ruby-debug-base19-0.11.30.pre10
- ruby-debug-ide-0.4.17.beta14
my laptop is mac air with OSX Lion

tcpdump/wireshark. – CrazyCoder Dec 17 '12 at 7:03