Sha256: 04eb1e69006df918c7fb0ed142db3c2c916ccc7727c3cfada67afaa25dda8e9b
Contents?: true
Size: 557 Bytes
Versions: 4
Compression:
Stored size: 557 Bytes
Contents
module Sniffles module Sniffers class Movabletype 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? !!(meta_generator_content =~ /Movable Type/) end def meta_generator_content text_at("//meta[@name='generator']/@content") end end end end
Version data entries
4 entries across 4 versions & 1 rubygems