diff options
author | David RodrÃguez <[email protected]> | 2024-10-02 16:35:23 +0200 |
---|---|---|
committer | git <[email protected]> | 2024-10-10 14:51:32 +0000 |
commit | f63873e7a2d07e23694148ea500da3baf09cc680 (patch) | |
tree | 68233382b74ac0ffc4010ee8f8e12c8dd36fad86 /lib/bundler/source/git.rb | |
parent | f8e3afd255485697501b645cbee19597c7b2f0ad (diff) |
[rubygems/rubygems] Remove more compatibility code with old RubyGems
https://github.com/rubygems/rubygems/commit/74e8eff779
Diffstat (limited to 'lib/bundler/source/git.rb')
-rw-r--r-- | lib/bundler/source/git.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/source/git.rb b/lib/bundler/source/git.rb index 3b934adbb2..ef36efb3f4 100644 --- a/lib/bundler/source/git.rb +++ b/lib/bundler/source/git.rb @@ -210,7 +210,7 @@ module Bundler checkout end - generate_bin_options = { disable_extensions: !Bundler.rubygems.spec_missing_extensions?(spec), build_args: options[:build_args] } + generate_bin_options = { disable_extensions: !spec.missing_extensions?, build_args: options[:build_args] } generate_bin(spec, generate_bin_options) requires_checkout? ? spec.post_install_message : nil |