diff options
author | David RodrÃguez <[email protected]> | 2022-08-08 21:39:49 +0200 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2022-08-23 10:45:57 +0900 |
commit | b30fc03e924235207edb009be2108226e4c8efc6 (patch) | |
tree | 34dc70a7802b617a5d5a44601ba67d0152e51bfa /lib/bundler/lazy_specification.rb | |
parent | 6465a5331a2e5a0361e566b9c55f5314271a4df9 (diff) |
[rubygems/rubygems] Centralize loading `Bundler::MatchPlatform` mixin
It's explicitly loaded when monkeypatching RubyGems, which we do very
early. So neither autoloading it, nor explicitly loading it anywhere
else is necessary.
https://github.com/rubygems/rubygems/commit/fbc7a57161
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/6268
Diffstat (limited to 'lib/bundler/lazy_specification.rb')
-rw-r--r-- | lib/bundler/lazy_specification.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/bundler/lazy_specification.rb b/lib/bundler/lazy_specification.rb index 5b40bec5a8..78d2c22f81 100644 --- a/lib/bundler/lazy_specification.rb +++ b/lib/bundler/lazy_specification.rb @@ -1,7 +1,5 @@ # frozen_string_literal: true -require_relative "match_platform" - module Bundler class LazySpecification include MatchPlatform |