class Bundler::Plugin::Installer

Public Instance Methods

install(names, options) click to toggle source
# File bundler/plugin/installer.rb, line 14
def install(names, options)
  check_sources_consistency!(options)

  version = options[:version] || [">= 0"]

  if options[:git]
    install_git(names, version, options)
  elsif options[:local_git]
    install_local_git(names, version, options)
  else
    sources = options[:source] || Bundler.rubygems.sources
    install_rubygems(names, version, sources)
  end
end
install_definition(definition) click to toggle source

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

@param [Definition] definition object @return [Hash] map of names to their specs they are installed with

# File bundler/plugin/installer.rb, line 34
def install_definition(definition)
  def definition.lock(*); end
  definition.resolve_remotely!
  specs = definition.specs

  install_from_specs specs
end

Private Instance Methods

check_sources_consistency!(options) click to toggle source
# File bundler/plugin/installer.rb, line 44
def check_sources_consistency!(options)
  if options.key?(:git) && options.key?(:local_git)
    raise InvalidOption, "Remote and local plugin git sources can't be both specified"
  end
end
install_all_sources(names, version, git_source_options, rubygems_source) click to toggle source
# File bundler/plugin/installer.rb, line 76
def install_all_sources(names, version, git_source_options, rubygems_source)
  source_list = SourceList.new

  source_list.add_git_source(git_source_options) if git_source_options
  Array(rubygems_source).each {|remote| source_list.add_global_rubygems_remote(remote) } if rubygems_source

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

  Bundler.configure_gem_home_and_path(Plugin.root)

  definition = Definition.new(nil, deps, source_list, true)
  install_definition(definition)
end
install_from_specs(specs) click to toggle source

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 bundler/plugin/installer.rb, line 96
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) click to toggle source
# File bundler/plugin/installer.rb, line 50
def install_git(names, version, options)
  uri = options.delete(:git)
  options["uri"] = uri

  install_all_sources(names, version, options, options[:source])
end
install_local_git(names, version, options) click to toggle source
# File bundler/plugin/installer.rb, line 57
def install_local_git(names, version, options)
  uri = options.delete(:local_git)
  options["uri"] = uri

  install_all_sources(names, version, options, options[:source])
end
install_rubygems(names, version, sources) click to toggle source

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

@param [String] name of the plugin gem to search in the source @param [Array] version of the gem to install @param [String, Array<String>] source(s) to resolve the gem

@return [Hash] map of names to the specs of plugins installed

# File bundler/plugin/installer.rb, line 72
def install_rubygems(names, version, sources)
  install_all_sources(names, version, nil, sources)
end