Class: UnpackStrategy::Zip

Inherits:
Object show all
Includes:
UnpackStrategy
Defined in:
unpack_strategy/zip.rb,
extend/os/mac/unpack_strategy/zip.rb

Overview

Strategy for unpacking ZIP archives.

Instance Attribute Summary

Attributes included from UnpackStrategy

#merge_xattrs, #path

Class Method Summary collapse

Methods included from UnpackStrategy

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

Methods included from SystemCommand::Mixin

#system_command, #system_command!

Class Method Details

.can_extract?(path) ⇒ Boolean

Parameters:

Returns:

  • (Boolean)


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

def self.can_extract?(path)
  path.magic_number.match?(/\APK(\003\004|\005\006)/n)
end

.extensionsArray<String>

Returns:



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

def self.extensions
  [".zip"]
end