2018-09-03 19:39:07 +01:00
|
|
|
require "cask/artifact/abstract_uninstall"
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2016-09-24 13:52:43 +02:00
|
|
|
module Hbc
|
|
|
|
module Artifact
|
2017-04-06 00:33:31 +02:00
|
|
|
class Uninstall < AbstractUninstall
|
|
|
|
def uninstall_phase(**options)
|
|
|
|
dispatch_uninstall_directives(**options)
|
2017-02-10 07:49:21 +01:00
|
|
|
end
|
2016-09-24 13:52:43 +02:00
|
|
|
end
|
|
|
|
end
|
2016-08-18 22:11:42 +03:00
|
|
|
end
|