Hi,
Today morning my target is going through the ` Nokogiri::XML::AttributeDecl` methods. So I wrote some simple codes to understand these methods:
require 'nokogiri'
doc = Nokogiri::XML::Document.new # => #<Nokogiri::XML::Document:0x44a5070 name="document">
attdcl = Nokogiri::XML::AttributeDecl.new('bar',doc) # => #<Nokogiri::XML::AttributeDecl:0x449d0dc "<bar/>"> attdcl.enumeration # => attdcl.attribute_type # => 0 attdcl.default # => nil
Now my questions are below :
(a) why does `attdcl.enumeration` give empty array? What I need to change to get an non-empty array? (b) why does `attdcl.default` give `nil`? What I need to change to get an non-nil value?
Thanks