Sha256: bea5a747f3c521baf64a8c1407de5514dc06b0972cccd7aa8681a77143727668
Contents?: true
Size: 839 Bytes
Versions: 8
Compression:
Stored size: 839 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 :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
8 entries across 8 versions & 1 rubygems