find_spec(dep)
Finds dep in this set.
# File lib/rubygems/test_case.rb, line 1292 def find_spec(dep) @specs.reverse_each do |s| return s if dep.matches_spec? s end end