module Hbc class CLI class InternalDump < AbstractInternalCommand def initialize(*) super raise CaskUnspecifiedError if args.empty? end def run casks.each(&:dumpcask) end def self.help "dump the given Cask in YAML format" end end end end