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: 
          self,
          ITunesBaseModel
         | |
| Defined in: | lib/rss/itunes.rb | 
Constant Summary
- 
    ELEMENT_INFOS =
    
 # File 'lib/rss/itunes.rb', line 259ITunesBaseModel::ELEMENT_INFOS + [["duration", :element, "content"]] 
ITunesBaseModel - Included
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  | 
| new_with_value_if_need | If  | 
| to_class_name | Given a  | 
Class Method Details
.append_features(klass)
[ GitHub ]# File 'lib/rss/itunes.rb', line 249
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