Method: Puppet::Parser::Relationship#initialize

Defined in:
lib/puppet/parser/relationship.rb

#initialize(source, target, type) ⇒ Relationship

Returns a new instance of Relationship.



28
29
30
31
32
# File 'lib/puppet/parser/relationship.rb', line 28

def initialize(source, target, type)
  @source = source
  @target = target
  @type = type
end