How To Delegate Methods in Ruby & Ruby on Rails
This article is about method delegation in Ruby. You’re going to learn how to use the delegate method, the Forwardable module & the SimpleDelegator class. Why do we need delegation? In Object-Oriented Programming, there are two ways for classes to work together. They are: Inheritance Composition With inheritance, you create class hierarchies, where a parent … Read more