Method: Bundler::Plugin::API::Source#app_cache_path

Defined in:
lib/bundler/plugin/api/source.rb

#app_cache_path(custom_path = nil) ⇒ Object

The full path where the plugin should cache the gem so that it can be installed latter.

Note: Do not override if you don’t know what you are doing.

[View source]

238
239
240
# File 'lib/bundler/plugin/api/source.rb', line 238

def app_cache_path(custom_path = nil)
  @app_cache_path ||= Bundler.app_cache(custom_path).join(app_cache_dirname)
end