This method is only available on newer versions.
The first available version (v2_6_3) is shown here.
new(origin, destination, requirement)
public
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/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb, line 52
def initialize(origin, destination, requirement)
@origin = origin
@destination = destination
@requirement = requirement
end