require "rss/rss" module RSS ## # # Provides a set of builders for various RSS objects # # * Feeds # * RSS 0.91 # * RSS 1.0 # * RSS 2.0 # * Atom 1.0 # # * Elements # * Atom::Entry module Maker # Collection of supported makers MAKERS = {} class << self # Builder for an RSS object # Creates an object of the type passed in +args+ # # Executes the +block+ to populate elements of the created RSS object def make(version, &block) self[version].make(&block) end # Returns the maker for the +version+ def [](version) maker_info = maker(version) raise UnsupportedMakerVersionError.new(version) if maker_info.nil? maker_info[:maker] end # Adds a maker to the set of supported makers def add_maker(version, normalized_version, maker) MAKERS[version] = {:maker => maker, :version => normalized_version} end # Returns collection of supported maker versions def versions MAKERS.keys.uniq.sort end # Returns collection of supported makers def makers MAKERS.values.collect { |info| info[:maker] }.uniq end # Returns true if the version is supported def supported?(version) versions.include?(version) end private # Can I remove this method? def maker(version) MAKERS[version] end end end end require "rss/maker/1.0" require "rss/maker/2.0" require "rss/maker/feed" require "rss/maker/entry" require "rss/maker/content" require "rss/maker/dublincore" require "rss/maker/slash" require "rss/maker/syndication" require "rss/maker/taxonomy" require "rss/maker/trackback" require "rss/maker/image" require "rss/maker/itunes"
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
content | Folder | 0755 |
|
|
dublincore | Folder | 0755 |
|
|
maker | Folder | 0755 |
|
|
0.9.rb | File | 9.36 KB | 0644 |
|
1.0.rb | File | 8.46 KB | 0644 |
|
2.0.rb | File | 2.29 KB | 0644 |
|
atom.rb | File | 22.41 KB | 0644 |
|
content.rb | File | 771 B | 0644 |
|
converter.rb | File | 3.87 KB | 0644 |
|
dublincore.rb | File | 4.18 KB | 0644 |
|
image.rb | File | 4.57 KB | 0644 |
|
itunes.rb | File | 9.96 KB | 0644 |
|
maker.rb | File | 1.75 KB | 0644 |
|
parser.rb | File | 15.47 KB | 0644 |
|
rexmlparser.rb | File | 1.09 KB | 0644 |
|
rss.rb | File | 33.53 KB | 0644 |
|
slash.rb | File | 1.22 KB | 0644 |
|
syndication.rb | File | 1.75 KB | 0644 |
|
taxonomy.rb | File | 2.98 KB | 0644 |
|
trackback.rb | File | 6.56 KB | 0644 |
|
utils.rb | File | 2.61 KB | 0644 |
|
xml-stylesheet.rb | File | 2.13 KB | 0644 |
|
xml.rb | File | 1.47 KB | 0644 |
|
xmlparser.rb | File | 1.55 KB | 0644 |
|
xmlscanner.rb | File | 2.1 KB | 0644 |
|