method

search_all

ruby latest stable - Class: Bundler::Index

Method not available on this version

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

search_all(name)
public

No documentation available.

# File lib/bundler/index.rb, line 51
    def search_all(name)
      all_matches = local_search(name) + @all_specs[name]
      @sources.each do |source|
        all_matches.concat(source.search_all(name))
      end
      all_matches
    end