diff options
| author | Jack Nagel | 2014-09-18 10:09:14 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-09-18 10:21:49 -0500 |
| commit | a7c5a31a2c11239dce83a41d350682a36987aa44 (patch) | |
| tree | 29fecd359fe464d8f64fd3ce15733d467fa723aa /Library/Homebrew/os/mac/xcode.rb | |
| parent | 48342c913a747d16a4741ad8e036608a877555d1 (diff) | |
| download | homebrew-a7c5a31a2c11239dce83a41d350682a36987aa44.tar.bz2 | |
Xcode 6.0.1
Closes #32394.
Diffstat (limited to 'Library/Homebrew/os/mac/xcode.rb')
| -rw-r--r-- | Library/Homebrew/os/mac/xcode.rb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb index a29192fd2..5cf40277d 100644 --- a/Library/Homebrew/os/mac/xcode.rb +++ b/Library/Homebrew/os/mac/xcode.rb @@ -13,7 +13,7 @@ module OS when "10.6" then "3.2.6" when "10.7" then "4.6.3" when "10.8" then "5.1.1" - when "10.9" then "5.1.1" + when "10.9" then "6.0.1" when "10.10" then "6.1" else # Default to newest known version of Xcode for unreleased OSX versions. @@ -160,8 +160,10 @@ module OS end def latest_version - if MacOS.version >= "10.8" - "503.0.40" + case MacOS.version + when "10.10" then "600.0.54" + when "10.9" then "600.0.51" + when "10.8" then "503.0.40" else "425.0.28" end |
