Class: LocalBottleDownloadStrategy Private

Inherits:
AbstractFileDownloadStrategy show all
Defined in:
download_strategy.rb

Overview

This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.

Strategy for extracting local binary packages.

Instance Attribute Summary

Attributes inherited from AbstractDownloadStrategy

#cache, #cached_location, #url

Instance Method Summary collapse

Methods inherited from AbstractFileDownloadStrategy

#basename, #cached_location, #symlink_location, #temporary_path

Methods inherited from AbstractDownloadStrategy

#basename, #fetch, #quiet!, #quiet?, #source_modified_time, #stage

Methods included from SystemCommand::Mixin

#system_command, #system_command!

Methods included from Context

current, current=, #debug?, #quiet?, #verbose?, #with_context

Constructor Details

#initialize(path) ⇒ LocalBottleDownloadStrategy

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

TODO:

Call super here

Returns a new instance of LocalBottleDownloadStrategy.



707
708
709
710
# File 'download_strategy.rb', line 707

def initialize(path) # rubocop:disable Lint/MissingSuper
  @cached_location = path
  extend Pourable
end

Instance Method Details

#clear_cacheObject

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.



712
713
714
# File 'download_strategy.rb', line 712

def clear_cache
  # Path is used directly and not cached.
end