Skip to Content Skip to Search

Represents an installed gem. This is used for dependency resolution.

Methods
#
D

Instance Public methods

<=>(other)

Installed sources sort before all other sources

# File ruby/lib/rubygems/source/installed.rb, line 14
def <=>(other)
  case other
  when Gem::Source::Git,
       Gem::Source::Lock,
       Gem::Source::Vendor then
    -1
  when Gem::Source::Installed then
    0
  when Gem::Source then
    1
  end
end

download(spec, path)

We don’t need to download an installed gem

# File ruby/lib/rubygems/source/installed.rb, line 30
def download(spec, path)
  nil
end