class Bundler::RubygemsIntegration::Modern

Rubygems ~> 1.8.5

Public Instance Methods

all_specs() click to toggle source
# File lib/bundler/rubygems_integration.rb, line 413
def all_specs
  Gem::Specification.to_a
end
find_name(name) click to toggle source
# File lib/bundler/rubygems_integration.rb, line 417
def find_name(name)
  Gem::Specification.find_all_by_name name
end
stub_rubygems(specs) click to toggle source
# File lib/bundler/rubygems_integration.rb, line 403
def stub_rubygems(specs)
  Gem::Specification.all = specs

  Gem.post_reset {
    Gem::Specification.all = specs
  }

  stub_source_index170(specs)
end