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