aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/lib/hbc/container/otf.rb
blob: 823d04f74e846058cf76d7af06fd2a92641e2d18 (plain)
1
2
3
4
5
6
7
8
9
10
11
require "hbc/container/naked"

module Hbc
  class Container
    class Otf < Naked
      def self.me?(criteria)
        criteria.magic_number(/^OTTO/n)
      end
    end
  end
end