aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rubygems/dependency_resolver/current_set.rb
blob: ef15c9d7f3905b4b520e7c200bf558c5e538b595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
##
# A set which represents the installed gems. Respects
# all the normal settings that control where to look
# for installed gems.

class Gem::DependencyResolver::CurrentSet < Gem::DependencyResolver::Set

  def find_all req
    req.dependency.matching_specs
  end

end