Method: Bundler::RubyGemsGemInstaller#spec

Defined in:
lib/bundler/rubygems_gem_installer.rb

#specObject

[View source]

132
133
134
135
136
137
138
# File 'lib/bundler/rubygems_gem_installer.rb', line 132

def spec
  if Bundler.rubygems.provides?("< 3.3.12") # RubyGems implementation rescues and re-raises errors before 3.3.12 and we don't want that
    @package.spec
  else
    super
  end
end