Include vs Extend
Include is for adding methods only to an instance of a class
- instance methods. Without self.
Extend is for adding methods to the class but not to its instance.
- class methods. With self.
Include is for adding methods only to an instance of a class
Extend is for adding methods to the class but not to its instance.