method
unmarshalled_dep_gems
v2_6_3 -
Show latest stable
- Class:
Bundler::Fetcher::Dependency
unmarshalled_dep_gems(gem_names)public
No documentation available.
# File lib/bundler/fetcher/dependency.rb, line 54
def unmarshalled_dep_gems(gem_names)
gem_list = []
gem_names.each_slice(Source::Rubygems::API_REQUEST_SIZE) do |names|
marshalled_deps = downloader.fetch(dependency_api_uri(names)).body
gem_list.concat(Bundler.load_marshal(marshalled_deps))
end
gem_list
end