Sha256: 4b2611f96e3701f976b77ca00a32e4936577cdced3e0ebaecfe0294bb8124b32
Contents?: true
Size: 483 Bytes
Versions: 38
Compression:
Stored size: 483 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Class for parsing <i> tag class ColumnRowItem < OOXMLDocumentObject # @return [Symbol] type of item attr_reader :type # Parse `<location>` tag # @param [Nokogiri::XML:Element] node with location data # @return [Location] def parse(node) node.attributes.each do |key, value| case key when 't' @type = value.value.to_sym end end self end end end
Version data entries
38 entries across 38 versions & 1 rubygems