mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
d5b6a7b169
* test/rss/test_maker_{0.9,1.0}.rb: sort -> do_sort. * lib/rss/maker/*.rb: changed API to RSS version independence. * lib/rss/maker/base.rb (RSS::Maker::XMLStyleSheets::XMLStyleSheet): checked required (pseudo) attributes. * lib/rss/maker/base.rb (RSS::Maker::Items): sort -> do_sort. * lib/rss/rss.rb (RSS::BaseModel.install_date_element): avoided warning. * lib/rss/0.9.rb (RSS::Rss#textinput): added convenience method. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7182 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
27 lines
740 B
Ruby
27 lines
740 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 |element|
|
|
klass.add_need_initialize_variable(element)
|
|
klass.add_other_element(element)
|
|
klass.__send__(:attr_accessor, element)
|
|
klass.module_eval(<<-EOC, __FILE__, __LINE__)
|
|
def setup_#{element}(rss, current)
|
|
if #{element} and current.respond_to?(:#{element}=)
|
|
current.#{element} = @#{element} if @#{element}
|
|
end
|
|
end
|
|
EOC
|
|
end
|
|
end
|
|
end
|
|
|
|
class ChannelBase; include SyndicationModel; end
|
|
end
|
|
end
|