
The next release after this is merged will be 4.1.0. Co-authored-by: Markus Reiter <me@reitermark.us>
20 lines
366 B
Ruby
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
|