123456789_123456789_123456789_123456789_123456789_

Module: RSS::Atom::PersonConstruct

Relationships & Source Files
Namespace Children
Classes:
Extension / Inclusion / Inheritance Descendants
Included In:
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

Class Method Summary

Instance Method Summary

Class Method Details

.append_features(klass)

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

[ GitHub ]

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

#maker_target(target)

[ GitHub ]

  
# File 'lib/rss/atom.rb', line 185

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