mirror of
https://github.com/ruby/ruby.git
synced 2025-09-16 09:04:05 +02:00

- 0.1.6 -> 2.0.0. - fixed image module URI. Thanks to Dmitry Borodaenko. - supported Atom. - supported ITunes module. - supported Slash module. * NEWS: added an entry for RSS Parser. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@13747 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
18 lines
349 B
Ruby
18 lines
349 B
Ruby
require 'rss/syndication'
|
|
require 'rss/maker/1.0'
|
|
|
|
module RSS
|
|
module Maker
|
|
module SyndicationModel
|
|
def self.append_features(klass)
|
|
super
|
|
|
|
::RSS::SyndicationModel::ELEMENTS.each do |name|
|
|
klass.def_other_element(name)
|
|
end
|
|
end
|
|
end
|
|
|
|
class ChannelBase; include SyndicationModel; end
|
|
end
|
|
end
|