each_spec()
Yields the Gem::Specification for each Tuple in this AvailableSet
# File lib/rubygems/available_set.rb, line 59 def each_spec return enum_for __method__ unless block_given? each do |tuple| yield tuple.spec end end