class Bundler::Molinillo::DependencyGraph::DeleteEdge

def initialize(origin_name, destination_name, requirement)

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