aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/os.rb
blob: e16c81c7de696a26704f84a7bf17eea964e5584f (plain)
1
2
3
4
5
6
7
8
9
module OS
  def self.mac?
    /darwin/i === RUBY_PLATFORM
  end

  def self.linux?
    /linux/i === RUBY_PLATFORM
  end
end