aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/lib/hbc/container/sit.rb
blob: c486a981c34e8b61d8e280f979d1dc203b6336b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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