homebrew-cask/lib/hbc/container/naked.rb

17 lines
454 B
Ruby

class Hbc::Container::Naked < Hbc::Container::Base
def self.me?(criteria)
# Either inherit from this class and override self.me?,
# or use this class directly as "container :type => :naked",
# in which case self.me? is not called.
false
end
def extract
@command.run!('/usr/bin/ditto', :args => ['--', @path, @cask.staged_path.join(target_file)])
end
def target_file
URI.decode(File.basename(@cask.url.path))
end
end