brew/Library/Homebrew/os/mac/pathname.rb

14 lines
233 B
Ruby
Raw Normal View History

require "os/mac/shared_mach"
2015-10-16 17:08:11 +08:00
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
2015-10-16 17:08:11 +08:00
end