method
each_stub
v2_1_10 -
Show latest stable
- Class:
Gem::Specification
each_stub(dirs)public
No documentation available.
# File lib/rubygems/specification.rb, line 715
def self.each_stub(dirs) # :nodoc:
each_gemspec(dirs) do |path|
stub = Gem::StubSpecification.new(path)
yield stub if stub.valid?
end
end