Flowdock
method

each_gemspec

Importance_0
v2_4_6 - Show latest stable - 0 notes - Class: Specification
each_gemspec(dirs) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rubygems/specification.rb, line 742
  def self.each_gemspec(dirs) # :nodoc:
    dirs.each do |dir|
      Dir[File.join(dir, "*.gemspec")].each do |path|
        yield path.untaint
      end
    end
  end
Register or log in to add new notes.