10 lines
196 B
Ruby
Raw Normal View History

require_relative "uncompressed"
module UnpackStrategy
class Executable < Uncompressed
def self.can_extract?(path:, magic_number:)
2018-07-25 10:03:50 +02:00
magic_number.match?(/\A#!\s*\S+/n)
end
end
end