In Files

  • rubygems/source/installed.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

Gem::Source::Installed

frozen_string_literal: true

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

Public Instance Methods

<=>(other) click to toggle source

Installed sources sort before all other sources

 
               # File 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
  else
    nil
  end
end
            
download(spec, path) click to toggle source

We don’t need to download an installed gem

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