brew/Library/Homebrew/cask/dsl/postflight.rb
Mike McQuaid 90b3a13909
cask: move cask/lib/hbc/* to cask/*.
Fix the load path, requires and some filenames accordingly.
2018-09-04 09:56:57 +01:00

14 lines
247 B
Ruby

require "cask/staged"
module Hbc
class DSL
class Postflight < Base
include Staged
def suppress_move_to_applications(options = {})
# TODO: Remove from all casks because it is no longer needed
end
end
end
end