Flowdock
method

each_gemspec

Importance_0
v2_6_3 - 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 765
  def self.each_gemspec(dirs) # :nodoc:
    dirs.each do |dir|
      Gem::Util.glob_files_in_dir("*.gemspec", dir).each do |path|
        yield path.untaint
      end
    end
  end
Register or log in to add new notes.