blob: b76c4333a1daa0df904548349bbae6b658113e92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require "os/mac/shared_mach"
class Pathname
if !ENV["HOMEBREW_NO_RUBY_MACHO"]
require "os/mac/ruby_mach"
include RubyMachO
else
require "os/mac/cctools_mach"
include CctoolsMachO
end
include SharedMachO
end
|