method
to_s
to_s()
public
Hide source
# File lib/rss/xml-stylesheet.rb, line 56 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