Class: Gem::BasicSpecification

Inherits:
Object
  • Object
show all
Defined in:
lib/bundler/rubygems_ext.rb

Overview

On universal Rubies, resolve the “universal” arch to the real CPU arch, without changing the extension directory.

Constant Summary collapse

ORIGINAL_LOCAL_PLATFORM =
local_platform.to_s.freeze

Instance Method Summary collapse

Instance Method Details

#extensions_dirObject



296
297
298
299
# File 'lib/bundler/rubygems_ext.rb', line 296

def extensions_dir
  @extensions_dir ||=
    Gem.default_ext_dir_for(base_dir) || File.join(base_dir, "extensions", ORIGINAL_LOCAL_PLATFORM, Gem.extension_api_version)
end