
Make the Homebrew/cask and Homebrew/homebrew-core style more closely match the rest of Homebrew. To accomplish this: - Run `brew cask style` to ensure we don't break style there when making changes or upgrading RuboCop in Homebrew/brew. - Fix the HomepageMatchesUrl cop to better handle weird input. - Remove the now unneeded `.rubocop_shared.yml` - Fix the cask fixtures with `brew cask style --fix`. - Share more style between Homebrew/brew, casks and formulae.
13 lines
284 B
Ruby
13 lines
284 B
Ruby
cask "with-auto-updates" do
|
|
version "1.0"
|
|
sha256 "e5be907a51cd0d5b128532284afe1c913608c584936a5e55d94c75a9f48c4322"
|
|
|
|
url "https://brew.sh/autoupdates_#{version}.zip"
|
|
name "AutoUpdates"
|
|
homepage "https://brew.sh/autoupdates"
|
|
|
|
auto_updates true
|
|
|
|
app "AutoUpdates.app"
|
|
end
|