19 lines
313 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require_relative "uncompressed"
module UnpackStrategy
2020-08-09 06:09:05 +02:00
# Strategy for unpacking OpenType fonts.
class Otf < Uncompressed
using Magic
def self.extensions
[".otf"]
end
def self.can_extract?(path)
path.magic_number.match?(/\AOTTO/n)
end
end
end