Sha256: 9488fab5a263b0debc096b72bbdec8584f20e2304ec2ae14a65d5f6ba4d6eeb0
Contents?: true
Size: 655 Bytes
Versions: 6
Compression:
Stored size: 655 Bytes
Contents
=begin Copyright 2010-2015 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
6 entries across 6 versions & 1 rubygems