homebrew-cask-versions/lib/homebrew-fork/Library/Homebrew/os.rb
2014-12-18 12:36:39 -05:00

12 lines
241 B
Ruby

module OS
def self.mac?
/darwin/i === RUBY_PLATFORM
end
if OS.mac?
ISSUES_URL = "https://github.com/Homebrew/homebrew/wiki/troubleshooting"
PATH_OPEN = "/usr/bin/open"
else
raise "Unknown operating system"
end
end