If I'm using a module/class I have no control over, how would I decorate one of the methods?
I understand I can: my_decorate_method(target_method)()
but I'm looking to have this happen wherever target_method
is called without having to do a search/replace.
Is it even possible?