NAME
   File::Stat::Moose - Status info for a file - Moose-based

SYNOPSIS
     use File::Stat::Moose;
     open my $fh, '/etc/passwd';
     $st = File::Stat::Moose->new( file => $fh );
     print "Size: ", $st->size, "\n";    # named attribute
     print "Blocks: ". $st->[12], "\n";  # numbered attribute

DESCRIPTION
   This class provides methods that returns status info for a file. It is
   the OO-style version of stat/lstat functions. It also throws an
   exception immediately after error is occurred.

AUTHOR
   Piotr Roszatycki <[email protected]>

LICENSE
   Copyright (C) 2007, 2008, 2009 by Piotr Roszatycki <[email protected]>.

   This program is free software; you can redistribute it and/or modify it
   under the same terms as Perl itself.

   See http://www.perl.com/perl/misc/Artistic.html