Class: UnpackStrategy::Jar

Inherits:
Uncompressed show all
Defined in:
unpack_strategy/jar.rb

Overview

Strategy for unpacking Java archives.

Instance Attribute Summary

Attributes included from UnpackStrategy

#merge_xattrs, #path

Class Method Summary collapse

Methods inherited from Uncompressed

#extract_nestedly

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

Returns:

  • (Boolean)


14
15
16
17
18
19
# File 'unpack_strategy/jar.rb', line 14

def self.can_extract?(path)
  return false unless Zip.can_extract?(path)

  # Check further if the ZIP is a JAR/WAR.
  path.zipinfo.include?("META-INF/MANIFEST.MF")
end

.extensionsArray<String>

Returns:



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

def self.extensions
  [".apk", ".jar"]
end