Sha256: 302840dcdeb93cf638d01c0608ddaa719d4c571a4f9f930582f28cb5b3fbaf55

Contents?: true

Size: 717 Bytes

Versions: 2

Compression:

Stored size: 717 Bytes

Contents

=begin
    Copyright 2010-2017 Sarosys LLC <http://www.sarosys.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

2 entries across 2 versions & 1 rubygems

Version Path
arachni-1.5.1 components/reporters/plugin_formatters/xml/exec.rb
arachni-1.5 components/reporters/plugin_formatters/xml/exec.rb