Sha256: 8f79329c83717d0c5394f649ff58750d373a3278592a2b5af48501969a4e0a6e
Contents?: true
Size: 934 Bytes
Versions: 7
Compression:
Stored size: 934 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 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
7 entries across 7 versions & 1 rubygems