模块 RSS::ITunesChannelModel

常量

ELEMENTS
ELEMENT_INFOS

公共类方法

append_features(klass) 点击以切换源代码
调用超类方法
# File rss-0.3.1/lib/rss/itunes.rb, line 68
def append_features(klass)
  super

  return if klass.instance_of?(Module)
  ELEMENT_INFOS.each do |name, type, *additional_infos|
    def_class_accessor(klass, name, type, *additional_infos)
  end
end