Module: RSS::Atom::PersonConstruct

Included in:
Feed::Author, Feed::Contributor
Defined in:
lib/rss/atom.rb

Overview

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.

Reference: validator.w3.org/feed/docs/rfc4287.html#atomPersonConstruct

Defined Under Namespace

Classes: Email, Name, Uri

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.append_features(klass) ⇒ Object

Adds attributes for name, uri, and email to the klass



182
183
184
185
186
187
188
189
190
191
192
193
# File 'lib/rss/atom.rb', line 182

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 Method Details

#maker_target(target) ⇒ Object



195
196
197
# File 'lib/rss/atom.rb', line 195

def maker_target(target)
  target.__send__("new_#{self.class.name.split(/::/).last.downcase}")
end