mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-18 14:17:07 -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
480 B
Ruby
12 lines
480 B
Ruby
cask :v1test => 'with-depends-on-macos-array' do
|
|
version '1.2.3'
|
|
sha256 '9203c30951f9aab41ac294bbeb1dcef7bed401ff0b353dcb34d68af32ea51853'
|
|
|
|
url TestHelper.local_binary_url('caffeine.zip')
|
|
homepage 'http://example.com/with-depends-on-macos-array'
|
|
|
|
# since all OS versions are included, this should always pass
|
|
depends_on :macos => [ '10.0', '10.1', '10.2', '10.3', '10.3', '10.5', '10.6', '10.7', '10.8', '10.9', '10.10', MacOS.version.to_s ]
|
|
|
|
app 'Caffeine.app'
|
|
end
|