aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/os/mac/xquartz.rb
diff options
context:
space:
mode:
authorBrewTestBot2015-08-03 13:09:07 +0100
committerMike McQuaid2015-08-03 13:22:35 +0100
commit13d544e11e92ba8ea3788723432046f8dfe4adf9 (patch)
treee6da18436d9ce956e6fbe80e3185c67cf3b58808 /Library/Homebrew/os/mac/xquartz.rb
parent3b68215be793774fafd9ce124a2065f5968f50e5 (diff)
downloadbrew-13d544e11e92ba8ea3788723432046f8dfe4adf9.tar.bz2
Core files style updates.
Closes Homebrew/homebrew#42354. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Homebrew/os/mac/xquartz.rb')
-rw-r--r--Library/Homebrew/os/mac/xquartz.rb18
1 files changed, 9 insertions, 9 deletions
diff --git a/Library/Homebrew/os/mac/xquartz.rb b/Library/Homebrew/os/mac/xquartz.rb
index 9c717367e..b253ad8e0 100644
--- a/Library/Homebrew/os/mac/xquartz.rb
+++ b/Library/Homebrew/os/mac/xquartz.rb
@@ -22,7 +22,7 @@ module OS
"2.7.53" => "2.7.5_rc4",
"2.7.54" => "2.7.5",
"2.7.61" => "2.7.6",
- "2.7.73" => "2.7.7",
+ "2.7.73" => "2.7.7"
}.freeze
# This returns the version number of XQuartz, not of the upstream X.org.
@@ -69,10 +69,10 @@ module OS
# educated guess as to what version is installed.
def guess_system_version
case MacOS.version
- when '10.5' then '2.1.6'
- when '10.6' then '2.3.6'
- when '10.7' then '2.6.3'
- else 'dunno'
+ when "10.5" then "2.1.6"
+ when "10.6" then "2.3.6"
+ when "10.7" then "2.6.3"
+ else "dunno"
end
end
@@ -93,10 +93,10 @@ module OS
# remain public. New code should use MacOS::X11.bin, MacOS::X11.lib and
# MacOS::X11.include instead, as that accounts for Xcode-only systems.
def prefix
- @prefix ||= if Pathname.new('/opt/X11/lib/libpng.dylib').exist?
- Pathname.new('/opt/X11')
- elsif Pathname.new('/usr/X11/lib/libpng.dylib').exist?
- Pathname.new('/usr/X11')
+ @prefix ||= if Pathname.new("/opt/X11/lib/libpng.dylib").exist?
+ Pathname.new("/opt/X11")
+ elsif Pathname.new("/usr/X11/lib/libpng.dylib").exist?
+ Pathname.new("/usr/X11")
end
end