类 Gem::Resolver::GitSpecification
GitSpecification
表示一个从 git 仓库获取的 gem,并且通过 gem 依赖文件中的 git:
选项加载。
公共实例方法
install(options = {}) { |installer| ... } 点击切换源代码
安装 git gem 仅涉及构建扩展和生成可执行文件。
# File 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