method

each

ruby latest stable - Class: Bundler::Index

Method not available on this version

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

each(&blk)
public

No documentation available.

# File lib/bundler/index.rb, line 109
    def each(&blk)
      return enum_for(:each) unless blk
      specs.values.each do |spec_sets|
        spec_sets.values.each(&blk)
      end
      sources.each {|s| s.each(&blk) }
      self
    end