Sha256: 2d7b1cd3189ae76664b326805c6a3160fb608811b0beb570ee8661a742b65590
Contents?: true
Size: 443 Bytes
Versions: 13
Compression:
Stored size: 443 Bytes
Contents
module CMSScanner module Finders # Findings container class Findings < Array # Override to include the confirmed_by logic # # @param [ Finding ] finding def <<(finding) each do |found| next unless found == finding found.confirmed_by << finding found.confidence += finding.confidence return self end super(finding) end end end end
Version data entries
13 entries across 13 versions & 1 rubygems