Object
# File lib/os.rb, line 174 def self.bsd? OS.osx? end
# File lib/os.rb, line 182 def self.linux? OS.host_os =~ /linux/ ? true : false end
# File lib/os.rb, line 178 def self.windows? ENV['OS'] == 'Windows_NT' end