method
fetch_specs
v2_6_3 -
Show latest stable
- Class:
Bundler::RubygemsIntegration
fetch_specs(all, pre, &blk)public
No documentation available.
# File lib/bundler/rubygems_integration.rb, line 253
def fetch_specs(all, pre, &blk)
require "rubygems/spec_fetcher"
specs = Gem::SpecFetcher.new.list(all, pre)
specs.each { yield } if block_given?
specs
end