class Gem::Source::Local
本地源在当前目录中查找 gem 以满足依赖关系。
Public Instance Methods
Source
# File lib/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
Local 在 Gem::Source 之前排序,在 Gem::Source::Installed 之后排序。