method

add_things

ruby latest stable - Class: RDoc::ClassModule
add_things(my_things, other_things)
public

No documentation available.

# File lib/rdoc/class_module.rb, line 148
  def add_things my_things, other_things # :nodoc:
    other_things.each do |group, things|
      my_things[group].each { |thing| yield false, thing } if
        my_things.include? group

      things.each do |thing|
        yield true, thing
      end
    end
  end