Class: UnpackStrategy::Ttf
- Inherits:
-
Uncompressed
- Object
- Uncompressed
- UnpackStrategy::Ttf
- Defined in:
- unpack_strategy/ttf.rb
Overview
Strategy for unpacking TrueType fonts.
Instance Attribute Summary
Attributes included from UnpackStrategy
Class Method Summary collapse
Methods inherited from Uncompressed
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
14 15 16 17 18 19 |
# File 'unpack_strategy/ttf.rb', line 14 def self.can_extract?(path) # TrueType Font path.magic_number.match?(/\A\000\001\000\000\000/n) || # Truetype Font Collection path.magic_number.match?(/\Attcf/n) end |