Sha256: 73763a70170eb3f39ab65c48ea059d4ea0bc9fef4d1f61c39747a04efd482442
Contents?: true
Size: 591 Bytes
Versions: 40
Compression:
Stored size: 591 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Single author `commentList` class CommentList < OOXMLDocumentObject attr_reader :comments def initialize(parent: nil) @comments = [] super end # Parse Author object # @param node [Nokogiri::XML:Element] node to parse # @return [CommentList] result of parsing def parse(node) node.xpath('*').each do |node_child| case node_child.name when 'comment' @comments << ExcelComment.new(parent: self).parse(node_child) end end self end end end
Version data entries
40 entries across 40 versions & 1 rubygems