Parent

Methods

Class Index [+]

Quicksearch

Gem::SourceInfoCacheEntry

Entries held by a SourceInfoCache.

Attributes

source_index[R]

The source index for this cache entry.

size[R]

The size of the source entry. Used to determine if the source index has changed.

Public Class Methods

new(si, size) click to toggle source

Create a cache entry.

# File lib/rubygems/source_info_cache_entry.rb, line 24
  def initialize(si, size)
    @source_index = si || Gem::SourceIndex.new({})
    @size = size
    @all = false
  end

Public Instance Methods

refresh(source_uri, all) click to toggle source

(Not documented)

# File lib/rubygems/source_info_cache_entry.rb, line 30
  def refresh(source_uri, all)
    begin
      marshal_uri = URI.join source_uri.to_s, "Marshal.#{Gem.marshal_version}"
      remote_size = Gem::RemoteFetcher.fetcher.fetch_size marshal_uri
    rescue Gem::RemoteSourceException
      yaml_uri = URI.join source_uri.to_s, 'yaml'
      remote_size = Gem::RemoteFetcher.fetcher.fetch_size yaml_uri
    end

    # TODO Use index_signature instead of size?
    return false if @size == remote_size and @all

    updated = @source_index.update source_uri, all
    @size = remote_size
    @all = all

    updated
  end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.