
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.
12 lines
275 B
Ruby
12 lines
275 B
Ruby
cask "container-cab" do
|
|
version "1.2.3"
|
|
sha256 "c267f5cebb14814c8e612a8b7d2bda02aec913f869509b6f1d3883427c0f552b"
|
|
|
|
url "file://#{TEST_FIXTURE_DIR}/cask/container.cab"
|
|
homepage "https://brew.sh/container-cab"
|
|
|
|
depends_on formula: "cabextract"
|
|
|
|
app "container"
|
|
end
|