Flowdock
method

find_classes_in

Importance_0
v1_9_1_378 - Show latest stable - 0 notes - Class: Reader
find_classes_in(res, klass) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rdoc/ri/reader.rb, line 86
  def find_classes_in(res, klass)
    classes = klass.classes_and_modules
    for c in classes
      res << c.full_name
      find_classes_in(res, c)
    end
    res
  end
Register or log in to add new notes.