method

fetch_latest_specs

ruby latest stable - Class: Bundler::CLI::Show

Method not available on this version

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

fetch_latest_specs()
private

No documentation available.

# File lib/bundler/cli/show.rb, line 58
    def fetch_latest_specs
      definition = Bundler.definition(true)
      if options[:outdated]
        Bundler.ui.info "Fetching remote specs for outdated check...\n\n"
        Bundler.ui.silence { definition.resolve_remotely! }
      else
        definition.resolve_with_cache!
      end
      Bundler.reset!
      definition.specs
    end