Method not available on this version
This method is only available on newer versions.
The first available version (v2_6_3) is shown here.
recursive_successors()
public
@return [Array] the vertices of {#graph}
where `self` is an
{
# File lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 70
def recursive_successors
vertices = successors
vertices += Compatibility.flat_map(vertices, &:recursive_successors)
vertices.uniq!
vertices
end