The PersonConstruct module is used to define a Person Atom element that can be used to describe a person, corporation, or similar entity
The PersonConstruct has a Name, Uri, and Email child elements
Namespace
- CLASS RSS::Atom::PersonConstruct::Email
- CLASS RSS::Atom::PersonConstruct::Name
- CLASS RSS::Atom::PersonConstruct::Uri
Methods
Class Public methods
append_features(klass)
Link
Adds attributes for name, uri, and email to the klass
Source: show
# File lib/rss/atom.rb, line 172 def self.append_features(klass) super klass.class_eval do [ ["name", nil], ["uri", "?"], ["email", "?"], ].each do |tag, occurs| install_have_attribute_element(tag, URI, occurs, nil, :content) end end end
Instance Public methods