Class: Bundler::Plugin::Installer

Inherits:
Object
  • Object
show all
Defined in:
lib/bundler/plugin/installer.rb,
lib/bundler/plugin/installer/git.rb,
lib/bundler/plugin/installer/rubygems.rb

Defined Under Namespace

Classes: Git, Rubygems

Instance Method Summary collapse

Instance Method Details

#install(names, options) ⇒ Object



14
15
16
17
18
19
20
21
22
23
24
# 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 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



31
32
33
34
35
36
37
# 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