123456789_123456789_123456789_123456789_123456789_

Class: Bundler::Plugin::Installer

Relationships & Source Files
Namespace Children
Classes:
Inherits: Object
Defined in: lib/bundler/plugin/installer.rb,
lib/bundler/plugin/installer/git.rb,
lib/bundler/plugin/installer/rubygems.rb

Instance Method Summary

Instance Method Details

#install(names, options)

[ GitHub ]

  
# File 'lib/bundler/plugin/installer.rb', line 14

def install(names, options)
  version = options[:version] || [">= 0"]
  Bundler.settings.temporary(:lockfile_uses_separate_rubygems_sources => false, :disable_multisource => false) do
    if options[:git]
      install_git(names, version, options)
    else
      sources = options[:source] || Bundler.rubygems.sources
      install_rubygems(names, version, sources)
    end
  end
end

#install_definition(definition) ⇒ Hash

Installs the plugin from ::Bundler::Definition object created by limited parsing of Gemfile searching for plugins to be installed

Parameters:

Returns:

  • (Hash)

    map of names to their specs they are installed with

[ GitHub ]

  
# File 'lib/bundler/plugin/installer.rb', line 31

def install_definition(definition)
  def definition.lock(*); end
  definition.resolve_remotely!
  specs = definition.specs

  install_from_specs specs
end

#install_from_specs(specs) ⇒ Hash (private)

Installs the plugins and deps from the provided specs and returns map of gems to their paths

Parameters:

  • specs

    to install

Returns:

  • (Hash)

    map of names to the specs

[ GitHub ]

  
# 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

#install_git(names, version, options) (private)

[ GitHub ]

  
# File 'lib/bundler/plugin/installer.rb', line 41

def install_git(names, version, options)
  uri = options.delete(:git)
  options["uri"] = uri

  source_list = SourceList.new
  source_list.add_git_source(options)

  # To support both sources
  if options[:source]
    source_list.add_rubygems_source("remotes" => options[:source])
  end

  deps = names.map {|name| Dependency.new name, version }

  definition = Definition.new(nil, deps, source_list, true)
  install_definition(definition)
end

#install_rubygems(names, version, sources) ⇒ Hash (private)

Installs the plugin from rubygems source and returns the path where the plugin was installed

Parameters:

  • name (String)

    of the plugin gem to search in the source

  • version (Array)

    of the gem to install

  • source(s) (String, Array<String>)

    to resolve the gem

Returns:

  • (Hash)

    map of names to the specs of plugins installed

[ GitHub ]

  
# File 'lib/bundler/plugin/installer.rb', line 67

def install_rubygems(names, version, sources)
  deps = names.map {|name| Dependency.new name, version }

  source_list = SourceList.new
  source_list.add_rubygems_source("remotes" => sources)

  definition = Definition.new(nil, deps, source_list, true)
  install_definition(definition)
end