I have a program written in Ruby that uses several levels of inheritance. All parent classes have implemented methods that the object of the child class will use, but when I create rdoc for my program, only the methods of this particular class and the methods from the parent class are displayed on the rdoc page for the child class.
Does anyone know how to display inherited class methods in rdoc? I looked through the rdoc documentation and some websites and could not find an answer on whether this is possible.
source
share