Devel::AssertOS::MacOSX::v10_4 - Devel::AssertOS::MacOSX::v10_4 documentation


Devel-CheckOS documentation Contained in the Devel-CheckOS distribution.

Index


Code Index:

COPYRIGHT and LICENCE

Top


Devel-CheckOS documentation Contained in the Devel-CheckOS distribution.

# $Id: v10_4.pm,v 1.4 2008/11/05 22:52:35 drhyde Exp $

package Devel::AssertOS::MacOSX::v10_4;

use Devel::CheckOS;

$VERSION = '1.3';

sub os_is {
    Devel::CheckOS::os_is('MacOSX') &&
    `sw_vers -productVersion` =~ /^10\.4\./ ? 1 : 0;
}

sub expn { "The operating system is some version of OS X Tiger (10.4)" }

Devel::CheckOS::die_unsupported() unless(os_is());

1;