Class: Bundler::Molinillo::DependencyGraph::Edge

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

Overview

Instance Attribute Summary collapse

Instance Attribute Details

#destinationVertex

The destination of the directed edge

Returns:

  • (Vertex)

    the current value of destination



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

def destination
  @destination
end

#originVertex

The origin of the directed edge

Returns:

  • (Vertex)

    the current value of origin



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

def origin
  @origin
end

#requirementsArray

The requirements the directed edge represents

Returns:

  • (Array)

    the current value of requirements



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

def requirements
  @requirements
end