2022-10-11 00:52:32 +01:00
|
|
|
# typed: true
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-09-03 19:39:07 +01:00
|
|
|
require "cask/artifact/moved"
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2018-09-06 08:29:14 +02:00
|
|
|
module Cask
|
2016-09-24 13:52:43 +02:00
|
|
|
module Artifact
|
2020-08-19 10:23:41 +02:00
|
|
|
# Artifact corresponding to the `qlplugin` stanza.
|
2016-09-24 13:52:43 +02:00
|
|
|
class Qlplugin < Moved
|
2020-10-20 12:03:48 +02:00
|
|
|
sig { returns(String) }
|
2017-04-06 00:33:31 +02:00
|
|
|
def self.english_name
|
2024-02-03 23:54:04 +01:00
|
|
|
"Quick Look Plugin"
|
2016-09-24 13:52:43 +02:00
|
|
|
end
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2017-04-06 00:33:31 +02:00
|
|
|
def install_phase(**options)
|
2024-05-23 17:08:41 +01:00
|
|
|
super
|
2017-04-06 00:33:31 +02:00
|
|
|
reload_quicklook(**options)
|
2016-09-24 13:52:43 +02:00
|
|
|
end
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2017-04-06 00:33:31 +02:00
|
|
|
def uninstall_phase(**options)
|
2024-05-23 17:08:41 +01:00
|
|
|
super
|
2017-04-06 00:33:31 +02:00
|
|
|
reload_quicklook(**options)
|
2016-09-24 13:52:43 +02:00
|
|
|
end
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2017-04-06 00:33:31 +02:00
|
|
|
private
|
|
|
|
|
|
|
|
def reload_quicklook(command: nil, **_)
|
|
|
|
command.run!("/usr/bin/qlmanage", args: ["-r"])
|
2016-09-24 13:52:43 +02:00
|
|
|
end
|
|
|
|
end
|
2016-08-18 22:11:42 +03:00
|
|
|
end
|
|
|
|
end
|