vote up 6 vote down star

Are there any programs or IDEs that support refactoring for Ruby or RoR?

flag

6 Answers

vote up 2 vote down

I believe net-beans and eclipse both support some refactoring within their 'ruby-mode' - also the emacs code browser (ECB) and the various ruby support tools (e.g. rinari) for emacs have some support.

link|flag
vote up 1 vote down

IntelliJ IDEA with Ruby plugin supports some refactorings.

alt text

link|flag
vote up 0 vote down

There's also 3rdRail from CodeGear (from Delphi fame). The only catch is that it's not free.

link|flag
vote up 0 vote down

Aptana has some simple refactoring tools. I often extract into partials and they have a simple shortcut for pulling things out, creating a file and inserting the right call to the partial. Not the most amazing ever but it's useful

link|flag
vote up 0 vote down

I've used the refactoring in netbeans. I didn't find it that much more useful than find and replace.

link|flag
vote up 1 vote down

The best refactoring tool is good test coverage. If your tests cover your code and they all past you can just make whatever changes you want and the tests will find any dependencies you have broken. This is the main reason why IDE-based refactoring tools are less prevalent in Ruby than elsewhere.

link|flag

Your Answer

Get an OpenID
or

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