mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
12 lines
179 B
Ruby
12 lines
179 B
Ruby
require "hbc/container/naked"
|
|
|
|
module Hbc
|
|
class Container
|
|
class Otf < Naked
|
|
def self.me?(criteria)
|
|
criteria.magic_number(/^OTTO/n)
|
|
end
|
|
end
|
|
end
|
|
end
|