Sha256: fe1acb9c7c3e8a5b69c0dadc49ffa54292e0ac3079f525fbe5096c896aa892a1
Contents?: true
Size: 481 Bytes
Versions: 561
Compression:
Stored size: 481 Bytes
Contents
module Nokogiri module HTML module SAX ### # Context for HTML SAX parsers. This class is usually not instantiated # by the user. Instead, you should be looking at # Nokogiri::HTML::SAX::Parser class ParserContext < Nokogiri::XML::SAX::ParserContext def self.new thing, encoding = 'UTF-8' [:read, :close].all? { |x| thing.respond_to?(x) } ? super : memory(thing, encoding) end end end end end
Version data entries
561 entries across 532 versions & 50 rubygems