зеркало из https://github.com/github/ruby.git
20 строки
380 B
Ruby
20 строки
380 B
Ruby
# frozen_string_literal: false
|
|
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
|