homebrew-cask/Casks/fastlane.rb

19 lines
468 B
Ruby
Raw Normal View History

2016-11-18 23:26:29 +08:00
cask 'fastlane' do
2017-05-02 08:05:44 +08:00
version :latest
sha256 :no_check
2016-11-18 23:26:29 +08:00
2018-03-03 04:02:32 +08:00
url 'https://fastlane.tools/fastlane.zip'
2016-11-18 23:26:29 +08:00
name 'fastlane'
homepage 'https://fastlane.tools/'
2016-11-18 23:26:29 +08:00
installer script: {
executable: "#{staged_path}/install",
args: ['-p', '-u', '-b'],
}
2016-11-18 23:26:29 +08:00
2017-01-01 21:16:58 +08:00
uninstall script: {
executable: "#{staged_path}/uninstall",
args: ['-y'],
}
2016-11-18 23:26:29 +08:00
end