homebrew-cask-versions/Casks/bartender.rb
Roland Walker f56bb4fe08 bartender.rb after_install: full paths+list form
use safer list form of `system`.  use full paths to external
utilities.
2014-03-01 09:45:07 -05:00

12 lines
392 B
Ruby

class Bartender < Cask
url 'http://www.macbartender.com/Demo/Bartender.zip'
homepage 'http://www.macbartender.com/'
version 'latest'
no_checksum
link 'Bartender.app'
after_install do
# Don't ask to move the app bundle to /Applications
system '/usr/bin/defaults', 'write', 'com.surteesstudios.Bartender', 'moveToApplicationsFolderAlertSuppress', '-bool', 'true'
end
end