Plist::PTag
# File lib/plist/parser.rb, line 162 def to_ruby dict = {} key = nil children.each do |c| if key.nil? key = c.to_ruby else dict[key] = c.to_ruby key = nil end end dict end