= private = protected
maybe_xml?(source)
maybe_xml? tests if source is a string that looks like XML.
# File lib/rss/parser.rb, line 112 def maybe_xml?(source) source.is_a?(String) and /</ =~ source end