Skip to content

Commit

Permalink
Merge pull request #7799 from rolandwalker/titanium_casks
Browse files Browse the repository at this point in the history
be explicit: no fallthrough for apps from titantium.free.fr
  • Loading branch information
rolandwalker committed Dec 5, 2014
2 parents 7ad1aef + d1803c4 commit 7e834a8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion Casks/deeper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
url 'http://www.titanium.free.fr/download/108/Deeper.dmg'
elsif MacOS.version == :mavericks
url 'http://www.titanium.free.fr/download/109/Deeper.dmg'
else
elsif MacOS.version == :yosemite
url 'http://www.titanium.free.fr/download/1010/Deeper.dmg'
else
# Unusual case: there is no fall-through. Each version of the software is
# specific to an OS X release, so define nothing when the release is unknown.
end

homepage 'http://www.titanium.free.fr/downloaddeeper.php'
Expand Down
5 changes: 4 additions & 1 deletion Casks/maintenance.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
url 'http://www.titanium.free.fr/download/108/Maintenance.dmg'
elsif MacOS.version == :mavericks
url 'http://www.titanium.free.fr/download/109/Maintenance.dmg'
else
elsif MacOS.version == :yosemite
url 'http://www.titanium.free.fr/download/1010/Maintenance.dmg'
else
# Unusual case: there is no fall-through. Each version of the software is
# specific to an OS X release, so define nothing when the release is unknown.
end

homepage 'http://www.titanium.free.fr/downloadmaintenance.php'
Expand Down
5 changes: 4 additions & 1 deletion Casks/onyx.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
url 'http://www.titanium.free.fr/download/108/OnyX.dmg'
elsif MacOS.version == :mavericks
url 'http://www.titanium.free.fr/download/109/OnyX.dmg'
else
elsif MacOS.version == :yosemite
url 'http://www.titanium.free.fr/download/1010/OnyX.dmg'
else
# Unusual case: there is no fall-through. Each version of the software is
# specific to an OS X release, so define nothing when the release is unknown.
end
homepage 'http://www.titanium.free.fr/downloadonyx.php'
license :unknown
Expand Down

0 comments on commit 7e834a8

Please sign in to comment.