20 lines
397 B
Ruby
Raw Normal View History

2013-10-18 12:56:51 -05:00
module OS
def self.mac?
/darwin/i === RUBY_PLATFORM
end
def self.linux?
/linux/i === RUBY_PLATFORM
end
if OS.mac?
2014-11-14 21:05:46 +00:00
ISSUES_URL = "http://git.io/brew-troubleshooting"
PATH_OPEN = "/usr/bin/open"
elsif OS.linux?
ISSUES_URL = "https://github.com/Homebrew/linuxbrew/wiki/troubleshooting"
PATH_OPEN = "xdg-open"
else
raise "Unknown operating system"
end
2013-10-18 12:56:51 -05:00
end