Class: Objectify::Atom::Entry

Inherits:
DocumentParser show all
Defined in:
lib/objectify_xml/atom.rb

Overview

The feed has a collection of entries.

attributes :id,
  :published,
  :updated,
  :title,
  :summary
has_many :links, Link, 'link'
has_one :category, Category, 'category'
has_many :contents, Content, 'content'
has_one :author, :Author, 'author'
has_many :contributors, :Contributor, 'contributor'

Constant Summary

Constants inherited from Xml

Xml::VERSION

Instance Attribute Summary

Attributes inherited from Xml

#attributes, #parent

Method Summary

Methods inherited from DocumentParser

#primary_xml_element

Methods inherited from Xml

first_element, inherited, #initialize, #inspect, #pretty_print

Constructor Details

This class inherits a constructor from Objectify::Xml