Hello,
As a matter of principle, I am studying the pluginfactory plugin (http://raa.ruby-lang.org/project/pluginfactory/).
At first, I thought the author was insane (in a good way!).
I am going bananas, trying to understand the pluginfactory.rb module.
At one point, he defines:
### Inheritance callback -- Register subclasses in the derivatives hash
### so that ::create knows about them.
def inherited( subclass )
NOW! You night say "No wait, inherited needs to be a class method, not a n instance method.
Well, the module does this when it's included:
### Inclusion callback -- extends the including class.
def self::included( klass )
klass.extend( self )
end
This means that all of the instance methods defined in the plugin become... part of the class!
This opened in my brain the door to insanity.
Is this technique used a lot? What I don't like about it, is that the instance methods in the module become both instance methods and class methods in the includer.
This could possibly create clutter in the class' methods.
For what I understand, with include/extend is never, ever possible to add class methods to a class using include or extend (of course, you can use inheritance, but that would be too "normal").
Guys, I am in awe.
Merc.