mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 14:26:45 -06:00
9 lines
264 B
Ruby
9 lines
264 B
Ruby
class Cask::Container::Zip < Cask::Container::Base
|
|
def self.me?(criteria)
|
|
criteria.file.include? 'compressed-encoding=application/zip;'
|
|
end
|
|
|
|
def extract
|
|
@command.run!('/usr/bin/ditto', :args => ['-xk', '--', @path, @cask.destination_path])
|
|
end
|
|
end
|