| DIR: /proc/self/root/proc/self/root/opt/cpanel/ea-ruby24/root/usr/share/ruby/rss/maker/ |
| Current File : //proc/self/root/proc/self/root/opt/cpanel/ea-ruby24/root/usr/share/ruby/rss/maker/syndication.rb |
# 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
|