Class: Specinfra::Helper::DetectOs::Darwin

Inherits:
Specinfra::Helper::DetectOs show all
Defined in:
lib/specinfra/helper/detect_os/darwin.rb

Instance Method Summary collapse

Methods inherited from Specinfra::Helper::DetectOs

detect, #initialize, #run_command

Constructor Details

This class inherits a constructor from Specinfra::Helper::DetectOs

Instance Method Details

#detectObject



2
3
4
5
6
7
8
9
10
# File 'lib/specinfra/helper/detect_os/darwin.rb', line 2

def detect
  if ( uname = run_command('uname -sr').stdout ) && uname =~ /Darwin/i
    if uname =~ /([\d.]+)$/
       { :family => 'darwin', :release => $1 }
    else 
       { :family => 'darwin', :release => nil }
    end
  end
end