brew/Library/Homebrew/cask/dsl/postflight.rb
Mike McQuaid 7da934f7e2
Deprecate/disable/delete code.
The next release after this is merged will be 4.1.0.

Co-authored-by: Markus Reiter <me@reitermark.us>
2023-07-06 16:56:20 +01:00

20 lines
366 B
Ruby

# typed: true
# frozen_string_literal: true
require "cask/staged"
module Cask
class DSL
# Class corresponding to the `postflight` stanza.
#
# @api private
class Postflight < Base
include Staged
def suppress_move_to_applications(_options = {})
odeprecated "Cask::DSL#suppress_move_to_applications"
end
end
end
end