Skip to content
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.

Commit

Permalink
Add a few comments on vendored dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
deivid-rodriguez committed Jul 24, 2019
1 parent b8ee4ae commit 5c0570e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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`. These changes have been proposed upstream but
# haven't landed yet.
desc "Vendor a specific version of thor"
Automatiek::RakeTask.new("thor") do |lib|
lib.download = { :github => "https://github.com/erikhuda/thor" }
Expand All @@ -272,6 +275,10 @@ else
lib.vendor_lib = "lib/bundler/vendor/thor"
end

# We currently cherry-pick changes to use `require_relative` internally
# instead of regular `require`. These changes have already landed to fileutils
# master, but have not yet been released, so we cherry-pick them for the time
# being.
desc "Vendor a specific version of fileutils"
Automatiek::RakeTask.new("fileutils") do |lib|
lib.download = { :github => "https://github.com/ruby/fileutils" }
Expand All @@ -280,6 +287,8 @@ else
lib.vendor_lib = "lib/bundler/vendor/fileutils"
end

# We currently cherry-pick an unmerged PR on top of the upstream version:
# https://github.com/drbrain/net-http-persistent/pull/90.
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" }
Expand Down

0 comments on commit 5c0570e

Please sign in to comment.