mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-19 06:16:46 -06:00
12 lines
241 B
Ruby
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
|