Class: UnpackStrategy::Directory Private

Inherits:
Object
  • Object
show all
Extended by:
ClassMethods
Includes:
UnpackStrategy
Defined in:
unpack_strategy/directory.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 unpacking directories.

Direct Known Subclasses

Bazaar, Cvs, Git, Mercurial, Subversion

Constant Summary

Constants included from UnpackStrategy

UnpackStrategyType

Instance Attribute Summary

Attributes included from UnpackStrategy

#merge_xattrs, #path

Class Method Summary collapse

Instance Method Summary collapse

Methods included from ClassMethods

can_extract?, extensions

Methods included from UnpackStrategy

#dependencies, detect, #each_directory, #extract, #extract_nestedly, from_extension, from_magic, from_type

Methods included from SystemCommand::Mixin

#system_command, #system_command!

Constructor Details

#initialize(path, ref_type: nil, ref: nil, merge_xattrs: false, move: false) ⇒ void

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.

Parameters:

  • path (String, Pathname)
  • ref_type (Symbol, nil) (defaults to: nil)
  • ref (String, nil) (defaults to: nil)
  • merge_xattrs (Boolean) (defaults to: false)
  • move (Boolean) (defaults to: false)


28
29
30
31
# File 'unpack_strategy/directory.rb', line 28

def initialize(path, ref_type: nil, ref: nil, merge_xattrs: false, move: false)
  super(path, ref_type:, ref:, merge_xattrs:)
  @move = move
end

Class Method Details

.can_extract?(path) ⇒ Boolean

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.

Parameters:

Returns:

  • (Boolean)


15
16
17
# File 'unpack_strategy/directory.rb', line 15

def self.can_extract?(path)
  path.directory?
end

.extensionsArray<String>

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.

Returns:



10
11
12
# File 'unpack_strategy/directory.rb', line 10

def self.extensions
  []
end