method

tsort_each_child

ruby latest stable - Class: Bundler::SpecSet

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

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