Module: RSS::ITunesChannelModel
| 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
- 
    ELEMENTS =
    
# File 'lib/rss/itunes.rb', line 65[]
 - 
    ELEMENT_INFOS =
    
# File 'lib/rss/itunes.rb', line 78[ ["category", :elements, "categories", "text"], ["image", :attribute, "href"], ["owner", :element], ["new-feed-url"], ] + ITunesBaseModel::ELEMENT_INFOS
 
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 68
def append_features(klass) super return if klass.instance_of?(Module) ELEMENT_INFOS.each do |name, type, *additional_infos| def_class_accessor(klass, name, type, *additional_infos) end end