Sha256: d59441e0881f1391666af7be7d71aee8c71214dd8eb39b2bbaf01cafa129ce33
Contents?: true
Size: 438 Bytes
Versions: 21
Compression:
Stored size: 438 Bytes
Contents
module Nokogiri module XML class DTD < Nokogiri::XML::Node undef_method :attribute_nodes undef_method :values undef_method :content undef_method :namespace undef_method :namespace_definitions undef_method :line def keys attributes.keys end def each &block attributes.each { |key, value| block.call([key, value]) } end end end end
Version data entries
21 entries across 21 versions & 3 rubygems