mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
Replacing `link` for almost all cases. The `link` stanza can still appear in error messages, because under the hood, `app` is still implemented as a pure synonym for the `link` artifact. That will change automatically when we factor into separate artifacts.
7 lines
219 B
Ruby
7 lines
219 B
Ruby
class BasicCask < TestCask
|
|
url 'http://example.com/TestCask.dmg'
|
|
homepage 'http://example.com/'
|
|
version '1.2.3'
|
|
sha256 '8c62a2b791cf5f0da6066a0a4b6e85f62949cd60975da062df44adf887f4370b'
|
|
app 'TestCask.app'
|
|
end
|