class Bundler::RubygemsIntegration::Transitional
Rubygems 1.7
Public Instance Methods
stub_rubygems(specs)
click to toggle source
# File lib/bundler/rubygems_integration.rb, line 493 def stub_rubygems(specs) stub_source_index(specs) end
validate(spec)
click to toggle source
# File lib/bundler/rubygems_integration.rb, line 497 def validate(spec) # Missing summary is downgraded to a warning in later versions, # so we set it to an empty string to prevent an exception here. spec.summary ||= "" Bundler.ui.silence { spec.validate(false) } rescue Errno::ENOENT nil end