Flowdock
install_element(name, postfix="") 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 304
    def install_element(name, postfix="")
      elem_name = name.sub('_', ':')
      method_name = "#{name}_element#{postfix}"
      add_to_element_method(method_name)
      module_eval(      def #{method_name}(need_convert=true, indent='')        #{yield(name, elem_name)}      end      private :#{method_name}, *get_file_and_line_from_caller(2))
    end
Register or log in to add new notes.