method

inherit_convert_attr_reader

inherit_convert_attr_reader(*attrs)
private

No documentation available.

# File lib/rss/rss.rb, line 326
    def inherit_convert_attr_reader(*attrs)
      attrs.each do |attr|
        attr = attr.id2name if attr.kind_of?(Integer)
        module_eval(        def #{attr}_without_inherit          convert(@#{attr})        end        def #{attr}          if @#{attr}            #{attr}_without_inherit          elsif @parent            @parent.#{attr}          else            nil          end        end, *get_file_and_line_from_caller(2))
      end
    end