Flowdock
method

add_things

Importance_0
v2_1_10 - Show latest stable - 0 notes - Class: RDoc::ClassModule
add_things(my_things, other_things) public

No documentation

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

Hide source
# File lib/rdoc/class_module.rb, line 145
  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
Register or log in to add new notes.