Sha256: dfb01f8b964718753a9646a7f95f59bbefc9e3017dba510b1ebf0868304132a0
Contents?: true
Size: 463 Bytes
Versions: 4
Compression:
Stored size: 463 Bytes
Contents
module Sniffles module Sniffers class Chartbeat 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? /static\.chartbeat\.com\/js\/chartbeat\.js/ end end end end
Version data entries
4 entries across 4 versions & 1 rubygems