new(spec, request, others_possible = true)
public
Creates a new
ActivationRequest that will activate spec. The parent
request is used to provide diagnostics in case of conflicts.
others_possible indicates that other specifications may also match
this activation request.
# File lib/rubygems/resolver/activation_request.rb, line 25
def initialize spec, request, others_possible = true
@spec = spec
@request = request
@others_possible = others_possible
end