class Bundler::Plugin::Installer

def install_from_specs(specs)

Returns:
  • (Hash) - map of names to the specs

Parameters:
  • specs () -- to install
def install_from_specs(specs)
  paths = {}
  specs.each do |spec|
    spec.source.install spec
    paths[spec.name] = spec
  end
  paths
end