Sha256: 0eb758bd8d1fca83707d48a2d77b9aace164f4044e42afbba2af6bffa2a97096
Contents?: true
Size: 605 Bytes
Versions: 48
Compression:
Stored size: 605 Bytes
Contents
# frozen_string_literal: true require_relative 'object/ole_object' module OoxmlParser # Class for parsing `w:object` class RunObject < OOXMLDocumentObject # @return [OleObject] ole object of object attr_accessor :ole_object # Parse RunObject object # @param node [Nokogiri::XML:Element] node to parse # @return [RunObject] result of parsing def parse(node) node.xpath('*').each do |node_child| case node_child.name when 'OLEObject' @ole_object = OleObject.new(parent: self).parse(node_child) end end self end end end
Version data entries
48 entries across 48 versions & 1 rubygems