mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
13 lines
214 B
Ruby
13 lines
214 B
Ruby
require "hbc/container/generic_unar"
|
|
|
|
module Hbc
|
|
class Container
|
|
class Sit < GenericUnar
|
|
def self.me?(criteria)
|
|
criteria.magic_number(/^StuffIt/n) &&
|
|
super
|
|
end
|
|
end
|
|
end
|
|
end
|