33 lines
584 B
Ruby
33 lines
584 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "cask/download"
|
|
|
|
module Cask
|
|
class Cmd
|
|
class Cache < AbstractCommand
|
|
def self.command_name
|
|
"--cache"
|
|
end
|
|
|
|
def initialize(*)
|
|
super
|
|
raise CaskUnspecifiedError if args.empty?
|
|
end
|
|
|
|
def run
|
|
casks.each do |cask|
|
|
puts self.class.cached_location(cask)
|
|
end
|
|
end
|
|
|
|
def self.cached_location(cask)
|
|
Download.new(cask).downloader.cached_location
|
|
end
|
|
|
|
def self.help
|
|
"display the file used to cache the Cask"
|
|
end
|
|
end
|
|
end
|
|
end
|