How do you call a method in the most derived class of a ruby object?
For example, in Rails, one can have a controller that inherits from ApplicationController
, or say, Devise::RegistrationsController
. So, say I want the user to override some method in their controller, and call that override from the base class: What would be the best syntax for doing it?