class OpenXml::Parts::Rels::Relationship

Public Class Methods

new(type, target, id=nil) click to toggle source
Calls superclass method
# File lib/open_xml/parts/rels.rb, line 47
def initialize(type, target, id=nil)
  super type, target, id || "R#{SecureRandom.hex}"
end