mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
* Fill in the functionality for the `depends_on :macos` stub * de-document `caveats` method `os_version_only` * clean up some related docs re: version strings * add `depends_on_test.rb` * clarify some related `depends_on :formula` doc, tests, and code * formatting in test Casks
12 lines
440 B
Ruby
12 lines
440 B
Ruby
cask :v1test => 'invalid-appcast-format' do
|
|
version '1.2.3'
|
|
sha256 '9203c30951f9aab41ac294bbeb1dcef7bed401ff0b353dcb34d68af32ea51853'
|
|
|
|
url TestHelper.local_binary_url('caffeine.zip')
|
|
homepage 'http://example.com/invalid-appcast-format'
|
|
appcast 'http://example.com/appcast.xml',
|
|
:sha256 => '9203c30951f9aab41ac294bbeb1dcef7bed401ff0b353dcb34d68af32ea51853',
|
|
:format => :no_such_format
|
|
|
|
app 'Caffeine.app'
|
|
end
|