module ChefCLI::Helpers

def os_x?

Returns true if we are on Mac OS X. Otherwise false
def os_x?
  !!(RUBY_PLATFORM =~ /darwin/)
end