Flowdock
to_s() public

No documentation

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

Hide source
# File lib/rss/xml-stylesheet.rb, line 55
    def to_s
      rv = ""
      if @href
        rv << %[<?xml-stylesheet]
        ATTRIBUTES.each do |name|
          if __send__(name)
            rv << %[ #{name}="#{h __send__(name)}"]
          end
        end
        rv << %[?>]
      end
      rv
    end
Register or log in to add new notes.