
The usual pass of deprecating/disabling/removing code for the next minor Homebrew release.
14 lines
213 B
Ruby
14 lines
213 B
Ruby
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
require "cask/staged"
|
|
|
|
module Cask
|
|
class DSL
|
|
# Class corresponding to the `postflight` stanza.
|
|
class Postflight < Base
|
|
include Staged
|
|
end
|
|
end
|
|
end
|