class Bundler::RubygemsIntegration::Transitional

Parent:
Bundler::RubygemsIntegration::Legacy

RubyGems 1.7

Public Instance Methods

stub_rubygems(specs) Show source
# File lib/bundler/rubygems_integration.rb, line 669
def stub_rubygems(specs)
  stub_source_index(specs)
end
validate(spec) Show source
# File lib/bundler/rubygems_integration.rb, line 673
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 ||= ""
  RubygemsIntegration.instance_method(:validate).bind(self).call(spec)
end

Ruby Core © 1993–2017 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.