mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-16 22:06:43 -06:00
* complete transition from MacOS#version to MacOS#release throughout backend code * recast related constants and comments as "release" instead of "version", and "point release" instead of "full version"
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 releases 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.release.to_s ]
|
|
|
|
app 'Caffeine.app'
|
|
end
|