homebrew-cask/Casks/cheatsheet.rb

16 lines
476 B
Ruby
Raw Normal View History

class Cheatsheet < Cask
version 'latest'
sha256 :no_check
2013-07-20 23:58:59 +08:00
url 'http://www.cheatsheetapp.com/CheatSheet/download.php'
2014-05-14 21:39:59 +08:00
appcast 'http://mediaatelier.com/CheatSheet/feed.php'
2013-07-20 23:58:59 +08:00
homepage 'http://www.cheatsheetapp.com/CheatSheet/'
2013-07-20 23:58:59 +08:00
link 'CheatSheet.app'
after_install do
# Don't ask to move the app bundle to /Applications
system '/usr/bin/defaults', 'write', 'com.mediaatelier.CheatSheet', 'moveToApplicationsFolderAlertSuppress', '-bool', 'true'
end
2013-07-20 23:58:59 +08:00
end