Does Aptana Studio include debugging for Rails apps just as RubyMine does with breakpoints and everything? I’m using Aptana Studio 3.0.5 and haven’t been able to find how to get this working.
Does Aptana Studio include debugging for Rails apps just as RubyMine does with breakpoints
Share
Aptana Studio 3+ does have Ruby debugging. Other than breakpoints in HAML files misbehaving somewhat, I’ve been able to use this without any problems.
However, you must make certain that you have installed the gem
ruby-debug-ide(you can install it with the command:gem install ruby-debug-ide).To verify that the appropriate debug gems are installed, run
gem listin your Terminal application of choice (not sure what platform you are on) and be sure it’s there … look for these lines in the output:Hope that helps!