In Files

  • bundler/source/rubygems_aggregate.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

Bundler::Source::RubygemsAggregate

Attributes

source_map[R]
sources[R]

Public Class Methods

new(sources, source_map) click to toggle source
 
               # File bundler/source/rubygems_aggregate.rb, line 8
def initialize(sources, source_map)
  @sources = sources
  @source_map = source_map

  @index = build_index
end
            

Public Instance Methods

specs() click to toggle source
 
               # File bundler/source/rubygems_aggregate.rb, line 15
def specs
  @index
end
            
to_s() click to toggle source
 
               # File bundler/source/rubygems_aggregate.rb, line 19
def to_s
  "any of the sources"
end