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
- #install(names, options)
-
#install_definition(definition) ⇒ Hash
Installs the plugin from
::Bundler::Definition
object created by limited parsing of Gemfile searching for plugins to be installed. - #check_sources_consistency!(options) private
- #install_all_sources(names, version, git_source_options, rubygems_source) private
-
#install_from_specs(specs) ⇒ Hash
private
Installs the plugins and deps from the provided specs and returns map of gems to their paths.
- #install_git(names, version, options) private
- #install_local_git(names, version, options) private
-
#install_rubygems(names, version, sources) ⇒ Hash
private
Installs the plugin from rubygems source and returns the path where the plugin was installed.
Instance Method Details
#check_sources_consistency!(options) (private)
[ GitHub ]# File 'lib/bundler/plugin/installer.rb', line 44
def check_sources_consistency!( ) if .key?(:git) && .key?(:local_git) raise InvalidOption, "Remote and local plugin git sources can't be both specified" end end
#install(names, options)
[ GitHub ]# File 'lib/bundler/plugin/installer.rb', line 14
def install(names, ) check_sources_consistency!( ) version = [:version] || [">= 0"] if [:git] install_git(names, version, ) elsif [:local_git] install_local_git(names, version, ) else sources = [:source] || Bundler.rubygems.sources install_rubygems(names, version, sources) end end
#install_all_sources(names, version, git_source_options, rubygems_source) (private)
[ GitHub ]# File 'lib/bundler/plugin/installer.rb', line 76
def install_all_sources(names, version, , rubygems_source) source_list = SourceList.new source_list.add_git_source( ) if 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_definition(definition) ⇒ Hash
Installs the plugin from ::Bundler::Definition
object created by limited parsing of Gemfile searching for plugins to be installed
# 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
#install_from_specs(specs) ⇒ Hash
(private)
Installs the plugins and deps from the provided specs and returns map of gems to their paths
#install_git(names, version, options) (private)
[ GitHub ]# File 'lib/bundler/plugin/installer.rb', line 50
def install_git(names, version, ) uri = .delete(:git) ["uri"] = uri install_all_sources(names, version, , [:source]) end
#install_local_git(names, version, options) (private)
[ GitHub ]# File 'lib/bundler/plugin/installer.rb', line 57
def install_local_git(names, version, ) uri = .delete(:local_git) ["uri"] = uri install_all_sources(names, version, , [:source]) end
#install_rubygems(names, version, sources) ⇒ Hash
(private)
Installs the plugin from rubygems source and returns the path where the plugin was installed
# File 'lib/bundler/plugin/installer.rb', line 72
def install_rubygems(names, version, sources) install_all_sources(names, version, nil, sources) end