Sha256: 0804a1bafe7a3a7063dbab0ec2ca72182d4c07afe29a97a3339b5eb9cc1a6cb1
Contents?: true
Size: 507 Bytes
Versions: 163
Compression:
Stored size: 507 Bytes
Contents
# frozen_string_literal: true module Nokogiri module XML ### # Represents an attribute declaration in a DTD class AttributeDecl < Nokogiri::XML::Node undef_method :attribute_nodes undef_method :attributes undef_method :content undef_method :namespace undef_method :namespace_definitions undef_method :line if method_defined?(:line) def inspect "#<#{self.class.name}:#{sprintf("0x%x", object_id)} #{to_s.inspect}>" end end end end
Version data entries
163 entries across 156 versions & 6 rubygems