Sha256: 79d8cf2454aeaa8b58229ca36c201c69d795fe690edac38a2b9e96371a92da03
Contents?: true
Size: 1.21 KB
Versions: 2
Compression:
Stored size: 1.21 KB
Contents
module CMSScanner module Finders # Finding module Finding # Fix for "Double/Dynamic Inclusion Problem" def self.included(base) base.include References super(base) end FINDING_OPTS = %i[confidence confirmed_by references found_by interesting_entries].freeze attr_accessor(*FINDING_OPTS) # @return [ Array ] def confirmed_by @confirmed_by ||= [] end # Should be overriden in child classes # @return [ Array ] def interesting_entries @interesting_entries ||= [] end # @return [ Integer ] def confidence @confidence ||= 0 end # @param [ Integer ] value def confidence=(value) @confidence = value >= 100 ? 100 : value end # @param [ Hash ] opts def parse_finding_options(opts = {}) FINDING_OPTS.each { |opt| send("#{opt}=", opts[opt]) if opts.key?(opt) } end # TODO: maybe also check for interesting_entries and confirmed_by ? def eql?(other) self == other && confidence == other.confidence && found_by == other.found_by end def <=>(other) to_s.downcase <=> other.to_s.downcase end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cms_scanner-0.0.38.1 | lib/cms_scanner/finders/finding.rb |
cms_scanner-0.0.38.0 | lib/cms_scanner/finders/finding.rb |