Static Analysis in Ruby
Let’s say that you want to parse your source code to find all your methods, where they are defined & what arguments do they take. How can you do this? Your first idea might be to write a regexp for it… But is there a better way? Yes! Static analysis is a technique you can … Read more