method

extension_cache_path

ruby latest stable - Class: Bundler::Source

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

extension_cache_path(spec)
public

No documentation available.

# File lib/bundler/source.rb, line 57
    def extension_cache_path(spec)
      return unless Bundler.feature_flag.global_gem_cache?
      return unless source_slug = extension_cache_slug(spec)
      Bundler.user_cache.join(
        "extensions", Gem::Platform.local.to_s, Bundler.ruby_scope,
        source_slug, spec.full_name
      )
    end