summaryrefslogtreecommitdiff
path: root/lib/rubygems/resolver/current_set.rb
blob: 4e8d34026b109c38963fb20c42228562ec20d939 (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::Resolver::CurrentSet < Gem::Resolver::Set

  def find_all req
    req.dependency.matching_specs
  end

end