An error caused by attempting to fulfil a dependency that was circular
@note This exception will be thrown iff a {Vertex} is added to a
{DependencyGraph} that has a {DependencyGraph::Vertex#path_to?} an existing {DependencyGraph::Vertex}
Attributes
Read
Set
<Object>-
the dependencies responsible for causing the error
Class Methods
::
lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb, line 46
def initialize(nodes)
super "There is a circular dependency between #{nodes.map(&:name).join(' and ')}"
@dependencies = nodes.map(&:payload).to_set
end
Initializes a new error with the given circular vertices. @param [Array<DependencyGraph::Vertex>] nodes the nodes in the dependency
that caused the error