Sha256: 5b0b2726a4c5521986cd0a4978971b78e86dd487d222cfd121d3e367be8d3196
Contents?: true
Size: 934 Bytes
Versions: 6
Compression:
Stored size: 934 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 require 'ap' # # Awesome prints an {Report#to_hash} hash. # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> # # @version 0.1.1 # class Arachni::Reporters::AP < Arachni::Reporter::Base def run print_line print_status 'Awesome printing Report as a Hash...' ap report.to_hash print_status 'Done!' end def self.info { name: 'AP', description: %q{Awesome prints a scan report hash.}, author: 'Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com>', version: '0.1.1' } end end
Version data entries
6 entries across 6 versions & 1 rubygems