Sha256: d00bfc7241fce12cd03fe790ceba5952c83c11de6ef9a0d20f9f7ab52b2b69b2
Contents?: true
Size: 537 Bytes
Versions: 24
Compression:
Stored size: 537 Bytes
Contents
# https://github.com/bundler/bundler/issues/4368 # # There is an issue with Rubygems 2.6.2 where it attempts to call Bundler::SpecSet#size, which doesn't exist. # If a gem is not installed, a `Gem::Specification.find_by_name` call will trigger this problem. if Object.const_defined?(:Bundler) && Bundler.const_defined?(:SpecSet) && Bundler::SpecSet.instance_methods.include?(:length) && !Bundler::SpecSet.instance_methods.include?(:size) module Bundler class SpecSet alias_method :size, :length end end end
Version data entries
24 entries across 24 versions & 1 rubygems