Flowdock
method

setup_maker_elements

Importance_0
v1_8_6_287 - Show latest stable - 0 notes - Class: RSS::Element
setup_maker_elements(parent) private

No documentation

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

Hide source
# File lib/rss/rss.rb, line 763
    def setup_maker_elements(parent)
      self.class.have_children_elements.each do |name, plural_name|
        if parent.respond_to?(plural_name)
          target = parent.__send__(plural_name)
          __send__(plural_name).each do |elem|
            elem.setup_maker(target)
          end
        end
      end
    end
Register or log in to add new notes.