Posts Tagged Debugging in rails
“The ruby-debug Commands”
What follows is a quick rundown of the most important ruby-debug commands, along with a brief description of what they do. Don’t worry too much about remembering every last detail — the built-in help command will list all the available commands for you. You can also use the For a list of all available commands and options, use the
The ruby-debug Commands
help <commandname> syntax to get help with a specific command.
backtrace: Display a trace of the execution stack, similar to what is displayed when your application raises an exception.break/delete: Display a list of breakpoints that have been set in your application. This command is also used to set new breakpoints, or delete existing ones, from within the ruby-debug shell.cont: Leave the current debugger shell and resume execution of the application until the next breakpoint is encountered.irb: Invoke an interactive Ruby interpreter at the current point of execution, similar to the shell used by the breakpoint library.list: Display the code fragments surrounding the current point of execution. (We’ll make use of this command in a moment.)method/method instance: Explore the available class methods and instance methods, respectively.next/step: Continue execution one step at a time — this is a huge improvement over the breakpoint library.p/pp: Short for print and pretty print respectively, these commands can be used to evaluate Ruby expressions and display the value of variables to the console.quit: Exit the debugger. Note that this will also exit the application server if it was invoked from the command line, as demonstrated above. To just exit the current debugging session, use cont.reload: Reload the Ruby source files from disk. This can be useful if you’ve changed class definitions and want to reload them dynamically without leaving the current debugging session.help command.
Add comment November 12, 2008
“Debugging in rails”
Well ever thought of debugging the rails application , there are many ways , one way which I liked of lately was the debugger in action directly.
Step 1 : Install ruby-debugger gem “sudo gem install ruby-debugger –include_dependencies”
Step 2 : Dont forget to start debugging server by saying
ruby script/server –debugger
Step 3 : Say debuggger in the action, the console will open in the command line for the code written below to debugger
eg:
def foo
debugger
@object = Active.find(:all)
end
When in that case in the command line we will get a rbd : opened , where you can debug the object like @object.size etc
Thats it enjoy , there are some other methods like <%= debug @object %> , <%= @object.inspect %> , puts etc which I guess all of us already know abt.
1 comment November 12, 2008