class Sys::Platform

def self.bsd?

Returns whether or not you're on any BSD platform
def self.bsd?
  Uname.sysname =~ /bsd/i ? true : false
end