Sha256: cab7dbafa092b426d5fc68ef21108d56f0e2561dfb099fd4b0b414e4545f94b6
Contents?: true
Size: 606 Bytes
Versions: 39
Compression:
Stored size: 606 Bytes
Contents
module CMSScanner module Finders # Independent Finder module IndependentFinder extend ActiveSupport::Concern # See ActiveSupport::Concern module ClassMethods def find(target, opts = {}) new(target).find(opts) end end # @param [ Hash ] opts # @option opts [ Symbol ] mode (:mixed, :passive, :aggressive) # # @return [ Findings ] def find(opts = {}) finders.run(opts) end # @return [ Array ] def finders @finders ||= NS::Finders::IndependentFinders.new end end end end
Version data entries
39 entries across 39 versions & 1 rubygems