Class: RailsGraph::Graph::Relationships::PackDependency

Inherits:
RailsGraph::Graph::Relationship show all
Defined in:
lib/rails_graph/graph/relationships/pack_dependency.rb

Instance Attribute Summary

Attributes inherited from RailsGraph::Graph::Relationship

#label, #source, #target

Attributes inherited from Entity

#id, #name, #properties

Instance Method Summary collapse

Methods inherited from RailsGraph::Graph::Relationship

#as_json, #identifier

Methods inherited from Entity

#identifier

Constructor Details

#initialize(source, target) ⇒ PackDependency

Returns a new instance of PackDependency.



9
10
11
12
13
14
15
16
# File 'lib/rails_graph/graph/relationships/pack_dependency.rb', line 9

def initialize(source, target)
  super(
    source: source,
    target: target,
    label: "DependsOnPack",
    name: target.name
  )
end