Photo by Planet Volumes🪐 on Unsplash

Metaprogramming: Ruby Hook Methods

Tech - RubyCademy
RubyCademy
Published in
2 min readMar 27, 2018

--

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 theModule#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 the class definition for each child.

That’s exactly what the module ActiveRecord::Core 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.

RubyCademy’s Newsletter

In the RubyCademy newsletter, I share what I’m learning about Ruby & Rails, including helpful tips, code insights, and exclusive Ruby Cards with detailed explanations.

If it sounds helpful, feel free to subscribe for free:

Thank you for taking the time to read this message!

--

--