method
to_s
to_s()
public
Hide source
# File lib/rss/xml-stylesheet.rb, line 51 def to_s rv = "" if @href rv << %Q[<?xml-stylesheet] ATTRIBUTES.each do |name| if __send__(name) rv << %Q[ #{name}="#{h __send__(name)}"] end end rv << %Q[?>] end rv end