Sha256: b3264206bacb62159d857d468ee88bf6eb7b71e17cca33250e05b1c2bf0b29d9
Contents?: true
Size: 655 Bytes
Versions: 7
Compression:
Stored size: 655 Bytes
Contents
=begin Copyright 2010-2014 Tasos Laskos <tasos.laskos@arachni-scanner.com> This file is part of the Arachni Framework project and is subject to redistribution and commercial restrictions. Please see the Arachni Framework web site for more information on licensing and terms of use. =end class Arachni::Reporters::XML # XML formatter for the results of the Uniformity plugin. # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> class PluginFormatters::Uniformity < Arachni::Plugin::Formatter def run( xml ) results.each do |digests| xml.digests digests.join( ' ' ) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems