Sha256: f87a85243c4daa254f76991fcf397def9d2504eba80f4cd7fa368eecc5e09fae
Contents?: true
Size: 440 Bytes
Versions: 4
Compression:
Stored size: 440 Bytes
Contents
module Sniffles module Sniffers class Bigcommerce 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? /config\.ShopPath/ end end end end
Version data entries
4 entries across 4 versions & 1 rubygems