Sha256: 9bb9c9693fa630d39ecd41ebc256f599263d9df637c490bd81878885ff1b298c
Contents?: true
Size: 728 Bytes
Versions: 6
Compression:
Stored size: 728 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 # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> class PluginFormatters::Exec < Arachni::Plugin::Formatter def run( xml ) results.each do |stage, data| xml.outcome { xml.stage stage data.each do |name, value| xml.send( name, value ) end } end end end end
Version data entries
6 entries across 6 versions & 1 rubygems