15 lines
229 B
Ruby
Raw Normal View History

module OS
module Mac
class << self
module Compat
def prefer_64_bit?
odisabled("MacOS.prefer_64_bit?")
Hardware::CPU.is_64_bit?
end
end
prepend Compat
end
end
end