Sha256: b09562e672992daf93f5bc1e73ff6e29b86a3e631456afb090e74da53a0d202b

Contents?: true

Size: 776 Bytes

Versions: 3

Compression:

Stored size: 776 Bytes

Contents

module XmlHasher
  class Node
    attr_accessor :name, :attributes, :children, :text

    def initialize(name)
      @name = name
      @attributes = {}
      @children = []
    end

    def to_hash
      h = {}
      if text && !text.empty?
        h[name] = text
      else
        h[name] = attributes.inject({}) { |r, (key, value)| r[key] = value if !value.nil? && !value.to_s.empty?; r }
        if children.size == 1
          child = children.first
          h[name].merge!(child.to_hash)
        else
          h[name].merge!(children.group_by { |child| child.name }.inject({}) { |r, (k, v)| v.length == 1 ? r.merge!(v.first.to_hash) : r[k] = v.map { |c| c.to_hash[c.name] }; r })
        end
      end
      h[name] = nil if h[name].empty?
      h
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
xmlhasher-1.0.2 lib/xmlhasher/node.rb
xmlhasher-1.0.1 lib/xmlhasher/node.rb
xmlhasher-1.0.0 lib/xmlhasher/node.rb