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