Extended maintenance of Ruby 1.9.3 ended on February 23, 2015. Read more
# File rss/rss.rb, line 1246
def initialize(feed_version, version=nil, encoding=nil, standalone=nil)
super()
@feed_type = nil
@feed_subtype = nil
@feed_version = feed_version
@version = version || '1.0'
@encoding = encoding
@standalone = standalone
@output_encoding = nil
end
# File rss/rss.rb, line 1257
def feed_info
[@feed_type, @feed_version, @feed_subtype]
end
# File rss/rss.rb, line 1261
def output_encoding=(enc)
@output_encoding = enc
self.converter = Converter.new(@output_encoding, @encoding)
end
# File rss/rss.rb, line 1266
def setup_maker(maker)
maker.version = version
maker.encoding = encoding
maker.standalone = standalone
xml_stylesheets.each do |xss|
xss.setup_maker(maker)
end
super
end
# File rss/rss.rb, line 1289
def to_atom(type, &block)
to_feed("atom:#{type}", &block)
end
# File rss/rss.rb, line 1278
def to_feed(type, &block)
Maker.make(type) do |maker|
setup_maker(maker)
block.call(maker) if block
end
end
Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.
If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.