Concept Flow - Method_added hook
Define class
Define method
Ruby detects new method
Trigger method_added hook
Execute method_added code
Continue defining class/methods or finish
When a new method is defined in a Ruby class or module, Ruby automatically calls the method_added hook if it is defined, allowing custom code to run right after method creation.