What do you guys use for debugging in ruby 1.9? rdebug doesn't seem to be compatible.. is there anything out there?
|
Note: this answer was correct but is now out of date. See the below correct answer. TL;DR: use 'debugger' now. ruby-debug is now available with Ruby 1.9.x. See http://www.github.com/mark-moseley To install (using gem on 1.9 Ruby installation):
(with perhaps the necessary 'sudo' in front of it). |
|||||||||||||||
|
|
|
|||
|
|||
|
|||
Does not matter. Put it wherever you like, just not inside a group block (Not in group :development do ... end or the like), because it already contains a group. – iblue Aug 13 '12 at 13:51 |
|
UPDATE 2 It is true that ruby-debug is not actively maintained even if I can't find anywhere that is not maintained any longer. You can use the new debugger gem if you need a help to start with the new gem you can see Ryan Bates rails cast. In your Gemfile put:
You can then add a breakpoint anywhere in your code using the YOU CAN STILL USE linecache19 and ruby-debug-base19 with: bash < <(curl -L https://raw.github.com/gist/1333785) OLD ANSWERS Just an add on about this with rvm, ruby 1.9.1-p378. True story is that even if ruby-debug is 1.9.x ready, linecache-0.43 is not. The solution is to install:
This solves the problem for me. OLD UPDATE If you are having problems with ruby 1.9.2 and Rails 3 debugging putting:
In your Gemfile and doing a
Will make you a happy debugger again. |
|||||||
|
|
If you still have a problem after installing ruby-debug19 try updating ruby-debug-base19. I had errors and couldn't run WEBrick in debug mode until I did that.
Oh, and thanks Mr. Moseley for all your hard work! |
||||
|
|
|
Some things you could try 1) run it with ruby’s normal debugger -rdebug [1] kind of slow 2) run it with unroller gem [kind of stinks, way slow] 3) use a lot of print statements fast, kind of less introspection possible 4) drop to an irb prompt and run some code from there. you could list the code by creating your own “drop to irb prompt” that listed the code around itself [use caller to discover where you where] then drop to a normal irb prompt. 5) maybe jruby in 1.9 compat mode has a debugger? |
|||
|
|
|
See my answer here : Ruby-debug not working - Stack Overflow It's about getting Ruby debugging to work with the following setup
I hope this helps! -- Freddy |
|||
|
|
|
Netbeans is a good IDE for RoR. Good debugger too. |
|||||||
|
|
The ruby 1.9.1-p243 version is out and compitable ruby-debug-ide is also working properly. Install ruby-debug-ide using the following command:
This will install the ruby-debug-base19 and ruby-debug-ide gems. But before this make sure you install the mingw successfully by following the Development kit docs available from RubyForge. |
|||
|
|
|
I used following and it works great for me: gem 'debugger', group: [:development, :test] ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-linux] rails 3.2.8 |
|||
|
|
ruby-debug19is out of date now. – Rob Howard Sep 6 '12 at 1:54