Sha256: 1b8a64e58df7ef366bb5910888df599835b5f040cad2c1274f0206dab0af8e88
Contents?: true
Size: 473 Bytes
Versions: 48
Compression:
Stored size: 473 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # LineJoin data class LineJoin < OOXMLDocumentObject attr_accessor :type # Parse LineJoin object # @param node [Nokogiri::XML:Element] node to parse # @return [LineJoin] result of parsing def parse(node) node.xpath('*').each do |node_child| case node_child.name when 'round', 'bevel' @type = node_child.name.to_sym end end self end end end
Version data entries
48 entries across 48 versions & 1 rubygems