Are there any programs or IDEs that support refactoring for Ruby or RoR?
+2
A:
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.
mmaibaum
2008-09-16 14:31:31
A:
I've used the refactoring in netbeans. I didn't find it that much more useful than find and replace.
srboisvert
2008-09-24 20:19:07
+5
A:
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.
domgblackwell
2008-09-29 10:49:56