public Method

ImageModelUtils.validate_one_tag_name(ignore_unknown_element, name, tags)

There's no documentation for this item.

Source Code

# File rss/image.rb, line 20
def validate_one_tag_name(ignore_unknown_element, name, tags)
  if !ignore_unknown_element
    invalid = tags.find {|tag| tag != name}
    raise UnknownTagError.new(invalid, IMAGE_URI) if invalid
  end
  raise TooMuchTagError.new(name, tag_name) if tags.size > 1
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.