Flowdock
method

process_class

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: Generators::RIGenerator
process_class(from_class) public

No documentation

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

Hide source
# File lib/rdoc/generators/ri_generator.rb, line 89
    def process_class(from_class)
      generate_class_info(from_class)

      # now recure into this classes constituent classess
      from_class.each_classmodule do |mod|
        process_class(mod)
      end
    end
Register or log in to add new notes.