summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-02-08 22:54:50 +1100
committerAndre Arko <andre@arko.net>2015-02-08 23:10:12 +1100
commit2aa826aedaebcad6d04cf6ad7139b196667dfba9 (patch)
tree4adfc7c7af63f9f5f3a4f07dd6c8a92bb718ac77
parent135ef0053b33e71b1961e8c9fe16a07e8a985ccb (diff)
downloadbundler-1.7.13.tar.gz
Update version 1.7.13 changelogv1.7.13
-rw-r--r--CHANGELOG.md3
-rw-r--r--lib/bundler/source/rubygems.rb3
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