class Molinillo::DependencyGraph::AddEdgeNoCircular

def initialize(origin, destination, requirement)

Parameters:
  • requirement (Object) -- the requirement that the edge represents
  • destination (String) -- the name of the destination of the edge
  • origin (String) -- the name of the origin of the edge
def initialize(origin, destination, requirement)
  @origin = origin
  @destination = destination
  @requirement = requirement
end