Sha256: 741e2baf7e413542c543e4de7791c912c912933c38d2dce78ecdd03adaa0b230
Contents?: true
Size: 699 Bytes
Versions: 4
Compression:
Stored size: 699 Bytes
Contents
module OoxmlParser # Class for single relationship class Relationship < OOXMLDocumentObject # @return [String] id of relation attr_accessor :id # @return [String] type of relation attr_accessor :type # @return [String] target of relation attr_accessor :target # Parse Relationship # @param [Nokogiri::XML:Node] node with Relationship # @return [Relationship] result of parsing def parse(node) node.attributes.each do |key, value| case key when 'Id' @id = value.value when 'Type' @type = value.value when 'Target' @target = value.value end end self end end end
Version data entries
4 entries across 4 versions & 1 rubygems