diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-06-17 09:57:41 +0200 |
---|---|---|
committer | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-07-25 22:35:00 +0200 |
commit | 28b83522f54f2a5509cc82e2b74c080a190e9d82 (patch) | |
tree | 9a43ca7c413e3b96286bf7f97b48360e25ee151b /Rakefile | |
parent | b8ee4aec0b635013cf1f354da38460ed3c439d5d (diff) | |
download | bundler-28b83522f54f2a5509cc82e2b74c080a190e9d82.tar.gz |
Add a few comments on vendored dependencies
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -264,6 +264,9 @@ else lib.vendor_lib = "lib/bundler/vendor/molinillo" end + # We currently cherry-pick changes to use `require_relative` internally + # instead of regular `require`. They are already in thor's master branch but + # still need to be released. desc "Vendor a specific version of thor" Automatiek::RakeTask.new("thor") do |lib| lib.download = { :github => "https://github.com/erikhuda/thor" } @@ -272,6 +275,9 @@ else lib.vendor_lib = "lib/bundler/vendor/thor" end + # We currently cherry-pick changes to use `require_relative` internally + # instead of regular `require`. They are already in fileutils' master branch + # but still need to be released. desc "Vendor a specific version of fileutils" Automatiek::RakeTask.new("fileutils") do |lib| lib.download = { :github => "https://github.com/ruby/fileutils" } @@ -280,6 +286,14 @@ else lib.vendor_lib = "lib/bundler/vendor/fileutils" end + # Currently `net-http-persistent` and it's dependency `connection_pool` are + # vendored separately, but `connection_pool` references inside the vendored + # copy of `net-http-persistent` are not properly updated to refer to the + # vendored copy of `connection_pool`, so they need to be manually updated. + # This will be automated once https://github.com/segiddins/automatiek/pull/3 + # is included in `automatiek` and we start using the new API for vendoring + # subdependencies. + desc "Vendor a specific version of net-http-persistent" Automatiek::RakeTask.new("net-http-persistent") do |lib| lib.download = { :github => "https://github.com/drbrain/net-http-persistent" } |