Sha256: 832850fe1b3aadecbbc487b8b5096fbb352502afe230765a5eea4489bc5a20de
Contents?: true
Size: 363 Bytes
Versions: 10
Compression:
Stored size: 363 Bytes
Contents
module CMSScanner # Dummy Finding class DummyFinding include Finders::Finding attr_reader :r def initialize(r, opts = {}) @r = r parse_finding_options(opts) end def ==(other) r == other.r end def eql?(other) r == other.r && confidence == other.confidence && found_by == other.found_by end end end
Version data entries
10 entries across 10 versions & 1 rubygems