rubyhierarchyclass-hierarchy

Does ruby provide a method to show the hierarchy calls?


That's all, i want to see what are the clases that inherits a fixed class. There is a method for this in Ruby?

Aptana offers an option that shows this, but is there any method?

Thanks


Solution

  • Are you asking to see all the ancestors of a class, or the descendants? For ancestors, use:

    Class.ancestors
    

    There is no comparable method "out of the box" for descendants, however. You can use ObjectSpace, as below, but it's slow and may not be portable across Ruby implementations:

    ObjectSpace.each_object(Class) do |klass| 
      p klass if klass < StandardError
    end
    

    EDIT:

    One can also use the Class#inherited hook to track subclassing. This won't catch any subclasses created before the tracking functionality is defined, however, so it may not fit your use case. If you need to use that information programmatically on classes defined inside your application, however, this may be the way to go.