mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
18 lines
276 B
Ruby
18 lines
276 B
Ruby
|
require "rss/atom"
|
||
|
require "rss/dublincore"
|
||
|
|
||
|
module RSS
|
||
|
module Atom
|
||
|
Feed.install_ns(DC_PREFIX, DC_URI)
|
||
|
|
||
|
class Feed
|
||
|
include DublinCoreModel
|
||
|
class Entry; include DublinCoreModel; end
|
||
|
end
|
||
|
|
||
|
class Entry
|
||
|
include DublinCoreModel
|
||
|
end
|
||
|
end
|
||
|
end
|