Flowdock
method

each_stub

Importance_0
v2_2_9 - Show latest stable - 0 notes - Class: Specification
each_stub(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 729
  def self.each_stub(dirs) # :nodoc:
    each_gemspec(dirs) do |path|
      stub = Gem::StubSpecification.new(path)
      yield stub if stub.valid?
    end
  end
Register or log in to add new notes.