Flowdock
method

finish_resolve

Importance_0
v2_6_3 - Show latest stable - 0 notes - Class: Gem
finish_resolve(request_set=Gem::RequestSet.new) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rubygems.rb, line 238
  def self.finish_resolve(request_set=Gem::RequestSet.new)
    request_set.import Gem::Specification.unresolved_deps.values
    request_set.import Gem.loaded_specs.values.map {|s| Gem::Dependency.new(s.name, s.version) }

    request_set.resolve_current.each do |s|
      s.full_spec.activate
    end
  end
Register or log in to add new notes.