Class: Molinillo::DependencyGraph::Edge

Inherits:
Struct
  • Object
show all
Defined in:
lib/molinillo/dependency_graph.rb

Overview

A directed edge of a Molinillo::DependencyGraph

Instance Attribute Summary collapse

Instance Attribute Details

#destinationVertex

The destination of the directed edge



38
39
40
# File 'lib/molinillo/dependency_graph.rb', line 38

def destination
  @destination
end

#originVertex

The origin of the directed edge



38
39
40
# File 'lib/molinillo/dependency_graph.rb', line 38

def origin
  @origin
end

#requirementsArray

The requirements the directed edge represents



38
39
40
# File 'lib/molinillo/dependency_graph.rb', line 38

def requirements
  @requirements
end