/opt/cpanel/ea-ruby27/root/usr/share/ruby/ruby-2.7.8/rss/maker
NameSizeModeActions
0.9.rb120830644editdlrm
1.0.rb102920644editdlrm
2.0.rb58590644editdlrm
atom.rb46450644editdlrm
base.rb246750644editdlrm
content.rb4210644editdlrm
dublincore.rb38630644editdlrm
entry.rb48480644editdlrm
feed.rb128070644editdlrm
image.rb29650644editdlrm
itunes.rb74910644editdlrm
slash.rb7730644editdlrm
syndication.rb3870644editdlrm
taxonomy.rb32170644editdlrm
trackback.rb16430644editdlrm
Edit: /opt/cpanel/ea-ruby27/root/usr/share/ruby/ruby-2.7.8/rss/maker/slash.rb (773B)
# frozen_string_literal: false require_relative '../slash' require_relative '1.0' module RSS module Maker module SlashModel def self.append_features(klass) super ::RSS::SlashModel::ELEMENT_INFOS.each do |name, type| full_name = "#{RSS::SLASH_PREFIX}_#{name}" case type when :csv_integer klass.def_csv_element(full_name, :integer) else klass.def_other_element(full_name) end end klass.module_eval do alias_method(:slash_hit_parades, :slash_hit_parade) alias_method(:slash_hit_parades=, :slash_hit_parade=) end end end class ItemsBase class ItemBase include SlashModel end end end end