123456789_123456789_123456789_123456789_123456789_

Class: RSS::Rss::Channel

Relationships & Source Files
Namespace Children
Classes:
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
Instance Chain:
Inherits: RSS::Element
Defined in: lib/rss/0.9.rb,
lib/rss/2.0.rb,
lib/rss/itunes.rb,
lib/rss/trackback.rb,
lib/rss/content/2.0.rb,
lib/rss/dublincore/2.0.rb

Constant Summary

::RSS::Element - Inherited

GET_ATTRIBUTES, HAVE_CHILDREN_ELEMENTS, INDENT, MODELS, MUST_CALL_VALIDATORS, NEED_INITIALIZE_VARIABLES, PLURAL_FORMS, TO_ELEMENT_METHODS

::RSS::RSS09 - Included

ELEMENTS, NSPOOL

::RSS::ITunesBaseModel - Included

ELEMENTS, ELEMENT_INFOS

::RSS::ITunesChannelModel - Included

ELEMENTS, ELEMENT_INFOS

::RSS::DublinCoreModel - Included

DATE_ELEMENTS, ELEMENTS, ELEMENT_NAME_INFOS, TEXT_ELEMENTS

Class Attribute Summary

Class Method Summary

::RSS::Element - Inherited

::RSS::Utils::InheritedReader - Extended

::RSS::BaseModel - Extended

::RSS::Utils - Included

element_initialize_arguments?

This method is used inside of several different objects to determine if special behavior is needed in the constructor.

get_file_and_line_from_caller

Returns an array of two elements: the filename where the calling method is located, and the line number where it is defined.

new_with_value_if_need

If value is an instance of class klass, return it, else create a new instance of klass with value value.

to_class_name

Given a name in a name_with_underscores or a name-with-dashes format, returns the CamelCase version of name.

Instance Attribute Summary

Instance Method Summary

Constructor Details

This class inherits a constructor from RSS::Element

Instance Method Details

#date

[ GitHub ]

  
# File 'lib/rss/0.9.rb', line 133

alias date pubDate

#date=

[ GitHub ]

  
# File 'lib/rss/0.9.rb', line 134

alias date= pubDate=

#maker_target(maker) (private)

[ GitHub ]

  
# File 'lib/rss/0.9.rb', line 137

def maker_target(maker)
  maker.channel
end

#not_need_to_call_setup_maker_variables (private)

[ GitHub ]

  
# File 'lib/rss/0.9.rb', line 157

def not_need_to_call_setup_maker_variables
  %w(image textInput)
end

#setup_maker_elements(channel) (private)

[ GitHub ]

  
# File 'lib/rss/0.9.rb', line 141

def setup_maker_elements(channel)
  super
  [
    [skipDays, "day"],
    [skipHours, "hour"],
  ].each do |skip, key|
    if skip
      skip.__send__("#{key}s").each do |val|
        target_skips = channel.__send__("skip#{key.capitalize}s")
        new_target = target_skips.__send__("new_#{key}")
        new_target.content = val.content
      end
    end
  end
end