aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/compat/tab.rb
diff options
context:
space:
mode:
authorMike McQuaid2016-12-20 10:22:30 +0000
committerMike McQuaid2016-12-20 10:22:30 +0000
commitf98304026bcb3bc68b47210f2434e09683987363 (patch)
treefd5075fd3e7a63efbac0455b8891f2e1933bc5de /Library/Homebrew/compat/tab.rb
parent482568579b8c9e699ca19207643cc483975869a4 (diff)
downloadbrew-f98304026bcb3bc68b47210f2434e09683987363.tar.bz2
Deprecate 32-bit options.
These were formerly supported but as it has been a very long time since 32-bit software was necessary on macOS these have been deprecated with a `brew audit` warning and a future `odeprecated`.
Diffstat (limited to 'Library/Homebrew/compat/tab.rb')
-rw-r--r--Library/Homebrew/compat/tab.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/Library/Homebrew/compat/tab.rb b/Library/Homebrew/compat/tab.rb
new file mode 100644
index 000000000..58fdc4913
--- /dev/null
+++ b/Library/Homebrew/compat/tab.rb
@@ -0,0 +1,6 @@
+class Tab < OpenStruct
+ def build_32_bit?
+ # odeprecated "Tab.build_32_bit?"
+ include?("32-bit")
+ end
+end