summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-11-26 11:44:18 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-12-08 14:32:00 +0100
commit8f80bdaf8ddd04c5004b283b22938d262f25a500 (patch)
tree847d537c981d7263ec134c4ce6472bb8abdd14af /Rakefile
parent0490f161c6b027c700b5e15f80aa4ad7b7e5cc0a (diff)
downloadbundler-8f80bdaf8ddd04c5004b283b22938d262f25a500.tar.gz
Vendorize "uri" library
We vendorize it as a dependency of `net-http-persistent`, so usages inside `net-http-persistent` get automatically replaced by `automatiek`.
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index 5fe293a863..eb37dffd9a 100644
--- a/Rakefile
+++ b/Rakefile
@@ -268,6 +268,14 @@ else
sublib.prefix = "Bundler"
sublib.vendor_lib = "lib/bundler/vendor/connection_pool"
end
+
+ lib.dependency("uri") do |sublib|
+ sublib.version = "master"
+ sublib.download = { :github => "https://github.com/ruby/uri" }
+ sublib.namespace = "URI"
+ sublib.prefix = "Bundler"
+ sublib.vendor_lib = "lib/bundler/vendor/uri"
+ end
end
end