views:

88

answers:

2

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

+2  A: 

Module#ancestors

Example:

class Foo
end

class Bar < Foo
end

Bar.ancestors # => [Bar, Foo, Object, Kernel]
Avdi
Thanks a lot Avdi!
juanmaflyer
+7  A: 

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.

Greg Campbell
Thanks a lot! That was exactly what i wanted! :)
juanmaflyer