Class: FeedNormalizer::Feed

Inherits:
Object
  • Object
show all
Includes:
ElementCleaner, ElementEquality, Singular
Defined in:
lib/structures.rb

Overview

Represents the root element of a feed.

Constant Summary collapse

HTML_ELEMENTS =

Elements that can contain HTML fragments.

[:title, :description]
SIMPLE_ELEMENTS =

Elements that contain ‘plain’ Strings, with HTML escaped.

[:id, :last_updated, :copyright, :authors, :urls, :image, :generator]
BLENDED_ELEMENTS =

Elements that contain both HTML and escaped HTML.

[:items]
ELEMENTS =
HTML_ELEMENTS + SIMPLE_ELEMENTS + BLENDED_ELEMENTS

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Singular

#method_missing, #respond_to?

Methods included from ElementEquality

#==, #diff, #eql?

Methods included from ElementCleaner

#clean!

Constructor Details

#initialize(wrapper) ⇒ Feed

Returns a new instance of Feed.



158
159
160
161
162
163
164
# File 'lib/structures.rb', line 158

def initialize(wrapper)
  # set up associations (i.e. arrays where needed)
  @urls = []
  @authors = []
  @items = []
  @parser = wrapper.parser.to_s
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class FeedNormalizer::Singular

Instance Attribute Details

#parserObject

Returns the value of attribute parser.



154
155
156
# File 'lib/structures.rb', line 154

def parser
  @parser
end

Instance Method Details

#channelObject



166
# File 'lib/structures.rb', line 166

def channel() self end