Sha256: 2c052e3812b2e5676a9aaf6f9e31a4f4b3d75586b4b7caa38271420a7287eb19
Contents?: true
Size: 772 Bytes
Versions: 7
Compression:
Stored size: 772 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 require Options.paths.lib + 'issue/severity/base' class Issue # Holds different severity levels. # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> module Severity ORDER = [ :high, :medium, :low, :informational ] HIGH = Base.new( :high ) MEDIUM = Base.new( :medium ) LOW = Base.new( :low ) INFORMATIONAL = Base.new( :informational ) end end end
Version data entries
7 entries across 7 versions & 1 rubygems