Support for the Ruby 2.4 series has ended. See here for reference.
![show/hide quicksearch [+]](../../../images/find.png)
 
               # File rss/maker/image.rb, line 77
def have_required_values?
  @about and @image_size
end
             
             
               # File rss/maker/image.rb, line 81
def to_feed(feed, current)
  if current.respond_to?(:image_favicon=) and have_required_values?
    favicon = current.class::ImageFavicon.new
    setup_values(favicon)
    setup_other_elements(favicon)
    current.image_favicon = favicon
  end
end