class Gem::Resolver::GitSpecification
GitSpecification
表示一个源自 git 仓库的 gem,并且通过 git:
选项,通过 gem 依赖文件加载。
公共实例方法
来源
# File lib/rubygems/resolver/git_specification.rb, line 24 def install(options = {}) require_relative "../installer" installer = Gem::Installer.for_spec spec, options yield installer if block_given? installer.run_pre_install_hooks installer.build_extensions installer.run_post_build_hooks installer.generate_bin installer.run_post_install_hooks end
安装 git gem 仅涉及构建扩展并生成可执行文件。