0

I'm using POW and Rdebug, and I have it all seemingly working because when I type :

rdebug -c

It returns :

Connected.

But now what? I have debugger placed in a partial call. I can tell the application hits the breakpoint because it stalls on the AJAX call, but no debug console comes up.

What am I missing?

Trip
  • 26,756
  • 46
  • 158
  • 277
  • You are supposed to see the debug console on the terminal you typed "rdebug -c" in, when you hit the debugger. So you are not seeing that? – Phyo Wai Win Feb 13 '12 at 18:13
  • It just sayed I'm connected, but no terminal prompt comes up when it hits the breakpoint. – Trip Feb 13 '12 at 18:18

1 Answers1

1

Getting Ruby-Debug to work with POW requires some configuration.

See the following post by Pratik Naik for details.

nmott
  • 9,454
  • 3
  • 45
  • 34