aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/compat/xcode.rb
diff options
context:
space:
mode:
authorMarkus Reiter2016-09-24 20:11:54 +0200
committerMarkus Reiter2016-09-25 00:16:31 +0200
commit00b3dde0b2a5fc66ccd276ee83619ef678c82cc7 (patch)
tree583bca9733ae944de20b989c864f8eb18f706834 /Library/Homebrew/compat/xcode.rb
parent162bfee90f760a4a473894f6f3013d1b0665b3e9 (diff)
downloadbrew-00b3dde0b2a5fc66ccd276ee83619ef678c82cc7.tar.bz2
RuboCop: MacOS
Diffstat (limited to 'Library/Homebrew/compat/xcode.rb')
-rw-r--r--Library/Homebrew/compat/xcode.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Homebrew/compat/xcode.rb b/Library/Homebrew/compat/xcode.rb
index 69abbf4b1..14150cc7c 100644
--- a/Library/Homebrew/compat/xcode.rb
+++ b/Library/Homebrew/compat/xcode.rb
@@ -1,11 +1,11 @@
module OS
module Mac
module Xcode
- class << self
- def provides_autotools?
- odeprecated "OS::Mac::Xcode.provides_autotools?"
- version < "4.3"
- end
+ module_function
+
+ def provides_autotools?
+ odeprecated "OS::Mac::Xcode.provides_autotools?"
+ version < "4.3"
end
end
end