Class: UnpackStrategy::Air

Inherits:
Object show all
Includes:
UnpackStrategy
Defined in:
unpack_strategy/air.rb

Overview

Strategy for unpacking Adobe Air archives.

Instance Attribute Summary

Attributes included from UnpackStrategy

#merge_xattrs, #path

Class Method Summary collapse

Instance Method Summary collapse

Methods included from UnpackStrategy

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
# File 'unpack_strategy/air.rb', line 14

def self.can_extract?(path)
  mime_type = "application/vnd.adobe.air-application-installer-package+zip"
  path.magic_number.match?(/.{59}#{Regexp.escape(mime_type)}/)
end

.extensionsArray<String>

Returns:



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

def self.extensions
  [".air"]
end

Instance Method Details

#dependenciesObject



19
20
21
# File 'unpack_strategy/air.rb', line 19

def dependencies
  @dependencies ||= [Cask::CaskLoader.load("adobe-air")]
end