Class: RSS::ImageItemModel::ImageItem
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
| 
         Class Chain: 
        
       | 
    |
| 
         Instance Chain: 
        
       | 
    |
| Inherits: | 
        RSS::Element
        
  | 
    
| Defined in: | lib/rss/image.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::RSS10 - Included
  
  ::RSS::DublinCoreModel - Included
  
Class Attribute Summary
::RSS::Element - Inherited
Class Method Summary
- .new(*args) ⇒ ImageItem constructor
 - .required_prefix
 - .required_uri
 
::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   | 
    
| to_class_name | Given a   | 
    
Instance Attribute Summary
::RSS::Element - Inherited
Instance Method Summary
- #full_name
 - #height
 - #height=
 - #width
 - #width=
 - #maker_target(target) private
 - #setup_maker_attributes(item) private
 
::RSS::Element - Inherited
::RSS::SetupMaker - Included
Constructor Details
    .new(*args)  ⇒ ImageItem 
  
# File 'lib/rss/image.rb', line 85
def initialize(*args) if Utils.element_initialize_arguments?(args) super else super() self.about = args[0] self.resource = args[1] end end
Class Method Details
.required_prefix
[ GitHub ]# File 'lib/rss/image.rb', line 53
def required_prefix IMAGE_PREFIX end
.required_uri
[ GitHub ]# File 'lib/rss/image.rb', line 57
def required_uri IMAGE_URI end
Instance Method Details
#full_name
[ GitHub ]# File 'lib/rss/image.rb', line 95
def full_name tag_name_with_prefix(IMAGE_PREFIX) end
#height
[ GitHub ]# File 'lib/rss/image.rb', line 83
alias height image_height
#height=
[ GitHub ]# File 'lib/rss/image.rb', line 82
alias height= image_height=
#maker_target(target) (private)
[ GitHub ]# File 'lib/rss/image.rb', line 100
def maker_target(target) target.image_item end
#setup_maker_attributes(item) (private)
[ GitHub ]# File 'lib/rss/image.rb', line 104
def setup_maker_attributes(item) item.about = self.about item.resource = self.resource end
#width
[ GitHub ]# File 'lib/rss/image.rb', line 81
alias width image_width
#width=
[ GitHub ]# File 'lib/rss/image.rb', line 80
alias width= image_width=