Initialize an action to add an edge to a dependency graph @param [String] origin the name of the origin of the edge
@param [String] destination the name of the
destination of the edge @param [Object]
requirement the requirement that the edge represents
# File lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb, line 51
def initialize(origin, destination, requirement)
@origin = origin
@destination = destination
@requirement = requirement
end