Ruby monkey patching. An introduction
Monkey patching is a technique used in Ruby programming to modify or extend the behaviour of existing classes or modules at runtime. It involves adding, removing or modifying methods and attributes of existing classes or modules at runtime, without actually changing the source code of the original class or module. https://medium.com/@real_wyodeb/ruby-monkey-patching-an-introduction-d1328fc99da7
Post a comment