26 lines
423 B
Ruby
Raw Normal View History

2016-08-18 22:11:42 +03:00
require "hbc/artifact/moved"
2016-09-24 13:52:43 +02:00
module Hbc
module Artifact
class Qlplugin < Moved
def self.artifact_english_name
"QuickLook Plugin"
end
2016-08-18 22:11:42 +03:00
2016-09-24 13:52:43 +02:00
def install_phase
super
reload_quicklook
end
2016-08-18 22:11:42 +03:00
2016-09-24 13:52:43 +02:00
def uninstall_phase
super
reload_quicklook
end
2016-08-18 22:11:42 +03:00
2016-09-24 13:52:43 +02:00
def reload_quicklook
@command.run!("/usr/bin/qlmanage", args: ["-r"])
end
end
2016-08-18 22:11:42 +03:00
end
end