Methods
A
Constants
ELEMENTS = ["#{CONTENT_PREFIX}_encoded"]
 
Class Public methods
append_features(klass)
# File lib/rss/content.rb, line 12
def self.append_features(klass)
  super

  klass.install_must_call_validator(CONTENT_PREFIX, CONTENT_URI)
  ELEMENTS.each do |full_name|
    name = full_name[(CONTENT_PREFIX.size + 1)..-1]
    klass.install_text_element(name, CONTENT_URI, "?", full_name)
  end
end