Sha256: ba7cda3b0364de6be430c3e6380c073727236d2e8323a3f2221b33d045f124ef

Contents?: true

Size: 327 Bytes

Versions: 206

Compression:

Stored size: 327 Bytes

Contents

class Specinfra::Helper::DetectOs::Darwin < Specinfra::Helper::DetectOs
  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
end

Version data entries

206 entries across 206 versions & 3 rubygems

Version Path
specinfra-2.37.4 lib/specinfra/helper/detect_os/darwin.rb
specinfra-2.37.3 lib/specinfra/helper/detect_os/darwin.rb
specinfra-2.37.2 lib/specinfra/helper/detect_os/darwin.rb
specinfra-2.37.1 lib/specinfra/helper/detect_os/darwin.rb
specinfra-2.37.0 lib/specinfra/helper/detect_os/darwin.rb
specinfra-2.36.18 lib/specinfra/helper/detect_os/darwin.rb