diff options
author | Andre Medeiros <me@andremedeiros.info> | 2015-11-09 11:04:16 +0100 |
---|---|---|
committer | Andre Medeiros <me@andremedeiros.info> | 2015-11-09 11:04:16 +0100 |
commit | c6154ada3c09f4da5dc0ae4619ad83c52cdafb42 (patch) | |
tree | 34a2387f54f62ddc9f3c8358660df357bdf43e7d | |
parent | 4f51db056eb296c90fd1177bb38bbc0b8a714562 (diff) | |
download | bundler-retry-http-on-zlib-error.tar.gz |
Require Zlib on the Fetcherretry-http-on-zlib-error
I really don't like this solution, but it's the simplest one so we can
recover from that error on 1.8.7.
-rw-r--r-- | lib/bundler/fetcher.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bundler/fetcher.rb b/lib/bundler/fetcher.rb index 7811c9d476..b53d577c23 100644 --- a/lib/bundler/fetcher.rb +++ b/lib/bundler/fetcher.rb @@ -1,6 +1,7 @@ require "bundler/vendored_persistent" require "cgi" require "securerandom" +require "zlib" module Bundler |