Class: RSS::ImageFaviconModel::ImageFavicon

Inherits:
Element
  • Object
show all
Includes:
DublinCoreModel, RSS10
Defined in:
lib/rss/image.rb

Constant Summary collapse

AVAILABLE_SIZES =
%w(small medium large)

Constants included from DublinCoreModel

DublinCoreModel::DATE_ELEMENTS, DublinCoreModel::ELEMENTS, DublinCoreModel::ELEMENT_NAME_INFOS, DublinCoreModel::TEXT_ELEMENTS

Constants included from RSS10

RSS10::ELEMENTS, RSS10::NSPOOL

Constants inherited from Element

Element::GET_ATTRIBUTES, Element::HAVE_CHILDREN_ELEMENTS, Element::INDENT, Element::MODELS, Element::MUST_CALL_VALIDATORS, Element::NEED_INITIALIZE_VARIABLES, Element::PLURAL_FORMS, Element::TO_ELEMENT_METHODS

Instance Attribute Summary

Attributes inherited from Element

#do_validate

Class Method Summary collapse

Instance Method Summary collapse

Methods included from BaseModel

#install_date_element, #install_have_child_element, #install_have_children_element, #install_text_element

Methods included from Utils

element_initialize_arguments?, get_file_and_line_from_caller, html_escape, new_with_value_if_need, to_class_name

Methods included from BaseDublinCoreModel

#append_features

Methods included from RSS10

append_features

Methods inherited from Element

#convert, #converter=, get_attributes, have_children_elements, inherited, install_ns, models, must_call_validators, need_initialize_variables, plural_forms, #setup_maker, tag_name, #tag_name, to_element_methods, #to_s, #validate, #validate_for_stream

Constructor Details

#initialize(*args) ⇒ ImageFavicon

Returns a new instance of ImageFavicon.



161
162
163
164
165
166
167
168
169
# File 'lib/rss/image.rb', line 161

def initialize(*args)
  if Utils.element_initialize_arguments?(args)
    super
  else
    super()
    self.about = args[0]
    self.size = args[1]
  end
end

Class Method Details

.required_prefixObject



127
128
129
# File 'lib/rss/image.rb', line 127

def required_prefix
  IMAGE_PREFIX
end

.required_uriObject



131
132
133
# File 'lib/rss/image.rb', line 131

def required_uri
  IMAGE_URI
end

Instance Method Details

#full_nameObject



171
172
173
# File 'lib/rss/image.rb', line 171

def full_name
  tag_name_with_prefix(IMAGE_PREFIX)
end

#size=(new_value) ⇒ Object Also known as: image_size=



147
148
149
150
151
152
153
154
155
156
# File 'lib/rss/image.rb', line 147

def size=(new_value)
  if @do_validate and !new_value.nil?
    new_value = new_value.strip
    unless AVAILABLE_SIZES.include?(new_value)
      attr_name = "#{IMAGE_PREFIX}:size"
      raise NotAvailableValueError.new(full_name, new_value, attr_name)
    end
  end
  __send__(:_size=, new_value)
end