Good day, i'm new to ruby. I want to know how to run a parent method from a method of a child class ? in java it would be like
class Child
..
def something_else
super.something
end
end
and in php
parent::method_name();
And could you tell me how to do it in Ruby? found only this, and it's kind of ugly using alias_method_chain