diff options
author | David RodrÃguez <[email protected]> | 2025-01-15 16:50:14 +0100 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2025-01-20 13:50:27 +0900 |
commit | ee7b74799ca2de454fb708a70a0b2e30b46e8f57 (patch) | |
tree | a51efc8572c93ecc1d30e93b44e8a09c47efb9b1 /lib/bundler/source.rb | |
parent | 891ecc63ac5c232081eea9597bbf366239707b77 (diff) |
[rubygems/rubygems] Fix `--prefer-local` not respecting default gems
https://github.com/rubygems/rubygems/commit/3df86cd9c6
Diffstat (limited to 'lib/bundler/source.rb')
-rw-r--r-- | lib/bundler/source.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/bundler/source.rb b/lib/bundler/source.rb index 115dbd1378..232873503b 100644 --- a/lib/bundler/source.rb +++ b/lib/bundler/source.rb @@ -35,6 +35,8 @@ module Bundler spec.source == self end + def prefer_local!; end + def local!; end def local_only!; end |