Sha256: afa8025cc4277aa82b8afdd2e0195527f363fe826c4275ba686d61d432aee9a9
Contents?: true
Size: 871 Bytes
Versions: 40
Compression:
Stored size: 871 Bytes
Contents
# frozen_string_literal: true require_relative 'fills/fill' module OoxmlParser # Parsing `fonts` tag class Fills < OOXMLDocumentObject # @return [Array, Fill] array of fills attr_accessor :fills_array def initialize(parent: nil) @fills_array = [] super end # @return [Array, Fill] accessor def [](key) @fills_array[key] end # Parse Fills data # @param [Nokogiri::XML:Element] node with Fills data # @return [Fills] value of Fills data def parse(node) node.attributes.each do |key, value| case key when 'count' @count = value.value.to_i end end node.xpath('*').each do |node_child| case node_child.name when 'fill' @fills_array << Fill.new(parent: self).parse(node_child) end end self end end end
Version data entries
40 entries across 40 versions & 1 rubygems