class Gem::Resolver::Molinillo::CircularDependencyError

def initialize(nodes)

Parameters:
  • nodes (Array) -- the nodes in the dependency
def initialize(nodes)
  super "There is a circular dependency between #{nodes.map(&:name).join(' and ')}"
  @dependencies = nodes.map(&:payload).to_set
end