method

unmarshalled_dep_gems

ruby latest stable - Class: Bundler::Fetcher::Dependency

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

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