brew/Library/Homebrew/cask/dsl/postflight.rb
Mike McQuaid 222fe8ef0b
Homebrew 4.3.0 deprecation/disable/removals.
The usual pass of deprecating/disabling/removing code for the next
minor Homebrew release.
2024-05-07 12:18:04 +01:00

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