method
search_all
v2_6_3 -
Show latest stable
- Class:
Bundler::Index
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