Sha256: f655c222eb64b8533ff29ec756253fcb30e82b23edd7e12a536d32164a2d18a8
Contents?: true
Size: 889 Bytes
Versions: 1
Compression:
Stored size: 889 Bytes
Contents
require 'xommelier/xml' module Xommelier # Implements The Atom Syndication Format # See RFC 4287 {http://tools.ietf.org/html/rfc4287.html} module Atom include Xommelier::Xml xmlns 'http://www.w3.org/2005/Atom', as: :atom #roots :Feed, :Entry # Elements autoload :Link, 'xommelier/atom/link' autoload :Person, 'xommelier/atom/person' autoload :Category, 'xommelier/atom/category' autoload :Content, 'xommelier/atom/content' autoload :Generator, 'xommelier/atom/generator' autoload :Source, 'xommelier/atom/source' autoload :Feed, 'xommelier/atom/feed' autoload :Entry, 'xommelier/atom/entry' # Common extensions autoload :LinksExtension, 'xommelier/atom/links_extension' # Extensions autoload :Threading, 'xommelier/atom/threading' autoload :History, 'xommelier/atom/history' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
xommelier-0.1.16 | lib/xommelier/atom.rb |