Flowdock
method

element

Importance_0
v1_9_3_125 - Show latest stable - 0 notes - Class: Simple
element(name, attrs, *children) public

No documentation

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

Hide source
# File lib/xmlrpc/create.rb, line 41
      def element(name, attrs, *children)
        raise "attributes not yet implemented" unless attrs.nil?
        if children.empty?
          "<#{name}/>"
        else
          "<#{name}>" + children.join("") + "</#{name}>"
        end
      end
Register or log in to add new notes.