mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
8 lines
272 B
Ruby
8 lines
272 B
Ruby
class Cask::Container::Sit < Cask::Container::UnarBase
|
|
def self.me?(criteria)
|
|
criteria.file.include? 'application/x-stuffit' and
|
|
! criteria.lsar.nil? and
|
|
criteria.lsar.split("\n").first.split(':').last.include?('StuffIt') and
|
|
super
|
|
end
|
|
end
|