Sha256: 3e252480dcecfe9245e16680ed602810e6a1c967e64edfc49f367a22b007a79f
Contents?: true
Size: 529 Bytes
Versions: 163
Compression:
Stored size: 529 Bytes
Contents
# frozen_string_literal: true module Nokogiri module XML class EntityReference < Nokogiri::XML::Node def children # libxml2 will create a malformed child node for predefined # entities. because any use of that child is likely to cause a # segfault, we shall pretend that it doesn't exist. # # see https://github.com/sparklemotion/nokogiri/issues/1238 for details NodeSet.new(document) end def inspect_attributes [:name] end end end end
Version data entries
163 entries across 156 versions & 6 rubygems