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
25
26
27
# File 'lib/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) ⇒ 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



34
35
36
37
38
39
40
# File 'lib/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