Sha256: c65f643cbe73f233f4952698c800f73232c13e24fcdcee96a056cf39914b4366

Contents?: true

Size: 730 Bytes

Versions: 49

Compression:

Stored size: 730 Bytes

Contents

# frozen_string_literal: true

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

49 entries across 49 versions & 1 rubygems

Version Path
ooxml_parser-0.9.0 lib/ooxml_parser/common_parser/common_data/relationships/relationship.rb
ooxml_parser-0.8.1 lib/ooxml_parser/common_parser/common_data/relationships/relationship.rb
ooxml_parser-0.8.0 lib/ooxml_parser/common_parser/common_data/relationships/relationship.rb
ooxml_parser-0.7.2 lib/ooxml_parser/common_parser/common_data/relationships/relationship.rb
ooxml_parser-0.7.1 lib/ooxml_parser/common_parser/common_data/relationships/relationship.rb
ooxml_parser-0.7.0 lib/ooxml_parser/common_parser/common_data/relationships/relationship.rb
ooxml_parser-0.6.0 lib/ooxml_parser/common_parser/common_data/relationships/relationship.rb
ooxml_parser-0.5.1 lib/ooxml_parser/common_parser/common_data/relationships/relationship.rb
ooxml_parser-0.5.0 lib/ooxml_parser/common_parser/common_data/relationships/relationship.rb