class Bundler::Plugin::Installer
公共实例方法
install(names, options) 点击切换源代码
# File bundler/plugin/installer.rb, line 15 def install(names, options) check_sources_consistency!(options) version = options[:version] || [">= 0"] if options[:git] install_git(names, version, options) elsif options[:path] install_path(names, version, options[:path]) else sources = options[:source] || Gem.sources install_rubygems(names, version, sources) end end
install_definition(definition) 点击切换源代码
从 Definition
对象安装插件,该对象是通过对 Gemfile 进行有限解析以搜索要安装的插件而创建的
@param [Definition] definition 对象 @return [Hash] 名称与其安装的规范之间的映射
# File bundler/plugin/installer.rb, line 35 def install_definition(definition) def definition.lock(*); end definition.remotely! specs = definition.specs install_from_specs specs end
私有实例方法
check_sources_consistency!(options) 点击切换源代码
# File bundler/plugin/installer.rb, line 45 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 # back-compat; local_git is an alias for git if options.key?(:local_git) Bundler::SharedHelpers.major_deprecation(2, "--local_git is deprecated, use --git") options[:git] = options.delete(:local_git) end if (options.keys & [:source, :git, :path]).length > 1 raise InvalidOption, "Only one of --source, --git, or --path may be specified" end if (options.key?(:branch) || options.key?(:ref)) && !options.key?(:git) raise InvalidOption, "--#{options.key?(:branch) ? "branch" : "ref"} can only be used with git sources" end if options.key?(:branch) && options.key?(:ref) raise InvalidOption, "--branch and --ref can't be both specified" end end
install_all_sources(names, version, source_list, source = nil) 点击切换源代码
# File bundler/plugin/installer.rb, line 101 def install_all_sources(names, version, source_list, source = nil) deps = names.map {|name| Dependency.new(name, version, { "source" => source }) } Bundler.configure_gem_home_and_path(Plugin.root) Bundler.settings.temporary(deployment: false, frozen: false) do definition = Definition.new(nil, deps, source_list, true) install_definition(definition) end end
install_from_specs(specs) 点击切换源代码
从提供的规范安装插件和依赖项,并返回 gem 与其路径的映射
@param 要安装的 specs
@return [Hash] 名称与规范的映射
# File bundler/plugin/installer.rb, line 119 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) 点击切换源代码
# File bundler/plugin/installer.rb, line 69 def install_git(names, version, options) source_list = SourceList.new source = source_list.add_git_source({ "uri" => options[:git], "branch" => options[:branch], "ref" => options[:ref] }) install_all_sources(names, version, source_list, source) end
install_path(names, version, path) 点击切换源代码
# File bundler/plugin/installer.rb, line 78 def install_path(names, version, path) source_list = SourceList.new source = source_list.add_path_source({ "path" => path, "root_path" => SharedHelpers.pwd }) install_all_sources(names, version, source_list, source) end
install_rubygems(names, version, sources) 点击切换源代码
从 rubygems 源安装插件,并返回插件安装的路径
@param [String] 要在源中搜索的插件 gem 的名称 @param [Array] 要安装的 gem 的版本 @param [String, Array<String>] 要解析 gem 的源
@return [Hash] 名称与已安装插件规范的映射
# File bundler/plugin/installer.rb, line 93 def install_rubygems(names, version, sources) source_list = SourceList.new Array(sources).each {|remote| source_list.add_global_rubygems_remote(remote) } install_all_sources(names, version, source_list) end