1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/lib/rubygems/dependency_resolver/current_set.rb

17 lines
268 B
Ruby
Raw Normal View History

##
# A set which represents the installed gems. Respects
# all the normal settings that control where to look
# for installed gems.
class Gem::DependencyResolver::CurrentSet
def find_all req
req.dependency.matching_specs
end
def prefetch gems
end
end