File Manager

Path: /opt/chef.upgrade/embedded/lib/ruby/gems/2.3.0/gems/nokogiri-1.7.2/lib/nokogiri/xml/

Viewing File: attr.rb

module Nokogiri
  module XML
    class Attr < Node
      alias :value :content
      alias :to_s :content
      alias :content= :value=

      private
      def inspect_attributes
        [:name, :namespace, :value]
      end
    end
  end
end