private Method

Element.setup_maker_element(target)

There's no documentation for this item.

Source Code

# File rss/rss.rb, line 744
def setup_maker_element(target)
  self.class.need_initialize_variables.each do |var|
    value = __send__(var)
    if value.respond_to?("setup_maker") and
        !not_need_to_call_setup_maker_variables.include?(var)
      value.setup_maker(target)
    else
      setter = "#{var}="
      if target.respond_to?(setter)
        target.__send__(setter, value)
      end
    end
  end
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.