summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-09-04 09:33:29 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-09-04 09:33:29 +0200
commit8092f48a5aed25e83271b11f8f49dfb64cf65462 (patch)
treec450bda4fc485f943750efd98d813fc544740c17
parente1991d866f5b2c953db02b23d24835c97b79f583 (diff)
downloadbundler-8092f48a5aed25e83271b11f8f49dfb64cf65462.tar.gz
Start using automatiek 0.3.0automatiek_0.3
-rw-r--r--Rakefile28
-rw-r--r--spec/support/rubygems_ext.rb2
2 files changed, 10 insertions, 20 deletions
diff --git a/Rakefile b/Rakefile
index 36d313d177..573824f8af 100644
--- a/Rakefile
+++ b/Rakefile
@@ -274,9 +274,6 @@ rescue Gem::LoadError => e
desc "Vendor a specific version of net-http-persistent"
task(:"net-http-persistent") { abort msg }
-
- desc "Vendor a specific version of connection_pool"
- task(:connection_pool) { abort msg }
end
else
desc "Vendor a specific version of molinillo"
@@ -309,15 +306,8 @@ 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.
- # Besides that, we currently cherry-pick changes to use `require_relative`
- # internally instead of regular `require`. They are pending review at
+ # We currently cherry-pick changes to use `require_relative` internally
+ # instead of regular `require`. They are pending review at
# https://github.com/drbrain/net-http-persistent/pull/106
desc "Vendor a specific version of net-http-persistent"
Automatiek::RakeTask.new("net-http-persistent") do |lib|
@@ -325,14 +315,14 @@ else
lib.namespace = "Net::HTTP::Persistent"
lib.prefix = "Bundler::Persistent"
lib.vendor_lib = "lib/bundler/vendor/net-http-persistent"
- end
- desc "Vendor a specific version of connection_pool"
- Automatiek::RakeTask.new("connection_pool") do |lib|
- lib.download = { :github => "https://github.com/mperham/connection_pool" }
- lib.namespace = "ConnectionPool"
- lib.prefix = "Bundler"
- lib.vendor_lib = "lib/bundler/vendor/connection_pool"
+ lib.dependency("connection_pool") do |sublib|
+ sublib.version = "v2.2.2"
+ sublib.download = { :github => "https://github.com/mperham/connection_pool" }
+ sublib.namespace = "ConnectionPool"
+ sublib.prefix = "Bundler"
+ sublib.vendor_lib = "lib/bundler/vendor/connection_pool"
+ end
end
end
diff --git a/spec/support/rubygems_ext.rb b/spec/support/rubygems_ext.rb
index faa474a917..faa44b0944 100644
--- a/spec/support/rubygems_ext.rb
+++ b/spec/support/rubygems_ext.rb
@@ -7,7 +7,7 @@ require "fileutils"
module Spec
module Rubygems
DEV_DEPS = {
- "automatiek" => "~> 0.2.0",
+ "automatiek" => "~> 0.3.0",
"parallel_tests" => "~> 2.29",
"rake" => "~> 12.0",
"ronn" => "~> 0.7.3",