os/mac: Rename MachO -> MachOShim

Prevents namespace conflict with vendored ruby-macho.
This commit is contained in:
William Woodruff 2016-11-08 16:16:34 -05:00
parent 032ed07bce
commit 9267511e6b
No known key found for this signature in database
GPG Key ID: 85AE00C504833B3C
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
require "vendor/macho/macho" require "vendor/macho/macho"
require "os/mac/architecture_list" require "os/mac/architecture_list"
module MachO module MachOShim
# @private # @private
def macho def macho
@macho ||= begin @macho ||= begin

View File

@ -1,5 +1,5 @@
require "os/mac/mach" require "os/mac/mach"
class Pathname class Pathname
include MachO include MachOShim
end end