File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/nokogiri-1.10.10/lib/nokogiri/xml/

Viewing File: namespace.rb

module Nokogiri
  module XML
    class Namespace
      include Nokogiri::XML::PP::Node
      attr_reader :document

      private
      def inspect_attributes
        [:prefix, :href]
      end
    end
  end
end