16 lines
241 B
Ruby
Raw Normal View History

require_relative "generic_unar"
module UnpackStrategy
class Sit < GenericUnar
using Magic
def self.extensions
[".sit"]
end
def self.can_extract?(path)
path.magic_number.match?(/\AStuffIt/n)
end
end
end