install_from_specs(specs)
private
Installs the plugins and deps from the provided specs and returns map of
gems to their paths
@param specs to install
@return [Hash] map of names to the specs
# File lib/bundler/plugin/installer.rb, line 83
def install_from_specs(specs)
paths = {}
specs.each do |spec|
spec.source.install spec
paths[spec.name] = spec
end
paths
end