I have been doing TDD in C # for several years and have recently switched to Ruby on Rails full time. I continue to practice TDD with RSpec. My question is about the process of finding links during refactoring. In Visual Studio, I became addicted to Resharper "find all links" when renaming or replacing methods.
How do experienced practitioners in ruby find references to methods when replacing / renaming / etc?
I understand that Ruby is a dynamic language and the "find all links" function does not work, so I am looking for a shift in thinking, as well as a simple solution.
Thanks - Lee
source
share