Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I had got my ruby-debug to work with ruby 1.9.3 and rails Rails 3.0.1.

But now we upgraded to Rails 3.2.1 (not sure if it has anything to do with this), and when I put a ruby-debug in my code, if it's on initialize it stops and I can do my debugging. But if the ruby-debug statement is where it gets called from an AJAX, it prints (rdb:1) and some spaces but then just skips it, looks like it sees it and knows it has to stop there but it doesn't.

Any ideas?

thanks!

share|improve this question

1 Answer

I realized someone had chagned rails server to run on apache instead of webrick and that's why it wasn't halting. I had to run rails server webrick and it worked.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.