Class: Gem::Molinillo::DependencyGraph::Edge
- Inherits:
-
Struct
- Object
- Struct
- Gem::Molinillo::DependencyGraph::Edge
- Defined in:
- lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph.rb
Overview
A directed edge of a Gem::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
45 46 47 |
# File 'lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph.rb', line 45 def destination @destination end |
#origin ⇒ Vertex
The origin of the directed edge
45 46 47 |
# File 'lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph.rb', line 45 def origin @origin end |
#requirement ⇒ Object
The requirement the directed edge represents
45 46 47 |
# File 'lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph.rb', line 45 def requirement @requirement end |