From 2aa826aedaebcad6d04cf6ad7139b196667dfba9 Mon Sep 17 00:00:00 2001 From: Andre Arko Date: Sun, 8 Feb 2015 22:54:50 +1100 Subject: Update version 1.7.13 changelog --- CHANGELOG.md | 3 ++- lib/bundler/source/rubygems.rb | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98418a61d5..cd9c1aa61e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,9 @@ Bugfixes: - - Look up installed gems in remote sources (#3368, #3377, #3300, #3381, @indirect) + - Look up installed gems in remote sources (#3300, #3368, #3377, #3380, #3381, @indirect) - Look up gems across all sources to satisfy dependencies (#3365, @keiths-osc) + - Request dependencies for no more than 100 gems at a time (#3367, @segiddins) ## 1.7.12 (2015-01-08) diff --git a/lib/bundler/source/rubygems.rb b/lib/bundler/source/rubygems.rb index c546bd1104..33d2ec2c48 100644 --- a/lib/bundler/source/rubygems.rb +++ b/lib/bundler/source/rubygems.rb @@ -5,7 +5,8 @@ require 'rubygems/spec_fetcher' module Bundler class Source class Rubygems < Source - API_REQUEST_LIMIT = 100 # threshold for switching back to the modern index instead of fetching every spec + # threshold for switching back to the modern index instead of fetching every spec + API_REQUEST_LIMIT = 100 attr_reader :remotes, :caches -- cgit v1.2.1