Module
Attributes
Read
No documentation available
Read
No documentation available
Read
No documentation available
Read
No documentation available
Read & Write
No documentation available
Read & Write
No documentation available
Read & Write
No documentation available
Class Methods
lib/rss/rss.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/rss.rb, line 1250
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
No documentation available
Instance Methods
lib/rss/rss.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/rss.rb, line 1261
def feed_info
[@feed_type, @feed_version, @feed_subtype]
end
No documentation available
lib/rss/rss.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/rss.rb, line 1342
def maker_target(target)
target
end
No documentation available
lib/rss/rss.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/rss.rb, line 1333
def ns_declarations
decls = {}
self.class::NSPOOL.collect do |prefix, uri|
prefix = ":#{prefix}" unless prefix.empty?
decls["xmlns#{prefix}"] = uri
end
decls
end
No documentation available
lib/rss/rss.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/rss.rb, line 1265
def output_encoding=(enc)
@output_encoding = enc
self.converter = Converter.new(@output_encoding, @encoding)
end
No documentation available
lib/rss/rss.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/rss.rb, line 1306
def same_feed_type?(type)
if /^(atom|rss)?(\d+\.\d+)?(?::(.+))?$/i =~ type
feed_type = ($1 || @feed_type).downcase
feed_version = $2 || @feed_version
feed_subtype = $3 || @feed_subtype
[feed_type, feed_version, feed_subtype] == feed_info
else
false
end
end
No documentation available
lib/rss/rss.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/rss.rb, line 1270
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
No documentation available
lib/rss/rss.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/rss.rb, line 1317
def tag(indent, attrs={}, &block)
rv = super(indent, ns_declarations.merge(attrs), &block)
return rv if rv.empty?
"#{xmldecl}#{xml_stylesheet_pi}#{rv}"
end
No documentation available
lib/rss/rss.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/rss.rb, line 1293
def to_atom(type, &block)
to_feed("atom:#{type}", &block)
end
No documentation available
lib/rss/rss.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/rss.rb, line 1282
def to_feed(type, &block)
Maker.make(type) do |maker|
setup_maker(maker)
block.call(maker) if block
end
end
No documentation available
lib/rss/rss.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/rss.rb, line 1289
def to_rss(type, &block)
to_feed("rss#{type}", &block)
end
No documentation available
lib/rss/rss.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/rss.rb, line 1297
def to_xml(type=nil, &block)
if type.nil? or same_feed_type?(type)
to_s
else
to_feed(type, &block).to_s
end
end
No documentation available
#
lib/rss/rss.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/rss.rb, line 1323
def xmldecl
rv = %Q[<?xml version="#{@version}"]
if @output_encoding or @encoding
rv << %Q[ encoding="#{@output_encoding or @encoding}"]
end
rv << %Q[ standalone="yes"] if @standalone
rv << "?>\n"
rv
end
No documentation available