class Gem::Source::Local

本地源会在当前目录中查找 gem 以满足依赖关系。

公共实例方法

<=>(other) 点击切换源代码

Local 排序在 Gem::Source 之前,且在 Gem::Source::Installed 之后

# File rubygems/source/local.rb, line 18
def <=>(other)
  case other
  when Gem::Source::Installed,
       Gem::Source::Lock then
    -1
  when Gem::Source::Local then
    0
  when Gem::Source then
    1
  end
end