How do you remove functionality from a program in ruby?

Posted by Andrew Grimm on Stack Overflow See other posts from Stack Overflow or by Andrew Grimm
Published on 2010-05-05T01:09:55Z Indexed on 2010/05/05 1:18 UTC
Read the original article Hit count: 207

Filed under:
|

You have some code you want to remove associated with an obsolete piece of functionality from a ruby project. How do ensure that you get rid of all of the code?

Some guidelines that usually help in refactoring ruby apply, but there are added challenges because having code that isn't being called by anything won't break any unit tests.

© Stack Overflow or respective owner

Related posts about ruby

Related posts about refactoring