class RDoc::ClassModule

def add_things(my_things, other_things) # :nodoc:

:nodoc:
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