Class
Class Methods
lib/rss/atom.rb
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/rss/atom.rb, line 279
def initialize(version=nil, encoding=nil, standalone=nil)
super("1.0", version, encoding, standalone)
@feed_type = "atom"
@feed_subtype = "feed"
end
Creates a new Atom
feed
Instance Methods
lib/rss/atom.rb
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/rss/atom.rb, line 295
def atom_validate(ignore_unknown_element, tags, uri)
unless have_author?
raise MissingTagError.new("author", tag_name)
end
validate_duplicate_links(links)
end
No documentation available
lib/rss/atom.rb
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/rss/atom.rb, line 289
def have_author?
authors.any? {|author| !author.to_s.empty?} or
entries.any? {|entry| entry.have_author?(false)}
end
Returns true if there are any authors for the feed or any of the Entry
child elements have an author
lib/rss/atom.rb
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/rss/atom.rb, line 302
def have_required_elements?
super and have_author?
end
No documentation available
lib/rss/atom.rb
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/rss/atom.rb, line 306
def maker_target(maker)
maker.channel
end
No documentation available
lib/rss/atom.rb
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/rss/atom.rb, line 310
def setup_maker_element(channel)
prev_dc_dates = channel.dc_dates.to_a.dup
super
channel.about = id.content if id
channel.dc_dates.replace(prev_dc_dates)
end
No documentation available
lib/rss/atom.rb
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/rss/atom.rb, line 317
def setup_maker_elements(channel)
super
items = channel.maker.items
entries.each do |entry|
entry.setup_maker(items)
end
end
No documentation available