2016-05-27 23:13:51 +02:00
|
|
|
require "os/mac/shared_mach"
|
|
|
|
|
2015-10-16 17:08:11 +08:00
|
|
|
class Pathname
|
2016-08-20 10:31:34 -04:00
|
|
|
if !ENV["HOMEBREW_NO_RUBY_MACHO"]
|
2016-02-01 14:19:29 -05:00
|
|
|
require "os/mac/ruby_mach"
|
|
|
|
include RubyMachO
|
|
|
|
else
|
|
|
|
require "os/mac/cctools_mach"
|
|
|
|
include CctoolsMachO
|
|
|
|
end
|
2016-05-27 23:13:51 +02:00
|
|
|
|
|
|
|
include SharedMachO
|
2015-10-16 17:08:11 +08:00
|
|
|
end
|