Sha256: a8cdd7379306b8cc328e867c5d89c17499e629fcad3cc7aea1b46356078bc8b9
Contents?: true
Size: 426 Bytes
Versions: 4
Compression:
Stored size: 426 Bytes
Contents
module Sniffles module Sniffers class Jquery include Text attr_accessor :doc attr_reader :output def initialize(response_body) @output = {} parse(response_body) && process_document end def process_document @output[:found] = found? end private def found? match?(/jQuery/) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems