I\'ve used super to initialize parent class but I cannot see any way of calling parent class from subclass methods.
super
I know PHP and other languages do ha
The super keyword in Ruby actually calls a method of the same name in the parent class. (source)
class Foo def foo # Do something end end class Bar < Foo def foo super # Calls foo() method in parent class end end