tsort_each_child(s)private
No documentation available.
# File lib/bundler/spec_set.rb, line 185
def tsort_each_child(s)
s.dependencies.sort_by(&:name).each do |d|
next if d.type == :development
lookup[d.name].each {|s2| yield s2 }
end
end