Sha256: a189e5d44a95f95fb814dbe2f6d91aad1e51d84ec17edf5c5a4a7c7022264fca
Contents?: true
Size: 448 Bytes
Versions: 4
Compression:
Stored size: 448 Bytes
Contents
module Sniffles module Sniffers class Cscart include HTML 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? !!(@doc.text =~ /Powered by CS\-Cart/) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems