
Currently the tests casks found in "/Homebrew/test/support/fixtures/cask/Casks" and "/Homebrew/test/support/fixtures/third-party/Casks" aren't included in the paths checked when running "brew cask style". This change includes these test cask paths in the checked paths, and also includes the auto style fixes made by running `brew cask style --fix`.
19 lines
287 B
Ruby
19 lines
287 B
Ruby
cask 'with-languages' do
|
|
version '1.2.3'
|
|
|
|
language 'zh' do
|
|
sha256 'abc123'
|
|
'zh-CN'
|
|
end
|
|
|
|
language 'en-US', default: true do
|
|
sha256 'xyz789'
|
|
'en-US'
|
|
end
|
|
|
|
url "file://#{TEST_FIXTURE_DIR}/cask/caffeine.zip"
|
|
homepage 'https://brew.sh/'
|
|
|
|
app 'Caffeine.app'
|
|
end
|