Sha256: a5f05e79a4cee1d0ab07cb61053a30f70fe0dc4d767a90b6480a071fc8199edf
Contents?: true
Size: 772 Bytes
Versions: 3
Compression:
Stored size: 772 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 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
arachni-1.2.1 | lib/arachni/issue/severity.rb |
arachni-1.2 | lib/arachni/issue/severity.rb |
arachni-1.1 | lib/arachni/issue/severity.rb |