aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rubygems/dependency_resolver/current_set.rb
blob: 13bc490e9ed5518cf3429cf59bcc963547573fe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
##
# 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