This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_3_392) is shown here.
add_specs(*gem_specs)
public
Add gem specifications to the source index.
# File lib/rubygems/source_index.rb, line 195
def add_specs(*gem_specs)
Gem::Deprecate.skip_during do
gem_specs.each do |spec|
add_spec spec
end
end
end