In Files

  • ruby-3.1.2/lib/rubygems/source_list.rb

Files

Class/Module Index [+]

Quicksearch

Gem::SourceList

The SourceList represents the sources rubygems has been configured to use. A source may be created from an array of sources:

Gem::SourceList.from %w[https://rubygems.example https://internal.example]

Or by adding them:

sources = Gem::SourceList.new
sources << 'https://rubygems.example'

The most common way to get a SourceList is Gem.sources.

Attributes

sources[R]

The sources in this list

Public Class Methods

from(ary) click to toggle source

Creates a new SourceList from an array of sources.

 
               # File ruby-3.1.2/lib/rubygems/source_list.rb, line 34
def self.from(ary)
  list = new

  list.replace ary

  return list
end
            
new() click to toggle source

Creates a new SourceList

 
               # File ruby-3.1.2/lib/rubygems/source_list.rb, line 22
def initialize
  @sources = []
end
            

Public Instance Methods

<<(obj) click to toggle source

Appends obj to the source list which may be a Gem::Source, URI or URI String.

 
               # File ruby-3.1.2/lib/rubygems/source_list.rb, line 50
def <<(obj)
  require "uri"

  src = case obj
  when URI
    Gem::Source.new(obj)
  when Gem::Source
    obj
  else
    Gem::Source.new(URI.parse(obj))
  end

  @sources << src unless @sources.include?(src)
  src
end
            
clear() click to toggle source

Removes all sources from the SourceList.

 
               # File ruby-3.1.2/lib/rubygems/source_list.rb, line 83
def clear
  @sources.clear
end
            
delete(source) click to toggle source

Deletes source from the source list which may be a Gem::Source or a URI.

 
               # File ruby-3.1.2/lib/rubygems/source_list.rb, line 143
def delete(source)
  if source.kind_of? Gem::Source
    @sources.delete source
  else
    @sources.delete_if {|x| x.uri.to_s == source.to_s }
  end
end
            
each() click to toggle source

Yields each source URI in the list.

 
               # File ruby-3.1.2/lib/rubygems/source_list.rb, line 90
def each
  @sources.each {|s| yield s.uri.to_s }
end
            
each_source(&b) click to toggle source

Yields each source in the list.

 
               # File ruby-3.1.2/lib/rubygems/source_list.rb, line 97
def each_source(&b)
  @sources.each(&b)
end
            
empty?() click to toggle source

Returns true if there are no sources in this SourceList.

 
               # File ruby-3.1.2/lib/rubygems/source_list.rb, line 104
def empty?
  @sources.empty?
end
            
first() click to toggle source

Returns the first source in the list.

 
               # File ruby-3.1.2/lib/rubygems/source_list.rb, line 124
def first
  @sources.first
end
            
include?(other) click to toggle source

Returns true if this source list includes other which may be a Gem::Source or a source URI.

 
               # File ruby-3.1.2/lib/rubygems/source_list.rb, line 132
def include?(other)
  if other.kind_of? Gem::Source
    @sources.include? other
  else
    @sources.find {|x| x.uri.to_s == other.to_s }
  end
end
            
replace(other) click to toggle source

Replaces this SourceList with the sources in other See << for acceptable items in other.

 
               # File ruby-3.1.2/lib/rubygems/source_list.rb, line 70
def replace(other)
  clear

  other.each do |x|
    self << x
  end

  self
end
            
to_a() click to toggle source

Returns an Array of source URI Strings.

 
               # File ruby-3.1.2/lib/rubygems/source_list.rb, line 115
def to_a
  @sources.map {|x| x.uri.to_s }
end
            
Also aliased as: to_ary
to_ary() click to toggle source
Alias for: to_a