Sha256: a919239378ba7a01e1d4bcd33ae0861622f43f6ba4933b432c7d755b8e5b09b8
Contents?: true
Size: 816 Bytes
Versions: 1
Compression:
Stored size: 816 Bytes
Contents
# frozen_string_literal: true ################################################ # © Alexander Semyonov, 2011—2013, MIT License # # Author: Alexander Semyonov <al@semyonov.us> # ################################################ require 'xommelier/xml' module Xommelier # Implements The Atom Syndication Format # See RFC 4287 {http://tools.ietf.org/html/rfc4287.html} module Atom extend ActiveSupport::Autoload include Xommelier::Xml xmlns 'http://www.w3.org/2005/Atom', as: :atom # Elements autoload :Link autoload :Person autoload :Category autoload :Content autoload :Generator autoload :Source autoload :Feed autoload :Entry # Common extensions autoload :LinksExtension # Extensions autoload :Threading autoload :History end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
xommelier-0.1.35 | lib/xommelier/atom.rb |