Flowdock
xmldecl() 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 1323
    def xmldecl
      rv = %[<?xml version="#{@version}"]
      if @output_encoding or @encoding
        rv << %[ encoding="#{@output_encoding or @encoding}"]
      end
      rv << %[ standalone="yes"] if @standalone
      rv << "?>\n"
      rv
    end
Register or log in to add new notes.