48

Metaprogramming: RUBY HOOK METHODS

 5 years ago
source link: https://www.tuicool.com/articles/hit/R3Mn63m
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
Nf2ENnE.png!web

Metaprogramming: Ruby Hook Methods

Ruby comes with a bunch of hook methods that allow you to manipulate classes, modules and objects on the fly.

Here is a list of the most important hook methods:

Module#included
Module#extended
Module#prepended
Class#inherited

included, extended and prepended modules

These hook methods are invoked whenever a module is included, extended or prepended in another module or class.

They work pretty similarly. So here we’re going to detail the included hook method

produces

The MediumPost entity now accepts comments !

This hook method allows you to add methods and attributes according to the class/module that includes the module where the hook method is defined.

This mechanism is actually used by the ActiveSupport::Concern module.

The implementation is pretty similar for the Module#extended and Module#prepended hook methods.

Class#inherited

This hook method is called whenever a subclass of the class that implements the hook method is created

produces

Tenant is a kind of user

This hook method is pretty handy when you want to define a variable or a class_attribute at class definition for each children.

That’s exactly what the ActiveRecord::Core module does with the initialize_find_by_cache class method.

Conclusion

Hook methods can be pretty handy for class and module manipulation on the fly.

However, as they modify the module/class blueprint, it can provoke some undesired side effects like superclass method overriding, etc..

I’ll detail the BasicObject#method_missing hook method in another article.

Voilà !

Thank you for taking the time to read this post :-)

Feel free to :clap: and share this article if it has been useful for you.

Here is a link to my last article: Private & Protected: a matter of Message .


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK