Class: Bundler::Molinillo::DependencyGraph::Edge
- Inherits:
-
Struct
- Object
- Struct
- Bundler::Molinillo::DependencyGraph::Edge
- Defined in:
- lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb
Overview
A directed edge of a Bundler::Molinillo::DependencyGraph
Instance Attribute Summary collapse
-
#destination ⇒ Vertex
The destination of the directed edge.
-
#origin ⇒ Vertex
The origin of the directed edge.
-
#requirement ⇒ Object
The requirement the directed edge represents.
Instance Attribute Details
#destination ⇒ Vertex
The destination of the directed edge
46 47 48 |
# File 'lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb', line 46 def destination @destination end |
#origin ⇒ Vertex
The origin of the directed edge
46 47 48 |
# File 'lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb', line 46 def origin @origin end |
#requirement ⇒ Object
The requirement the directed edge represents
46 47 48 |
# File 'lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb', line 46 def requirement @requirement end |