Class RSS::ImageItemModel::ImageItem
In: rss/image.rb
Parent: Element

Methods

Included Modules

RSS10 DublinCoreModel

External Aliases

image_width= -> width=
image_width -> width
image_height= -> height=
image_height -> height

Public Class methods

[Source]

# File rss/image.rb, line 80
      def initialize(*args)
        if Utils.element_initialize_arguments?(args)
          super
        else
          super()
          self.about = args[0]
          self.resource = args[1]
        end
      end

[Source]

# File rss/image.rb, line 48
        def required_prefix
          IMAGE_PREFIX
        end

[Source]

# File rss/image.rb, line 52
        def required_uri
          IMAGE_URI
        end

Public Instance methods

[Source]

# File rss/image.rb, line 90
      def full_name
        tag_name_with_prefix(IMAGE_PREFIX)
      end

[Validate]

ruby-doc.org is a community service provided by James Britt and Happy Camper Studios, a Phoenix, Arizona, Ruby application development company.

Documentation content on ruby-doc.org is provided by remarkable members of the Ruby community.

For more information on the Ruby programming language, visit ruby-lang.org.

Want to help improve Ruby's API docs? See Ruby Documentation Guidelines.