This method is deprecated or moved on the latest stable version. The last existing version (v1_9_3_392) is shown here.
find_all(glob)
Works like #find, but finds all gemspecs matching glob.
# File lib/rubygems/gem_path_searcher.rb, line 76 def find_all(glob) # HACK violation of encapsulation @gemspecs.select do |spec| # TODO: inverted responsibility matching_file? spec, glob end || [] end