brew/Library/Homebrew/cask/artifact/vst3_plugin.rb
EricFromCanada b9dab243b5
cask/artifact: fix up some definitions
And expand the list of artifacts that target: works with.
2023-04-14 15:47:33 -04:00

21 lines
349 B
Ruby

# typed: strict
# frozen_string_literal: true
require "cask/artifact/moved"
module Cask
module Artifact
# Artifact corresponding to the `vst3_plugin` stanza.
#
# @api private
class Vst3Plugin < Moved
extend T::Sig
sig { returns(String) }
def self.english_name
"VST3 Plugin"
end
end
end
end