Sha256: 1e83e4c45acb22d0137536d487c889c4994e8c1404b820e3a22f1b724f7e2f8f
Contents?: true
Size: 878 Bytes
Versions: 6
Compression:
Stored size: 878 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 module Arachni class State # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> class Options def statistics { url: Arachni::Options.url, checks: Arachni::Options.checks, plugins: Arachni::Options.plugins.keys } end def dump( directory ) FileUtils.mkdir_p( directory ) Arachni::Options.save( "#{directory}/options" ) end def self.load( directory ) Arachni::Options.load( "#{directory}/options" ) new end def clear end end end end
Version data entries
6 entries across 6 versions & 1 rubygems