up vote 0 down vote favorite
share [g+] share [fb]

I know of the ruby gem "ruby-debug" that allows you to place a debugger call inside your code. Using it, it's possible to have breakpoints in your code.

I used script/console a bit for some tests, and I would like to know if I can call it from my code.

Thanks !

EDIT:

here is some sample ruby code


require "ruby-debug"

[1,2,3,4,5].each do |item|
   if item == 2
      # this starts a irb-like shell from which you can step through your code
      debugger 
   end
end

I would like to achieve the same thing, but using the rails console.

link|improve this question

feedback

2 Answers

Whilst debugging you can type irb to open the console. Other than that, I'm not sure I understand what you mean...

link|improve this answer
feedback
up vote 0 down vote accepted

I think the only way is by adding debugger statements in your code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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