module Nehm::OS

OS module returns information about OS on this computer

Public Class Methods

mac?() click to toggle source
# File lib/nehm/os.rb, line 9
def self.mac?
  RbConfig::CONFIG['host_os'] =~ /darwin|mac os/ ? true : false
end