Questions tagged [ruby-debug]

The purpose of a debugger ruby-debug is to allow you to see what is going on “inside” a Ruby program while it executes.

The purpose of a debugger ruby-debug is to allow you to see what is going on “inside” a Ruby program while it executes.

It can do four main kinds of things (plus other things in support of these) to help you catch bugs in the act:

  • Start your script, specifying anything that might affect its behavior.
  • Make your script stop on specified conditions.
  • Examine what has happened, when your script has stopped.
  • Change things in your script, so you can experiment with correcting the effects of one bug and go on to learn about another.

Link

Related tag

152 questions
-1
votes
1 answer

how to set breakpoint at Mutex#lock?

I'm trying to set a breakpoint every time Mutex#lock is called in RubyMine, but since mutex.rb is a stub I can't seem to do it. Anybody know how I would do this?
Mohamed Hafez
  • 8,621
  • 7
  • 41
  • 49
-1
votes
2 answers

Program for watching log files with ruby ​​on rails

Do you know a good program for mac OS. For clear and easy viewing logs in your ruby on rails application. I know I can be in the terminal tail-f log / development.log or less + F-R log / development.log Anyone knows a program not on the ... mysql…
1 2 3
10
11