123456789_123456789_123456789_123456789_123456789_

Module: RSS::ITunesItemModel

Relationships & Source Files
Namespace Children
Classes:
Extension / Inclusion / Inheritance Descendants
Included In:
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
Instance Chain:
Defined in: lib/rss/itunes.rb

Constant Summary

ITunesBaseModel - Included

ELEMENTS, ELEMENT_INFOS

Class Method Summary

ITunesModelUtils - Extended

BaseModel - Extended

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.

h,
html_escape

Takes a string s with some HTML in it, and escapes ‘&’, ‘“’, ‘<’ and ‘>’, by replacing them with the appropriate entities.

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.

Class Method Details

.append_features(klass)

[ GitHub ]

  
# File 'lib/rss/itunes.rb', line 250

def append_features(klass)
  super

  return if klass.instance_of?(Module)
  ELEMENT_INFOS.each do |name, type|
    def_class_accessor(klass, name, type)
  end
end