
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`.
7 lines
114 B
Ruby
7 lines
114 B
Ruby
class Tab < OpenStruct
|
|
def build_32_bit?
|
|
# odeprecated "Tab.build_32_bit?"
|
|
include?("32-bit")
|
|
end
|
|
end
|