18 lines
270 B
Ruby
18 lines
270 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "uncompressed"
|
|
|
|
module UnpackStrategy
|
|
class Otf < Uncompressed
|
|
using Magic
|
|
|
|
def self.extensions
|
|
[".otf"]
|
|
end
|
|
|
|
def self.can_extract?(path)
|
|
path.magic_number.match?(/\AOTTO/n)
|
|
end
|
|
end
|
|
end
|