Initialize an action to add a vertex to a dependency graph @param [String] name the name of the vertex @param [Object] payload the payload for the vertex @param
[Boolean] root whether the
vertex is root or not
# File lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rb, line 54
def initialize(name, payload, root)
@name = name
@payload = payload
@root = root
end